Hi Sebastien,
Could be a "too many symbols" overflow.
Could be an interdependency between library A and B (usually "a bad thing").
Try this:
g++ -o foo myapp.o libA.a libB.a libA.a
That will help if there are library interdependencies.
HTH, --Eljay
Hi Sebastien,
Could be a "too many symbols" overflow.
Could be an interdependency between library A and B (usually "a bad thing").
Try this:
g++ -o foo myapp.o libA.a libB.a libA.a
That will help if there are library interdependencies.
HTH, --Eljay