Hello. I’m trying to integrate LexActivator into my application (C++/Qt on MacOS). I’m using C++11 by providing following CXX_FLAGS: -std=c++11 -stdlib=libc++ … and I’m getting compile errors like following:
std::string::find_last_of(char const*, unsigned long, unsigned long) const", referenced from:
GetApplicationDirectory() in libLexActivator.a(LexAbstraction.o)
From my previous experience I can make assumption that libLexActivator.a was compiled with different version of C++ standard libraries. My question is: Is there a way to integrate libLexActivator.a into application that uses C++11 STD libraries? Or maybe I’m doing something wrong?