|
Re: RE: Throw exception from shared object.
|
10/10/2011 4:41 AM
post89275
|
Re: RE: Throw exception from shared object.
It seems the problem was : I linked my shared lib with qcc and not with QCC.
Some of my file are c file and other are c++ files. I always use qcc and it selects the good compiler with the extension
of the files (c or cpp ).
But the problem appears when I make the dynamic lib with the object files collection.
before (I get Abort and core dumped ) :
qcc -o mylib.so obj1.o obj2.o ....
now (it works fine):
QCC -o mylib.so obj1 obj2.o
Voilà.
|
|
|