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
A basic test program fails to link against TSAN on r21 with:
/toolchain/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc:428: error: undefined reference to '__tsan::__interception::real_setjmp' /toolchain/llvm-project/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc:428: error: undefined reference to '__tsan::__interception::real_setjmp'
This has been fixed in upstream rL365806 but r21 has been branched from r365631 before this fix was landed.
Test case:
#include <future> int main() { while (true) { auto f = std::async([] { return 123; }); if (!f.valid()) { return 1; } if (f.get() != 123) { return 1; } if (f.valid()) { return 1; } } }
Pkg.Desc = Android NDK Pkg.Revision = 21.0.6113669
Build system: Standalone toolchain Host OS: Windows & Mac
The text was updated successfully, but these errors were encountered:
Same answer as in #1171 for now. Closing as dup
Sorry, something went wrong.
No branches or pull requests
Description
A basic test program fails to link against TSAN on r21 with:
This has been fixed in upstream rL365806 but r21 has been branched from r365631 before this fix was landed.
Test case:
Environment Details
Pkg.Desc = Android NDK
Pkg.Revision = 21.0.6113669
Build system: Standalone toolchain
Host OS: Windows & Mac
The text was updated successfully, but these errors were encountered: