summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2021-06-21 11:36:56 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-06-21 17:14:37 +0000
commite78b2bf6eaa0c43bd76dbb841add167b443d2bb0 (patch)
treeed41a7c6322698bda2cef9338fb7638ad88aa84d /SConstruct
parent3bd15beed5027089646922447fb11cef5e1c02b5 (diff)
downloadmongo-e78b2bf6eaa0c43bd76dbb841add167b443d2bb0.tar.gz
SERVER-57688 Fix debug gcc 11 and clang 12 builds on Fedora 34
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 0 insertions, 4 deletions
diff --git a/SConstruct b/SConstruct
index 25fd4a248d0..23cff6f9da5 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3108,10 +3108,6 @@ def doConfigure(myenv):
# harmful to capture unused variables we are suppressing for now with a plan to fix later.
AddToCCFLAGSIfSupported(myenv, "-Wno-unused-lambda-capture")
- # This warning was added in clang-5 and incorrectly flags our implementation of
- # exceptionToStatus(). See https://bugs.llvm.org/show_bug.cgi?id=34804
- AddToCCFLAGSIfSupported(myenv, "-Wno-exceptions")
-
# Enable sized deallocation support.
AddToCXXFLAGSIfSupported(myenv, '-fsized-deallocation')