This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Threadiing Problems on AIX 4.3.3 ML-11 with gcc 3.2.3 (g++)
- From: Markus dot Schaeffer at np-gmbh dot com
- To: gcc-help at gcc dot gnu dot org
- Date: Wed, 6 Aug 2003 15:20:05 +0200
- Subject: Threadiing Problems on AIX 4.3.3 ML-11 with gcc 3.2.3 (g++)
Hello Folks,
I still have problems if my server does many calls (threading) on a
"Service" function
that is placed in a in a SharedLib.
Is there a possibility that exceptions do not work in this scenario ?
Bug in g++ ?
Again wrong copile / link options ?
Thanks
Mattey
Environment:
OS: AIX 4.3.3 ML-11
CXX: gcc 3.2.3 (I'am using g++)
LD: /usr/ccs/bin/ld
### MAKEFILE ###
CXXFLAGS= -c -g \
-Wno-deprecated \
-D_AIX \
-fpic \
-pthread \
-fexceptions
LDFLAGS= -pthread \
-Wl,-brtl \
-Wl,-bnoquiet \
-Wl,-bh:5 \
${XERCESC_LDFLAGS}
SHARED_LDFLAGS= -pthread -shared \
-Wl,-bE:symbols.exp \
-Wl,-binitfini:init:fini:0 \
-bM:SRE \
-Wl,-bnoquiet \
-Wl,-bh:5 \
${XERCESC_LDFLAGS}
### MAKEFILE END ###