summaryrefslogtreecommitdiff
path: root/platform/server/detect.py
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2021-04-16 00:08:02 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2021-04-16 08:27:00 +0300
commita79cc0d7729e1c594a586d79abd06fa19677e733 (patch)
treea47a3b84096cca28e9f506ba3e2d4e1744c03ba0 /platform/server/detect.py
parent75875c068554e5747e671e3c49aefdfc895567b4 (diff)
Fix macOS build with all sanitizers enabled.
Diffstat (limited to 'platform/server/detect.py')
-rw-r--r--platform/server/detect.py2
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: