HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Software build problem
Operating System - HP-UX
1832517
Members
4427
Online
110043
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 05:37 PM
04-15-2008 05:37 PM
Software build problem
I'm running into a problem building 64-bit Slony 1.2.14rc (an asyncronous database replication package) for an existing 64-bit PostgreSQL 8.1.x using HP's ANSI C compiler on HP-UX 11.23 IA64, hoping someone can point me in the right direction to troubleshoot further.
I've attached a file with my exact commands along with all of the output from configure and make. Here's the short story is here:
$ /opt/ansic/bin/cc -V
cc: HP aC++/ANSI C B3910B A.06.05 [Jul 25 2005]
$ uname -a
HP-UX db10 B.11.23 U ia64 0771400560 unlimited-user license
# Flags we use to build 64-bit Pg on IA64...
$ export CC=/opt/ansic/bin/cc CFLAGS="+DD64" LDFLAGS="+DD64" CCOPTS="-g"
# The configure call per Slony's build docs...
$ ./configure --with-pgconfigdir=/opt/pgsql/installs/postgresql-8.1.2/bin --enable-thread-safety
checking build system type... ia64-hp-hpux11.23
...
...
config.status: creating Makefile.port
config.status: creating config.h
config.status: config.h is unchanged
(looked like configure worked)
$ make
Using GNU make found at /usr/local/bin/gmake
gmake[1]: Entering directory `/users/dists/pgsql/builds/slony1-1.2.14rc/src'
...
...
gmake[2]: Entering directory `/users/dists/pgsql/builds/slony1-1.2.14rc/src/slony_logshipper'
/opt/ansic/bin/cc +DD64 -I../.. -DPGSHARE="\"/opt/pgsql/installs/postgresql-8.1.2/share/\"" -I/opt/pgsql/installs/postgresql-8.1.2/include/ -I/opt/pgsql/installs/postgresql-8.1.2/include/server/ -c -o slony_logshipper.o slony_logshipper.c
/opt/ansic/bin/cc +DD64 -I../.. -DPGSHARE="\"/opt/pgsql/installs/postgresql-8.1.2/share/\"" -I/opt/pgsql/installs/postgresql-8.1.2/include/ -I/opt/pgsql/installs/postgresql-8.1.2/include/server/ -c -o dbutil.o dbutil.c
/opt/ansic/bin/cc +DD64 -I../.. -DPGSHARE="\"/opt/pgsql/installs/postgresql-8.1.2/share/\"" -I/opt/pgsql/installs/postgresql-8.1.2/include/ -I/opt/pgsql/installs/postgresql-8.1.2/include/server/ -c -o ipcutil.o ipcutil.c
bison -y -d parser.y
gmake[2]: Leaving directory `/users/dists/pgsql/builds/slony1-1.2.14rc/src/slony_logshipper'
gmake[1]: Leaving directory `/users/dists/pgsql/builds/slony1-1.2.14rc/src'
*** Error exit code 2
So basically, the 'make' errors out here but it's hard to tell what exactly is causing the issue.
Any clues as to what/where to look deeper?
Many thanks.
Ed
I've attached a file with my exact commands along with all of the output from configure and make. Here's the short story is here:
$ /opt/ansic/bin/cc -V
cc: HP aC++/ANSI C B3910B A.06.05 [Jul 25 2005]
$ uname -a
HP-UX db10 B.11.23 U ia64 0771400560 unlimited-user license
# Flags we use to build 64-bit Pg on IA64...
$ export CC=/opt/ansic/bin/cc CFLAGS="+DD64" LDFLAGS="+DD64" CCOPTS="-g"
# The configure call per Slony's build docs...
$ ./configure --with-pgconfigdir=/opt/pgsql/installs/postgresql-8.1.2/bin --enable-thread-safety
checking build system type... ia64-hp-hpux11.23
...
...
config.status: creating Makefile.port
config.status: creating config.h
config.status: config.h is unchanged
(looked like configure worked)
$ make
Using GNU make found at /usr/local/bin/gmake
gmake[1]: Entering directory `/users/dists/pgsql/builds/slony1-1.2.14rc/src'
...
...
gmake[2]: Entering directory `/users/dists/pgsql/builds/slony1-1.2.14rc/src/slony_logshipper'
/opt/ansic/bin/cc +DD64 -I../.. -DPGSHARE="\"/opt/pgsql/installs/postgresql-8.1.2/share/\"" -I/opt/pgsql/installs/postgresql-8.1.2/include/ -I/opt/pgsql/installs/postgresql-8.1.2/include/server/ -c -o slony_logshipper.o slony_logshipper.c
/opt/ansic/bin/cc +DD64 -I../.. -DPGSHARE="\"/opt/pgsql/installs/postgresql-8.1.2/share/\"" -I/opt/pgsql/installs/postgresql-8.1.2/include/ -I/opt/pgsql/installs/postgresql-8.1.2/include/server/ -c -o dbutil.o dbutil.c
/opt/ansic/bin/cc +DD64 -I../.. -DPGSHARE="\"/opt/pgsql/installs/postgresql-8.1.2/share/\"" -I/opt/pgsql/installs/postgresql-8.1.2/include/ -I/opt/pgsql/installs/postgresql-8.1.2/include/server/ -c -o ipcutil.o ipcutil.c
bison -y -d parser.y
gmake[2]: Leaving directory `/users/dists/pgsql/builds/slony1-1.2.14rc/src/slony_logshipper'
gmake[1]: Leaving directory `/users/dists/pgsql/builds/slony1-1.2.14rc/src'
*** Error exit code 2
So basically, the 'make' errors out here but it's hard to tell what exactly is causing the issue.
Any clues as to what/where to look deeper?
Many thanks.
Ed
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 07:11 PM
04-15-2008 07:11 PM
Re: Software build problem
I know nothing, and it's not clear to me
either, but the last (visible) command seems
to be that "bison" thing.
You might look at the "make" file(s) to see
if there are any hidden commands near that
"bison" command. Otherwise, I'd probably try
to run that "bison" command manually, to see
if that reveals anything.
Get a fresh "bison" kit and install that?
Sounds like a mystery, all right.
either, but the last (visible) command seems
to be that "bison" thing.
You might look at the "make" file(s) to see
if there are any hidden commands near that
"bison" command. Otherwise, I'd probably try
to run that "bison" command manually, to see
if that reveals anything.
Get a fresh "bison" kit and install that?
Sounds like a mystery, all right.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP