This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Confused about linking


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]