$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jonathan Franklin (franklin.jonathan_at_[hidden])
Date: 2007-05-30 13:50:56
Try this:
g++ -Wall -O3 -ID:/C++/Boost/Current -o boostbuildtest.exe
boostbuildtest.cpp -Lc:/boost_current/lib -lboost_regex -lboost_filesystem
If this fails, then get a directory listing of c:/boost_current/lib and see
if your library files don't have any extra chars in them, like -mt or 1.34etc.
So if my libdir contains libboost_date_time-gcc41-mt-d.so, I would specify
-lboost_date_time-gcc41-mt-d on the command line.
Hope this helps.
Jon