search for: bitset_test

Displaying 2 results from an estimated 2 matches for "bitset_test".

Did you mean: bisect_test
2012 May 23
2
[LLVMdev] Windows question: Dozens of linker warnings and errors
...gnored I don't use InterlockedBitTestAndSet anywhere in my code and the same goes for the rest of the symbols that are being warned about. After that, I get a ton of errors form the linker because it complains about the above symbols already being defined. I also get a few errors like this: Bitset_test-423377.o : error LNK2001: unresolved external symbol __ZTVN10__cxxabiv120__si_class_type_infoE Any ideas? Is the Windows support simply not mature enought for real use or am I doing something wrong? I invoke the linker through clang++ by giving the input object files and a library that must be l...
2012 May 24
0
[LLVMdev] Windows question: Dozens of linker warnings and errors
...se it complains about > the above symbols already being defined. This is due to clang not understanding force_inline. These functions are defined in a header included from Windows.h, so it ends up getting a definition everywhere it is included. > I also get a few errors like this: > > Bitset_test-423377.o : error LNK2001: unresolved external symbol > __ZTVN10__cxxabiv120__si_class_type_infoE > > Any ideas?  Is the Windows support simply not mature enought for real use or > am I doing something wrong?  I invoke the linker through clang++ by giving > the input object files and...