summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 3 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index e6ca1f3e766..fd7c1eff08b 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3667,6 +3667,9 @@ def doConfigure(myenv):
# Don't issue warnings about potentially evaluated expressions
myenv.AddToCCFLAGSIfSupported("-Wno-potentially-evaluated-expression")
+ # SERVER-76472 we don't try to maintain ABI so disable warnings about possible ABI issues.
+ myenv.AddToCCFLAGSIfSupported("-Wno-psabi")
+
# Warn about moves of prvalues, which can inhibit copy elision.
myenv.AddToCXXFLAGSIfSupported("-Wpessimizing-move")