Despite disabling RTTI using the /GR- argument I still get the following errors while trying to compile code that uses the STL vector with clang-cl:
F:\LLVM-fresh\vs11\bin\Debug>clang-cl /c /GR- testdll.cpp
error: cannot mangle RTTI descriptors for type ‘bad_alloc’ yet
error: cannot mangle the name of type ‘bad_alloc’ into RTTI descriptors yet
error: cannot mangle RTTI descriptors for type ‘exception’ yet
error: cannot mangle the name of type ‘exception’ into RTTI descriptors yet
4 errors generated.
Despite disabling RTTI using the /GR- argument I still get the following errors while trying to compile code that uses the STL vector with clang-cl:
F:\LLVM-fresh\vs11\bin\Debug>clang-cl /c /GR- testdll.cpp
error: cannot mangle RTTI descriptors for type 'bad_alloc' yet
error: cannot mangle the name of type 'bad_alloc' into RTTI descriptors yet
error: cannot mangle RTTI descriptors for type 'exception' yet
error: cannot mangle the name of type 'exception' into RTTI descriptors yet
4 errors generated.
Thanks for any assistance!
Just a sanity check, something like this was fixed mid-November in r195168:
It’s trying to use RTTI for exceptions. You can attempt to disable the exception handling code by passing -D_HAS_EXCEPTIONS=0, but Microsoft doesn’t fully support this. For now, I use it while self-hosting clang with clang-cl.