undefined reference to duckx::Document::Document
-
-
@Toruha said in undefined reference to duckx::Document::Document:
c++11 console
This doesn't tell me much, really!
Did you use the Microsoft compiler (same as in Visual Studio)? Or did you use MinGW? -
@Toruha said in undefined reference to duckx::Document::Document:
c++11 console
This doesn't tell me much, really!
Did you use the Microsoft compiler (same as in Visual Studio)? Or did you use MinGW? -
@Toruha You can't mix different compilers like in this case Microsoft compiler and MinGW. You have to build both, the library and your app, with same compiler.
But from your screen-shot above it rather looks like you're using Microsoft compiler...
-
Right, the _ITERATOR_DEBUG_LEVEL, RuntimeLibrary issues above rather show that you've done a Release build of duckx, but want to use it in a debug build of your app. This won't work; you need to compile both in the same configuration.
-
@Toruha You can't mix different compilers like in this case Microsoft compiler and MinGW. You have to build both, the library and your app, with same compiler.
But from your screen-shot above it rather looks like you're using Microsoft compiler...
-
@Toruha You can't mix different compilers like in this case Microsoft compiler and MinGW. You have to build both, the library and your app, with same compiler.
But from your screen-shot above it rather looks like you're using Microsoft compiler...
-
Right, the _ITERATOR_DEBUG_LEVEL, RuntimeLibrary issues above rather show that you've done a Release build of duckx, but want to use it in a debug build of your app. This won't work; you need to compile both in the same configuration.
