![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| HP-UX HP-UX (Hewlett Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on System V. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| RPM For HPUX | harishkumar | UNIX and Linux Applications | 2 | 12-13-2007 10:20 AM |
| gdb for HPUX 11.23 | rimon | HP-UX | 0 | 11-11-2007 06:59 AM |
| New to HPUX | carryclare | UNIX for Dummies Questions & Answers | 1 | 12-20-2005 09:57 AM |
| HPUX any help | newbird | HP-UX | 1 | 02-06-2005 03:36 PM |
| HPUX 10.20 et HPUX 11 | Olivier | UNIX for Dummies Questions & Answers | 2 | 03-27-2002 04:30 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
CCOPTS in HPUX
Hi
i am using a mkefile to build my exe which Using the POSIX Shell. CCOPTS="-Ae -O -IH.LIBRARY -D_POSIX_C -D_SOCKET_C" it is not building with this CCOPTS can anybody help me regarding the whether CCOPTS given above is correct or not Can you tell more in CCOPTS Many thanks Naren |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
First off:
Code:
export CCOPTS="-Ae -O -IH.LIBRARY -D_POSIX_C -D_SOCKET_C" -Ae uses "extended" ANSI C - for older version of HPUX this means things like long long datatype The -IH.LIBRARY means to search a folder named H.LIBRARY that is in the PATH. It's better to specify the fully qualified path like -I /path/to/H.LIBRARY The other two options are creating #define _POSIX_C and #define _SOCKET_C as if they were in the source. Whether all of this is correct I have no idea. |
|||
| Google The UNIX and Linux Forums |