mirror of
https://abf.rosa.ru/djam/chromium-browser-stable-slava86.git
synced 2025-02-24 16:02:56 +00:00
75 lines
2.7 KiB
Diff
75 lines
2.7 KiB
Diff
From 777d166eec22c1894108dce985498f75ac5931e8 Mon Sep 17 00:00:00 2001
|
|
From: Mike Gilbert <floppym@gentoo.org>
|
|
Date: Wed, 25 Apr 2018 13:22:49 -0400
|
|
Subject: [PATCH] Disable various compiler configs
|
|
|
|
---
|
|
build/config/compiler/BUILD.gn | 61 ++++++++++------------------------
|
|
1 file changed, 18 insertions(+), 43 deletions(-)
|
|
|
|
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
|
|
index 6e38ad782d38..87bbd423f67f 100644
|
|
--- a/build/config/compiler/BUILD.gn
|
|
+++ b/build/config/compiler/BUILD.gn
|
|
@@ -225,8 +225,6 @@ config("compiler") {
|
|
|
|
configs += [
|
|
# See the definitions below.
|
|
- ":clang_revision",
|
|
- ":compiler_cpu_abi",
|
|
":compiler_codegen",
|
|
]
|
|
|
|
@@ -488,18 +486,6 @@ config("compiler") {
|
|
}
|
|
}
|
|
|
|
- if (is_clang && !is_nacl && current_toolchain == host_toolchain &&
|
|
- target_os != "chromeos") {
|
|
- cflags += [
|
|
- # TODO(hans): Remove this once Clang generates better optimized debug info
|
|
- # by default. https://crbug.com/765793
|
|
- "-Xclang",
|
|
- "-mllvm",
|
|
- "-Xclang",
|
|
- "-instcombine-lower-dbg-declare=0",
|
|
- ]
|
|
- }
|
|
-
|
|
# Print absolute paths in diagnostics. There is no precedent for doing this
|
|
# on Linux/Mac (GCC doesn't support it), but MSVC does this with /FC and
|
|
# Windows developers rely on it (crbug.com/636109) so only do this on Windows.
|
|
@@ -1473,10 +1459,6 @@ config("default_warnings") {
|
|
cflags += [
|
|
# TODO(thakis): https://crbug.com/753973
|
|
"-Wno-enum-compare-switch",
|
|
-
|
|
- # Ignore warnings about MSVC optimization pragmas.
|
|
- # TODO(thakis): Only for no_chromium_code? http://crbug.com/505314
|
|
- "-Wno-ignored-pragma-optimize",
|
|
]
|
|
}
|
|
}
|
|
@@ -1518,22 +1500,6 @@ config("chromium_code") {
|
|
"__STDC_FORMAT_MACROS",
|
|
]
|
|
|
|
- if (!is_debug && !using_sanitizer &&
|
|
- (!is_linux || !is_clang || is_official_build) &&
|
|
- current_cpu != "s390x" && current_cpu != "s390" &&
|
|
- current_cpu != "ppc64" && current_cpu != "ppc64" &&
|
|
- current_cpu != "mips" && current_cpu != "mips64") {
|
|
- # _FORTIFY_SOURCE isn't really supported by Clang now, see
|
|
- # http://llvm.org/bugs/show_bug.cgi?id=16821.
|
|
- # It seems to work fine with Ubuntu 12 headers though, so use it in
|
|
- # official builds.
|
|
- #
|
|
- # Non-chromium code is not guaranteed to compile cleanly with
|
|
- # _FORTIFY_SOURCE. Also, fortified build may fail when optimizations are
|
|
- # disabled, so only do that for Release build.
|
|
- defines += [ "_FORTIFY_SOURCE=2" ]
|
|
- }
|
|
-
|
|
if (is_mac || is_ios) {
|
|
cflags_objc = [ "-Wobjc-missing-property-synthesis" ]
|
|
cflags_objcc = [ "-Wobjc-missing-property-synthesis" ]
|