31 Mar
2005
31 Mar
'05
1:48 a.m.
On Wed, 30 Mar 2005 13:06:32 +0100, Christian Heinemann wrote
Hi, i want to use serialization library from boost. I'm enthused about the functionality. But when i try to compile and link the first example (which can be find on http://www.boost.org/libs/serialization/doc/index.html), i get the following error messages: (with g++ -o serialize serialize.cpp -lboost_serialization-gcc -I/usr/local/include/boost-1_32)
It doesn't look like you've told the compiler where to find the serialization library. You probably need the option: -L /usr/local/lib assuming that's where the serialization library is installed. HTH, Jeff