This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
RE: libgcc.a not found on AIX 4.3.3 linking DBD::ORACLE
- From: "De Reus, Jaap J SITI-ITDGE12" <jaap dot dereus at shell dot com>
- To: 'David Edelsohn' <dje at watson dot ibm dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Mon, 3 Mar 2003 09:40:04 +0100
- Subject: RE: libgcc.a not found on AIX 4.3.3 linking DBD::ORACLE
David,
first thanks for your reaction. I have been playing around with the
linkage step, which is the last step. When I remove the sw-syscalls it works
fine. Still my confision is why does it say "cannot find libgcc" while there
is probably an error in the link command set-up.
I will keep your comment for later reference.
Thanks again
Kind regards
Jaap de Reus.
-----Original Message-----
From: David Edelsohn [mailto:dje at watson dot ibm dot com]
Sent: maandag 3 maart 2003 3:30
To: De Reus, Jaap J SITI-ITDGE12
Cc: gcc-help at gcc dot gnu dot org
Subject: Re: libgcc.a not found on AIX 4.3.3 linking DBD::ORACLE
GCC uses two libgcc's: one a traditional archive, libgcc.a, and
one a shared library, libgcc_s.a (with variants for Power, PowerPC,
pthreads, and 64-bit). The shared library is in the install lib
directory, but the archive is in the GCC private installation directory.
It does not make sense that it suddenly would start failing when
it worked before. Is your Makefile adding a non-GCC option, like "-b" or
"-B"?
David