This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Threadiing Problems on AIX 4.3.3 ML-11 with gcc 3.2.3 (g++)
- From: David Edelsohn <dje at watson dot ibm dot com>
- To: Markus dot Schaeffer at np-gmbh dot com
- Cc: gcc-help at gcc dot gnu dot org
- Date: Tue, 05 Aug 2003 13:44:20 -0400
- Subject: Re: Threadiing Problems on AIX 4.3.3 ML-11 with gcc 3.2.3 (g++)
- References: <OF885E6FC2.B3AA53C7-ONC1256D79.0055B728@np-gmbh.com>
One more comment: you may need the -fpic option on the compilation
step if you are overriding symbols. Otherwise, all AIX object files are
PIC by default. AIX normally uses tight binding within a shared module,
unless the -Wl,-G option is used for System-V semantics. The compiler
optimizes for tight binding as well, unless -fpic is specified.
David