Original Post
Was using Visual Studio 2010 but I'm sick of waiting for a C++ refactor tool or an IDE integrated C++ unit test framework (that doesn't only work in C++/CLI), and they're not even in the VS2012 preview so I made the jump to Eclipse with CDT and MinGW as a compiler and it worked awesomely for editing code. Problem is that I can't seem to be able to access the new libraries that used to work fine with Visual Studio 2010. For example, the header file exists but a bunch of #ifdef macros exclude the whole file.
The C++0x features implemented in G++ (lambdas, auto, etc.) all work fine, it's just the libraries that look inaccessible.
Are those libraries actually implemented for MinGW? Am I just missing an option in the g++ command line? (I'm using std=c++0x, is there another one?) Help!
The C++0x features implemented in G++ (lambdas, auto, etc.) all work fine, it's just the libraries that look inaccessible.
Are those libraries actually implemented for MinGW? Am I just missing an option in the g++ command line? (I'm using std=c++0x, is there another one?) Help!