$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Douglas Gregor (doug.gregor_at_[hidden])
Date: 2006-04-27 11:39:23
On Apr 27, 2006, at 9:59 AM, george wrote:
> and it get compiled but when I try to run it, it can't find the libs
> (.so)
>
> ./server: error while loading shared libraries:
> libboost_thread-gcc-mt-1_33_1.so.1.33.1: cannot open shared object
> file: No such
> file or directory
>
>
> ./client: error while loading shared libraries:
> libboost_date_time-gcc-1_33_1.so.1.33.1: cannot open shared object
> file: No such
> file or directory
>
> but there are those files in the folder.....
export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
That'll allow the dynamic linker to find the files in the current
directory.
Doug