Click here to Skip to main content
16,016,678 members

Comments by Baldur (Top 2 by date)

Baldur 1-Jul-11 9:20am View    
Hi.
The include paths you added were for the compiler. As you can see, the code can be compiled now, but your linker doesn't find the lib it needs. Generally spoken, your code is compiled first. After this was done successfully, the linker tries to link the compiled files together. This is what doesn't work in your case.

To solve this problem, once again, right-click on your project and chosse "settings". Again, the new window should open. Left click on "Linker" and you should see the entry "additional library paths" (or something quite alike - remember, my version is in another language). Check if the path and name of your libboost_regex-vc90-mt-sgd-1_46_1.lib library is included there and if it isn't, add it. Then the linker should be able to do its work so that you can run your project.
Baldur 24-Jun-11 4:57am View    
Hi.
Just saw your question. Could you please tell me the value of svalue when the error occurs?