This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: run-time errors under AIX power3
- To: Robert Boehne <rboehne at ricardo-us dot com>
- Subject: Re: run-time errors under AIX power3
- From: David Edelsohn <dje at watson dot ibm dot com>
- Date: Fri, 13 Jul 2001 16:41:30 -0400
- cc: gcc at gcc dot gnu dot org
>>>>> Robert Boehne writes:
Robert> The libdl.a on the build system doesn't seem to have
Robert> 64-bit parts, is that the problem?
You did not invoke AIX nm with the appropriate flags.
$ nm -X32_64 /usr/lib/libdl.a
/usr/lib/libdl.a[shr.o]:
f -
dlclose U -
dlerror U -
dlopen U -
dlsym U -
/usr/lib/libdl.a[shr_64.o]:
dlclose U -
dlerror U -
dlopen U -
dlsym U -
By default, AIX commands operate on 32-bit object files.
David