Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(492)

Side by Side Diff: build/config/compiler/BUILD.gn

Issue 1135023004: Roll Clang 233105-2:236765-2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn: pass -funique-section-names in release builds only Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/common.gypi ('k') | tools/clang/blink_gc_plugin/JsonWriter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 if (current_cpu == "arm") { 7 if (current_cpu == "arm") {
8 import("//build/config/arm.gni") 8 import("//build/config/arm.gni")
9 } 9 }
10 if (current_cpu == "mipsel" || current_cpu == "mips64el") { 10 if (current_cpu == "mipsel" || current_cpu == "mips64el") {
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 # for these builds. 333 # for these builds.
334 if (is_chrome_branded && is_official_build) { 334 if (is_chrome_branded && is_official_build) {
335 cflags += [ 335 cflags += [
336 "-fno-unwind-tables", 336 "-fno-unwind-tables",
337 "-fno-asynchronous-unwind-tables", 337 "-fno-asynchronous-unwind-tables",
338 ] 338 ]
339 defines += [ "NO_UNWIND_TABLES" ] 339 defines += [ "NO_UNWIND_TABLES" ]
340 } else { 340 } else {
341 cflags += [ "-funwind-tables" ] 341 cflags += [ "-funwind-tables" ]
342 } 342 }
343
344 if (is_clang && !is_nacl && !is_debug) {
345 # Non-unique section names appears to make linker dead stripping
346 # less effective. See http://crbug.com/483026#c20
347 # TODO(hans): Remove this if resolved upstream.
348 cflags += [ "-funique-section-names" ]
349 }
343 } 350 }
344 351
345 # Linux/Android common flags setup. 352 # Linux/Android common flags setup.
346 # --------------------------------- 353 # ---------------------------------
347 if (is_linux || is_android) { 354 if (is_linux || is_android) {
348 cflags += [ 355 cflags += [
349 "-fPIC", 356 "-fPIC",
350 "-pipe", # Use pipes for communicating between sub-processes. Faster. 357 "-pipe", # Use pipes for communicating between sub-processes. Faster.
351 ] 358 ]
352 359
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after
1100 cflags += [ "-gsplit-dwarf" ] 1107 cflags += [ "-gsplit-dwarf" ]
1101 } 1108 }
1102 } 1109 }
1103 } 1110 }
1104 1111
1105 config("no_symbols") { 1112 config("no_symbols") {
1106 if (!is_win) { 1113 if (!is_win) {
1107 cflags = [ "-g0" ] 1114 cflags = [ "-g0" ]
1108 } 1115 }
1109 } 1116 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | tools/clang/blink_gc_plugin/JsonWriter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698