diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2021-06-21 11:36:56 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-06-21 17:14:37 +0000 |
commit | e78b2bf6eaa0c43bd76dbb841add167b443d2bb0 (patch) | |
tree | ed41a7c6322698bda2cef9338fb7638ad88aa84d /SConstruct | |
parent | 3bd15beed5027089646922447fb11cef5e1c02b5 (diff) | |
download | mongo-e78b2bf6eaa0c43bd76dbb841add167b443d2bb0.tar.gz |
SERVER-57688 Fix debug gcc 11 and clang 12 builds on Fedora 34
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
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') |