- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ld: (Warning) Ignore library libCommon.a with bad ...
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
05-18-2013 12:36 PM - last edited on 05-19-2013 07:49 PM by Maiko-I
05-18-2013 12:36 PM - last edited on 05-19-2013 07:49 PM by Maiko-I
I got the following errors when compiling a module linking another module's libraries.
My machine info is lasted below:
aCC -v +DD64 +DSitanium2 -D_HP_SOURCE +z -z -ext +eh -D_REENTRANT -g a.o b.o -Llib -lCommon -lNet -lrwtool -o result
libCommon.a =>
The compiling/ld commands for generating libCommon.a without a problem is listed below:
aCC -v +DD64 +DSitanium2 -DUNIX +DA2.0W -O -D_HP_SOURCE +z -I../include
-c Common.C
/opt/aCC/lbin/ecom -architecture 64 -ia64abi all -inst compiletime -sysdir /usr/include -test namespaces -koenig_lookup on -ansi_for_scope on -inline_power 2 -
link_type dynamic -fpeval float -fpevaldec _Decimal32 -tls_dyn on -xmath_ielf_path /opt/aCC/lib/hpux64/libmielf -target_os 11.31 -scheduler itanium2 -I../include --sys_include /opt/aCC/include_std --sys_include /opt/aCC/include_std/iostream_compat --sys_include /usr/include --sys_include /usr -D_HP_IA64ABI -D__BUILTIN_MILLI -D_BIND_LIBCALLS -D_Math_errhandling=MATH_ERREXCEPT -D__hpux -D__unix -D__ia64=1 -D__ia64__=1 -D_BIG_ENDIAN=1 -D__STDCPP__ -D_HP_NAMESPACE_STD -D_LP64 -D__LP64__ -D__cplusplus=199711L -D_INCLUDE__STDC_A1_SOURCE -D__HP_aCC=62500 -D_HP_INSTANTIATE_T_IN_LIB -D_INLINE_ASM -D_FLT_EVAL_METHOD=0 D_DEC_EVAL_METHOD=0 -DUNIX -D_HP_SOURCE -ucode hdriver=optlevel%2% -plusolistoption -Ol06all! -plusolis
toption -Ol12indirect! -plusolistoption -Ol13moderate! -plusooption -Oq02,al,ag,
cn,sz,ic,vo,Mf,Po,es,rs,Rf,Pr,sp,In,cl,om,vc,pi,fa,Pe,rr,pa,pv,nf,cp,Lx,Pg,ug,lu
,lb,uj,dn,sg,pt,kt,em,np,ar,rp,dl,Fs,bp,wp,Pc,mp,lr,cx,cr,pi,so,Rc,fa,ft,fe,ap,s
t,lc,Bl,sr,Qs,do,ib,pl,sd,ll,rl,dl,Lt,ol,fl,lm,ts,rd,Dp,If! Common.C
Solved! Go to Solution.
- Tags:
- ABI mismatch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2013 10:34 PM
05-18-2013 10:34 PM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
What does "file lib/libCommon.a" show? What's in that archive?
How did you create that archive? With /usr/ccs/bin/ar?
>aCC -v +DD64 a.o b.o -Llib -lCommon -lNet -lrwtool
Instead of -lrwtool you should have -lrwtool_v2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2013 04:52 PM
05-19-2013 04:52 PM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
Thanks for the reply. The libNet.a was generated from compiled Common.o as listed below without a problem.
ar rvu libNet.a Common.o
ar t libNet.a
Common.o (BTW, Common.o include <sys/socket.h>
I replaced the -lrwtool with -lrwtool_v2 to generate the binary result, the same warning and error were reported.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2013 09:23 PM
05-19-2013 09:23 PM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
>ar rvu libNet.a Common.o
Again, which ar(1) did you use? What does this show?
$ whence ar
You must not use a foreign devil ar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2013 08:04 AM
05-20-2013 08:04 AM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
whence ar =>
/usr/bin/ar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2013 09:19 AM - edited 05-20-2013 09:21 AM
05-20-2013 09:19 AM - edited 05-20-2013 09:21 AM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
>/usr/bin/ar
Assuming that is a symlink to /usr/ccs/bin/ar, what do these show?
$ file lib/libCommon.a
$ /usr/ccs/bin/elfdump -f -g lib/libCommon.a
Have you removed and recreated libCommon.a?
>ar rvu libNet.a Common.o
What's in libCommon.a?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2013 10:13 AM
05-20-2013 10:13 AM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
ls -l /usr/bin/ar
lrwxr-xr-x 1 bin bin 15 Aug 10 2010 /usr/bin/ar@ -> /usr/ccs/bin/ar
Actually I have two .a file created with the same warning and error displayed. I always do "make clean" before creating them.
file libNet.a
libNet.a: archive file
file libCommon.a
libCommon.a: archive file
ar t libNet.a
Connection.o
/usr/ccs/bin/elfdump -f -g libNet.a
libNet.a:
*** Archive Symbol Table ***
1174 _ZN21Connection_Err_SocketC1EPc
1174 _ZN21Connection_Err_SocketC3EPc
1174 _ZN21Connection_Err_SocketC2EPc
1174 _ZN18Connection_Err_SvcC1EPc
1174 _ZN18Connection_Err_SvcC3EPc
1174 _ZN18Connection_Err_SvcC2EPc
1174 _ZN18Connection_Err_SecC1EPc
1174 _ZN18Connection_Err_SecC3EPc
1174 _ZN18Connection_Err_SecC2EPc
1174 _ZN10ConnectionC1Ev
1174 _ZN10ConnectionC2Ev
1174 _ZN10ConnectionD1Ev
1174 _ZN10ConnectionD0Ev
1174 _ZN10ConnectionD2Ev
1174 _ZN10Connection11receiveDataEPci
1174 _ZN10Connection17simpleReceiveDataEPci
1174 _ZN10Connection19setErrorExplanationEPc
1174 _ZN10Connection19getErrorExplanationEv
1174 _ZN10Connection8sendDataEPhi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2013 11:26 AM
05-20-2013 11:26 AM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
Also please do this:
/usr/ccs/bin/elfdump -f -g libCommon.a
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2013 01:35 PM
05-20-2013 01:35 PM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
Thanks Dennis. Please see attached.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2013 06:19 PM
05-20-2013 06:19 PM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
>ld: (Warning) Ignore library lib/libCommon.a with bad machine type 15
This error says that this archive has 64 bit PA objects in it.
Remove lib/libCommon.a and rebuild.
Are you doing anything tricky and using XPADE?
>Please see attached.
The -f output all has:
Machine: IPF
Flags: IA-64
I don't see:
Machine: PA-RISC
Flags: PA2.0
Do you still get that error?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2013 08:46 PM
05-20-2013 08:46 PM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
"make clean" was always done before creating lib/libCommon.a.
I didn't use XPADE.
Following contains most of the machinfo output: My server should be a Itanium instead of the PA-RISC machine.
machinfo
CPU info:
5 Intel(R) Itanium 2 9100 series processors (1.59 GHz, 12 MB)
266 MHz bus, CPU version A1
Memory: 12282 MB (11.99 GB)
Firmware info:
Firmware revision: 04.20.00
FP SWA driver revision: 1.18
IPMI is supported on this system.
BMC firmware revision: 4.14
Platform info:
Model: "ia64 hp server Integrity Virtual Machine"
OS info:
Nodename:
Release: HP-UX B.11.31
Version: U (unlimited-user license)
Machine: ia64
ID Number: 2730369916
vmunix _release_version:
@(#) $Revision: vmunix: B.11.31_LR FLAVOR=perf
Thanks again for looking into this,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2013 11:01 PM
05-20-2013 11:01 PM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
>"make clean" was always done before creating lib/libCommon.a.
Please make sure you do a "rm -f lib/libCommon.a".
Make sure you hunt down all copies of libCommon.a and all copies of objects that go into that archive and remove them.
Make sure that you do a "file *.o" on each object file directory and the output is like:
foo.o: ELF-64 relocatable object file - IA64
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2013 07:40 AM
05-21-2013 07:40 AM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
After "make clean", all the .o and .a files were removed. Then the make command generated all the .o files and those two .a files without a problem as usual. The the result of all the "file ~.o" all showns "ELF-64 relocatable object file - IA64". But same ld warning and error were reported again when trying to build another module and link it with -lCommon -lNet -lrwtool_v2. BTW, my aCC and ld are the 2009 version on this server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2013 11:30 AM
05-21-2013 11:30 AM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
Dennis: You are right. I searched libNet.a on the entire server and saw multiple copies and then realized that the LIBPATH pointed to a very old lib folder. After corrected it, the issues was resolved. You are great.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2013 12:59 PM
05-21-2013 12:59 PM
Solution>the issues was resolved. You are great.
Great! Please click on the Kudos stars for all replies that were helpful.
Also pick one of them and use the Post Options to mark it as the solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2013 08:23 AM
05-22-2013 08:23 AM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
Dennis: I wish that you will receive/enjoy www.biblesforamerica.org as a token of appreciation. BTW, may I know where to click Kudos stars? Also do you have an idea regarding the following ld errors?
aCC -v +DD64 +DSitanium2 -L/usr/lib/hpux64 -L/opt/langtools/lib/hpux64 -D_HP_SOURCE +z -g xxx.o -L/home/users/vision/vision_src/comlib_cpp/lib -lCommon -lNet -lrwtool_v2 -o mascollectorreader
LPATH=/usr/lib/hpux64:/opt/langtools/lib/hpux64
/usr/ccs/bin/ld -o mascollectorreader -u___exit -umain -L/opt/aCC/lib/hpux64 -L
/usr/lib/hpux64 -L /opt/langtools/lib/hpux64 xxx.o -L /home/users/vision/vision_src/comlib_cpp/lib -lCommon -lNet -lrwtool_v2 -lstd_v2 -lCsup -lm -lunwind -lCsup -lc -ldl >/var/tmp/AAA025854 2>&1
/opt/aCC/bin/c++filt </var/tmp/AAA025854 1>&2
ld: Unsatisfied symbol "virtual table of Invalid_Directory" in file xxx.o
ld: Unsatisfied symbol "type info of Invalid_Directory" in file xxx.o
The class Invalid_Directory is defined in the comlib_cpp/include/ErrorLog.h as listed below:
class Invalid_Directory : public exception
{
private:
const char *desc;
public:
Invalid_Directory(const char* ExceptionName) : desc(ExceptionName) {;}
virtual const char* what () const throw() {
return (const char*)desc;
}
virtual ~Invalid_Directory() throw();
};
xxx.C has ”#include <ErrorLog.h>” and “ErrorLog ERROR_LOG; “ and the codes listed below:
try {
ERROR_LOG.open(ErrLogDir,ErrLogFile);
} catch ( Invalid_Directory ) {
cout << "Error: Failed to open logfile ( dir: " << ErrLogDir << " file: " << ErrLogFile << " )" << endl;
exit(1);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2013 12:19 PM
05-22-2013 12:19 PM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
>may I know where to click Kudos stars?
The Kudos stars are the white stars to the bottom left of each post.
>do you have an idea regarding the following ld errors?
ld: Unsatisfied symbol "virtual table of Invalid_Directory"
ld: Unsatisfied symbol "type info of Invalid_Directory"
These unsat symbols occur because you haven't defined the key function for that class:
virtual ~Invalid_Directory() throw();
You need to define this virtual destructor.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2013 06:40 AM
05-23-2013 06:40 AM
Re: ld: (Warning) Ignore library libCommon.a with bad machine type 15 and ld: Mismatched ABI
I will do the Kudos stars. virtual ~Invalid_Directory() throw() {}; cleared out those errors.