$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jeff Garland (jeff_at_[hidden])
Date: 2005-03-30 20:48:09
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