On Nov 24, 2007 2:45 PM, Lukas Oboril <oboril.lukas at gmail.com> wrote: > Hi Stefan, > > let me ask you a question. Just for confirm. Everything in svn (QT, > FLAC ...etc) is needed build against stdcxx ??? I think so, but I > just need confirm. > > Thank you > > Luc
If you build anything which is written in C++, you need some Standard C++ Library. The catch is: various implementations of the Standard C++ Library are not ABI compatible with each other. So, when you choose one particular implementation, you are stuck with it. You can't mix Sun's libCstd.so.1 with Apache/RogueWave. If you want to build with the Apache/RogueWave STDCXX, you have to tell Sun Studio -library=no%Cstd, and pass the appropriate C++ header files directories in CPPFLAGS/CXXFLAGS. --Stefan -- Stefan Teleman KDE e.V. stefan.teleman at gmail.com
