Displaying 1 result from an estimated 1 matches for "__sync_bool_compare_and_swap_16".
Did you mean:
__sync_bool_compare_and_swap_1
2012 Dec 12
1
[LLVMdev] providing llvm gcc built-in function implementation...
Let me explain briefly my issue:
While working on my project ( OSX, llvh gcc 4.2), I run into the
compilation error:
"
..
Undefined symbols for architecture x86_64:
___sync_bool_compare_and_swap_16", referenced from:
...
"
I decided that the function is declared, but not implemented for uint128_t.
So, I implemented the function, and the code is working correctly.
But the only way I manage to make the linker to find the function, and to
build the code is to declare my function a...