1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix macOS build with all sanitizers enabled.

This commit is contained in:
bruvzg
2021-04-16 00:08:02 +03:00
parent 75875c0685
commit a79cc0d772
3 changed files with 4 additions and 16 deletions

View File

@@ -156,7 +156,7 @@ def configure(env):
if env["use_llvm"]:
env.Append(
CCFLAGS=[
"-fsanitize=nullability-return,nullability-arg,function,nullability-assign,implicit-integer-sign-change,implicit-signed-integer-truncation,implicit-unsigned-integer-truncation"
"-fsanitize=nullability-return,nullability-arg,function,nullability-assign,implicit-integer-sign-change"
]
)
else: