summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorhans <hans@chromium.org>2015-06-17 15:56:41 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-17 22:58:15 +0000
commit7ea79e1d2756702a88c75a589768ca335266015b (patch)
tree0baa40a274d71fd2ba39f12ba91885da507d5e11 /build
parent3812f0b74098c7648f0341a3bea645330c092516 (diff)
downloadchromium_src-7ea79e1d2756702a88c75a589768ca335266015b.zip
chromium_src-7ea79e1d2756702a88c75a589768ca335266015b.tar.gz
chromium_src-7ea79e1d2756702a88c75a589768ca335266015b.tar.bz2
Roll Clang 238013-3:239765-1
BUG=592898 Review URL: https://codereview.chromium.org/1190863002 Cr-Commit-Position: refs/heads/master@{#334949}
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi8
-rw-r--r--build/config/compiler/BUILD.gn7
2 files changed, 0 insertions, 15 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 43c3c74..04368e7 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -3825,14 +3825,6 @@
'cflags': ['-fno-unwind-tables', '-fno-asynchronous-unwind-tables'],
'defines': ['NO_UNWIND_TABLES'],
}],
- ['clang==1', {
- # Non-unique section names appears to make linker dead stripping
- # less effective. See http://crbug.com/483026#c20
- # TODO(hans): Remove this if resolved upstream.
- 'cflags': [
- '-funique-section-names',
- ],
- }],
],
},
},
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index 466b2b9..5f00020 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -408,13 +408,6 @@ config("compiler") {
} else {
cflags += [ "-funwind-tables" ]
}
-
- if (is_clang && !is_nacl && !is_debug) {
- # Non-unique section names appears to make linker dead stripping
- # less effective. See http://crbug.com/483026#c20
- # TODO(hans): Remove this if resolved upstream.
- cflags += [ "-funique-section-names" ]
- }
}
# Linux/Android common flags setup.