$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2007-02-04 04:25:29
Meryl Silverburgh wrote:
> i have more information about my problem:
>
> I have add '-L/usr/lib' as my library path during linking and i make
> sure i have 'libboost_thread*' library in '/usr/lib', but it still
> does not work. Any idea why?
This is a compiler issue: you need to tell the compiler that you need to
link to the thread lib with a -lboost_thread.
John.