Hello, I've successfully compiled boost libraries under Windows using MinGW. I'll be using the static multithreaded libraries with Codeblocks.
So far I've done what has been suggested:
-Added boostroot/stage/lib to the linker search directory.
-Added boostroot to the header compiler search directory.
-Added "libboost_system-mgw47-mt-s-1_54.a" to the library linker settings.
It finds the compiled library and the header file otherwise it would throw an error with the code below which just uses a class defined in this library.
I believe it's happening because it didn't compile the filesystem library for some reason, I'm going to compile boost a few times with different settings.
"b2 mingw toolset=gcc" trying now.
[Edit]
Cool so that compiled the filesystem library, hopefully it'll work now.