I'm having a clang issue (Anders - you mentioned clang in one of your previous responses to my post, so I thought I'd give it a try)
Here's some simple code illustrating the problem:
extern "C" void __declspec(dllexport) TEST(int num)
{
return;
} When it tries to link, clang returns this as an error:Cannot export _TEST: symbol not foundProblem is, I can't find a way to prevent clang from mangling names.
Anders, since you use clang to (I assume) produce shared libs, I thought you'd be a good person to ask !
thanks for the time