- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Compiling with HPC/ANSI C
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
04-17-2001 10:09 AM
04-17-2001 10:09 AM
Compiling with HPC/ANSI C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2001 10:15 AM
04-17-2001 10:15 AM
Re: Compiling with HPC/ANSI C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2001 10:25 AM
04-17-2001 10:25 AM
Re: Compiling with HPC/ANSI C
man ld for cc options passed to ld
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2001 10:32 AM
04-17-2001 10:32 AM
Re: Compiling with HPC/ANSI C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2001 02:44 PM
04-17-2001 02:44 PM
Re: Compiling with HPC/ANSI C
The x can assume one of the following values:
d Driver
p Preprocessor
c Compiler
a Assembler
l Linker
So to find out what options are available, you have to check the man page for x. Example: for the linker (l)
man ld
I use
cc -Wl,+vnocompatwarnings
to suppress compatibility warnings
You'll find +vnocompatwarnings documented in the man page for ld.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2001 05:27 AM
04-19-2001 05:27 AM
Re: Compiling with HPC/ANSI C
-H250000. They do say that some of these arguments are implementation specific. Also, the example in the cc +help does mention that
-Wp, -H250000 increase the define table size. But for -Wc, I look everywhere I could think of but couldn't find any references or descriptions of the arguments. Is there another place I could look or is it a lost cause? This option was used under HP-UX 9.03 using HP C/ANSI C version and we are trying to recompile under HP-UX 10.2 using HP C/ANSI C version 10.32.30.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2001 04:59 AM
04-23-2001 04:59 AM
Re: Compiling with HPC/ANSI C
You can try checking the man pages and/or help entries for the assembler (as), linker (ld), and/or C preprocessor (cpp). These will give you appropriate options to use for -Wa, -Wl, and -Wp, respectively. You can also find information on -Wc options via the ANSI C online help (cc +help).
I hope this helps.