This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Confused about linking
- From: Eljay Love-Jensen <eljay at adobe dot com>
- To: Mattias Brändström <thebrasse at brasse dot org>, gcc-help at gcc dot gnu dot org
- Date: Mon, 09 Aug 2004 11:05:39 -0500
- Subject: Re: Confused about linking
- References: <41179843.5010404@brasse.org>
Hi Mattias,
Try this...
cd /usr/lib
ln -s libboost_thread.so.1 libboost_thread.so
ln -s libboost_regex.so.1 libboost_regex.so
Then see if it links.
Otherwise, try putting in the fully qualified pathname:
g++ foo.cpp /usr/bin/libboost_regex.so.1 /usr/bin/libboost_thread.so.1
HTH,
--Eljay