diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-04-16 00:08:02 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2021-04-16 08:27:00 +0300 |
commit | a79cc0d7729e1c594a586d79abd06fa19677e733 (patch) | |
tree | a47a3b84096cca28e9f506ba3e2d4e1744c03ba0 /platform/server/detect.py | |
parent | 75875c068554e5747e671e3c49aefdfc895567b4 (diff) |
Fix macOS build with all sanitizers enabled.
Diffstat (limited to 'platform/server/detect.py')
-rw-r--r-- | platform/server/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/server/detect.py b/platform/server/detect.py index 4a4109db4a..478bcad212 100644 --- a/platform/server/detect.py +++ b/platform/server/detect.py @@ -113,7 +113,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: |