We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
__csan_llvm_x86_sse2_pause seems to be missing for cilksan I tried to add the compile flag
__csan_llvm_x86_sse2_pause
-mllvm -cilksan-bc-path=`find ~/opencilkv20/build/bin/clang++ -name "libcilksan.bc"
but that didn't fix it either
Adding the following to the code did work
#ifdef __cilksan__ #ifdef __cplusplus extern "C" { #endif void __csan_default_libhook(uint64_t call_id, uint64_t func_id, unsigned count); void __csan_llvm_x86_sse2_pause(uint64_t call_id, uint64_t func_id, unsigned count) { __csan_default_libhook(call_id, func_id, count); } #ifdef __cplusplus } #endif #endif
As requested reporting the missing symbol. Let me know if the source would be helpful
The text was updated successfully, but these errors were encountered:
Thanks for the report.
Out of curiosity, concerning the -cilksan-bc-path flag, can you try changing that flag as follows?
-cilksan-bc-path
-mllvm -cilksan-bc-path=`find ~/opencilkv20/build/ -name "libcilksan.bc"
In particular, remove bin/clang++ from the path given to find. Does it work if you use that modified flag (and don't add the code snippet)?
bin/clang++
find
Sorry, something went wrong.
Yes, that did also work
[cilksan] Add hook for LLVM intrinsic for x86 pause instruction. Fix …
7f3dcda
…issue OpenCilk/infrastructure#21.
0928dd4
No branches or pull requests
__csan_llvm_x86_sse2_pause
seems to be missing for cilksanI tried to add the compile flag
but that didn't fix it either
Adding the following to the code did work
As requested reporting the missing symbol. Let me know if the source would be helpful
The text was updated successfully, but these errors were encountered: