aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2023-01-29 16:46:36 -0500
committerBoringssl LUCI CQ <boringssl-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-02-06 22:54:37 +0000
commit60d61196e43cfcea45936de667f98f5d6a6fa684 (patch)
tree7234dc09faec27d72c8ab62b1aeb2375cb98fef4 /CMakeLists.txt
parent61266e464b9b509a8a0943b9cc826c97c31e04e7 (diff)
downloadboringssl-60d61196e43cfcea45936de667f98f5d6a6fa684.zip
boringssl-60d61196e43cfcea45936de667f98f5d6a6fa684.tar.gz
boringssl-60d61196e43cfcea45936de667f98f5d6a6fa684.tar.bz2
Remove old clang-cl workaround
Looks like this has since been fixed (or isn't hitting GTest anymore for some reason). Bug: chromium:772117 Change-Id: I2c2fb694e4429281e20fd252ef9c2c34e29a425c Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/56570 Reviewed-by: Bob Beck <bbe@google.com> Commit-Queue: David Benjamin <davidben@google.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt3
1 files changed, 0 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1cb7226..a2d45ae 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -137,9 +137,6 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CLANG)
# as -Weverything, to match MSVC. Instead -W3 is the alias for -Wall.
# See http://llvm.org/viewvc/llvm-project?view=revision&revision=319116
set(C_CXX_FLAGS "${C_CXX_FLAGS} -W3 -Wno-unused-parameter -fmsc-version=1900")
- # googletest suppresses warning C4996 via a pragma, but clang-cl does not
- # honor it. Suppress it here to compensate. See https://crbug.com/772117.
- set(C_CXX_FLAGS "${C_CXX_FLAGS} -Wno-deprecated-declarations")
else()
if(EMSCRIPTEN)
# emscripten's emcc/clang does not accept the "-ggdb" flag.