HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Need +n option for aC++ as linker
Operating System - Linux
1828662
Members
1223
Online
109983
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
06-29-2007 01:31 PM
06-29-2007 01:31 PM
Need +n option for aC++ as linker
HP_UX 11.00
aC++ A.03.30
Using aCC as linker and I'm getting uresolved externals that are there. I get the same error messages as when I run ld WITHOUT the +n option.
+n Causes the linker to load all object modules before searching any archive or shared libraries. Then it searches the archive and shared libraries specified on the command line in left to right order. Repeats the left to right search of the libraries on the command line until there are no more unsatisfied symbols, or the last search added no new definitions. This option is useful if two libraries are specified that have symbol dependencies on each other.
So I need a +n for aCC or a way for aCC to pass the +n to ld when it calls it.
aCC: warning 901: unknown option: `+n': use +help for online documentation.
aCC: warning 901: unknown option: `-umain': use +help for online documentation.
/usr/ccs/bin/ld: Unsatisfied symbols:
blkvwl (first referenced in /vobs/HP-UX_stage/lib/libxxxlib.a(xxx_iiucom.o)) (code)
mcpexp (first referenced in /vobs/HP-UX_stage/lib/libxxxlib.a(xxx_v1mcpe.o)) (code)
and many many many more.
TIA
aC++ A.03.30
Using aCC as linker and I'm getting uresolved externals that are there. I get the same error messages as when I run ld WITHOUT the +n option.
+n Causes the linker to load all object modules before searching any archive or shared libraries. Then it searches the archive and shared libraries specified on the command line in left to right order. Repeats the left to right search of the libraries on the command line until there are no more unsatisfied symbols, or the last search added no new definitions. This option is useful if two libraries are specified that have symbol dependencies on each other.
So I need a +n for aCC or a way for aCC to pass the +n to ld when it calls it.
aCC: warning 901: unknown option: `+n': use +help for online documentation.
aCC: warning 901: unknown option: `-umain': use +help for online documentation.
/usr/ccs/bin/ld: Unsatisfied symbols:
blkvwl (first referenced in /vobs/HP-UX_stage/lib/libxxxlib.a(xxx_iiucom.o)) (code)
mcpexp (first referenced in /vobs/HP-UX_stage/lib/libxxxlib.a(xxx_v1mcpe.o)) (code)
and many many many more.
TIA
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2007 02:01 PM
06-29-2007 02:01 PM
Re: Need +n option for aC++ as linker
Do a man aCC and have a look at the -Wx,arg1,arg2 option that hands off options to the various stages of the compiler/linker. Of course, you could break your makefile so that a separate link phase is used but
aCC -Wl,+n ... will send the +n option to ld.
aCC -Wl,+n ... will send the +n option to ld.
If it ain't broke, I can fix that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2007 02:33 PM
06-29-2007 02:33 PM
Re: Need +n option for aC++ as linker
Besides using -Wl,+n as Clay says, you can also order your archive libs, or repeat them.
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