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
No known key found for this signature in database
GPG key ID: 009E1BFE42239B95
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: