This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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 ###


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]