Problem lboost_filesystem-mgw-mt-s-l_33_l

Hi , compiling a project under Code Blocks I get the following message: ld.exe:cannot find -lboost_filesystem-mgw-mt-s-l_33_l I go there http://www.boost.org/doc/html/jam/building.html I do:C:\Documents and Settings\src\boost\tools\jam\src>build mingw --debug (like explained) A new folder named bin.ntx86.debug is added after I go there http://www.boost.org/doc/html/bbv2/installation.html : 1:(done) 2:I do:C:\Documents and Settings\src\boost\tools\build\v2> bjam --version 3:I open the user-config.jam file (like explained) and I modify the file, the modification is the following: import toolset : using ; # GCC configuration # Configure gcc (default version) using gcc : : "C:\mingw\bin\g++" ; 4:I copy bjam.exe from C:\Documents and Settings\src\boost\tools\build\v2 to C:\Documents and Settings\src\boost\tools\build\v2\example\hello and I run bjam (like explained): C:\Documents and Settings\src\boost\tools\build\v2\example\hello>bjam I get the following message: "C:mingwbing++ n'est pas reconnu en tant que commande interne ou externe, un programme executable ou un fichier de commandes .." ..... "...failled gcc.compile.c++ bin\gcc\debug\hello.o... ...skipped <pbin\gcc\debug>hello.exe for lack of<pbin\gcc\debug>hello.o... ...failed updating one target.. ...skipped one target..." Where is my error (4)? Thanks, David _________________________________________________________________ Votez pour vos séries TV préférées et tentez de gagner un voyage à Hawaï ! http://messengerawards.divertissements.fr.msn.com/

question boost wrote:
3: I open the user-config.jam file (like explained) and I modify the file, the modification is the following:
import toolset : using ;
# GCC configuration
# Configure gcc (default version)
using gcc : : "C:\mingw\bin\g++" ;
I get the following message:
"C:mingwbing++ n'est pas reconnu en tant que commande interne ou externe, un programme executable ou un fichier de commandes .."
Try using forward slashes, e.g. "c:/mingw/bin/g++" ? The message looks as if your backslashes were treated as Unix escapes rather than as Windows path separators.

on Wed Oct 17 2007, question boost <question.boost-AT-hotmail.fr> wrote:
Hi , compiling a project under Code Blocks I get the following message:
ld.exe:cannot find -lboost_filesystem-mgw-mt-s-l_33_l
I go there http://www.boost.org/doc/html/jam/building.html
I do: C:\Documents and Settings\src\boost\tools\jam\src>build mingw --debug (like explained)
A new folder named bin.ntx86.debug is added
after I go there http://www.boost.org/doc/html/bbv2/installation.html :
1: (done)
2: I do:C:\Documents and Settings\src\boost\tools\build\v2> bjam --version
3: I open the user-config.jam file (like explained) and I modify the file, the modification is the following:
import toolset : using ;
# GCC configuration
# Configure gcc (default version)
using gcc : : "C:\mingw\bin\g++" ;
Try doubling your backslashes. using gcc : : "C:\\mingw\\bin\\g++" ; -- Dave Abrahams Boost Consulting http://www.boost-consulting.com
participants (3)
-
David Abrahams
-
Nat Goodspeed
-
question boost