-
-
Notifications
You must be signed in to change notification settings - Fork 262
New issue
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
Add AddressSanitizer support to fibers. #2975
Conversation
d1b2321
to
7c5e5b1
Compare
Linux functionality depends on |
63c0295
to
dcb9e4f
Compare
Manually tested on macOS and Ubuntu now. I'm satisfied with it now. Depends on #2984 |
dcb9e4f
to
4bd8bba
Compare
4bd8bba
to
16a82c3
Compare
16a82c3
to
a9f0cc6
Compare
@@ -27,6 +27,7 @@ config.gnu_make_bin = "@GNU_MAKE_BIN@" | |||
config.ldc_host_arch = "@LDC_HOST_ARCH@" | |||
config.ldc_with_lld = "@LDC_WITH_LLD@" == "ON" | |||
config.spirv_enabled = @LLVM_SPIRV_FOUND@ +0 # LLVM_SPIRV_FOUND is blank if not set | |||
config.rt_supports_sanitizers = "@RT_SUPPORT_SANITIZERS@" == "ON" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure, but a cached RT_SUPPORT_SANITIZERS
CMake variable might be 1
instead of ON
. I think that's why I added
Lines 483 to 488 in 4b101ba
# translate 1/0 to ON/OFF | |
if(LDC_WITH_LLD) | |
set(LDC_WITH_LLD ON) | |
else() | |
set(LDC_WITH_LLD OFF) | |
endif() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Going to merge anyway in order to move forward.
No description provided.