- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Apache configure using cc - inode sharing problem
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
06-27-2002 03:38 PM
06-27-2002 03:38 PM
Apache configure using cc - inode sharing problem
However when running the configure script i get the following error :
./configure --prefix=/apps/apachebca --enable-rule=SHARED_CORE --enable-module=so
Configuring for Apache, Version 1.3.19
+ Hint: please use CFLAGS instead of EXTRA_CFLAGS next time
+ using installation path layout: Apache (config.layout)
Creating Makefile
Creating Configuration.apaci in src
Creating Makefile in src
+ configured for HP-UX 11 platform
+ setting C pre-processor to cc -E
+ checking for system header files
+ adding selected modules
+ enabling generation of Apache core as DSO
+ checking sizeof various data types
+ doing sanity check on compiler and options
** A test compilation with your Makefile configuration
** failed. The below error output from the compilation
** test will give you an idea what is failing. Note that
** Apache requires an ANSI C Compiler, such as gcc.
cd ..; cc -DHPUX11 -Aa -Ae -D_HPUX_SOURCE -DUSE_HSREGEX -DUSE_EXPAT -I./lib/expat-lite +z -DSHARED_CORE -fPIC `./apaci` -L/apps/bo/webibca/Server
/WebIntelligence2.5/wiqt/lib -lospace -L/apps/bo/webibca/Server/ORB2.5/lib -lorb_r -lcl -lCsup -lm -lpthread /apps/bo/webibca/Server/WebIntelligence2.5/wiset
up/cpprt0.o -o helpers/dummy helpers/dummy.c -lm -lpthread
cc: warning 422: Unknown option "f" ignored.
cc: error 1411: "cpprt0.c" shares inode with "cpprt0.o". Can't overwrite source file.
*** Error exit code 8
Stop.
======== Error Output for sanity check ========
============= End of Error Report =============
Aborting!
I checked the inode numbers for .o and .s file, and they are different.
I saw a similar posting sometime back.
Is this problem related to C compiler installation ?
Any ideas/solutions ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 04:02 PM
06-27-2002 04:02 PM
Re: Apache configure using cc - inode sharing problem
compiler, or use GCC.
The easiest way to get apache up and running, would be to use the precompiled version found here:
http://hpux.connect.org.uk/hppd/hpux/Networking/WWW/apache-1.3.26/
However, if you want to compile your own apache, you can download a precompiled version of gcc here:
http://hpux.connect.org.uk/hppd/hpux/Gnu/gcc-3.1/
Hope that helps.
-Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 04:10 PM
06-27-2002 04:10 PM
Re: Apache configure using cc - inode sharing problem
But i do have an installation of HP's ANSI C compiler on the box. And it appears correctly in the path too.
I can't use the pre-built apache as I require to include some files provided for a specific application (Business Objects)
Another restriction is w.r.t version of gcc, as the vendor suggests - 2.95.3 where as HP says the only valid version for HPUX11.0 is ver3.0+
Any further ideas !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 04:19 PM
06-27-2002 04:19 PM
Re: Apache configure using cc - inode sharing problem
# which cc
/usr/bin/cc
# echo $PATH
/usr/bin:/usr/sbin:/sbin
# PATH=/opt/ansic/bin:/usr/bin:/usr/sbin:/sbin
# export PATH
# which cc
/opt/ansic/bin/cc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 05:53 PM
06-27-2002 05:53 PM
Re: Apache configure using cc - inode sharing problem
I'm looking at this error:
cc: error 1411: "cpprt0.c" shares inode with "cpprt0.o". Can't overwrite source file.
which I've never, to my short memory, run across. It would appear that the source and object file names are the same file (hard linked) as if an ln was done rather than an ld at some point. Try deleting the object file and starting over and reconfigure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 06:07 PM
06-27-2002 06:07 PM
Re: Apache configure using cc - inode sharing problem
more work.........