I\'m trying to compile some C++ code (including C++11 features) on OS X 10.8 using the clang++ compiler. I have a makefile that generates the object files OK, then on the co
As a side note, faced with the same error message, I discovered I needed to use gcc -lstdc++ -lLibraryName ... (the stdc++ part being needed).
gcc -lstdc++ -lLibraryName ...
See also https://github.com/JonathanSalwan/Triton/issues/243