Skip to content
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

Linux: Disable RTLD_DEEPBIND mode for dlopen() in sanitizer builds #84210

Merged
merged 1 commit into from
Oct 30, 2023

Conversation

dsnopek
Copy link
Contributor

@dsnopek dsnopek commented Oct 30, 2023

Fixes #83212

@akien-mga akien-mga merged commit 4c87145 into godotengine:master Oct 30, 2023
15 checks passed
@akien-mga
Copy link
Member

Thanks!

@Bromeon
Copy link
Contributor

Bromeon commented Nov 1, 2023

Just for reference, since I wondered about it -- SANITIZERS_ENABLED is defined here:

if env["use_ubsan"] or env["use_asan"] or env["use_lsan"] or env["use_tsan"] or env["use_msan"]:
env.extra_suffix += ".san"
env.Append(CCFLAGS=["-DSANITIZERS_ENABLED"])

if env["use_ubsan"] or env["use_asan"] or env["use_tsan"]:
env.extra_suffix += ".san"
env.Append(CCFLAGS=["-DSANITIZERS_ENABLED"])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

RTLD_DEEPBIND breaks sanitizer builds
3 participants