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

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

Issue 2829433003: Enable frame pointers explicitly under ARM32. (Closed)
Patch Set: Restrict 711784 work-around to ChromeOS Created 3 years, 8 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 | « no previous file | build/config/compiler/compiler.gni » ('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 import("//build/config/chromecast_build.gni") 7 import("//build/config/chromecast_build.gni")
8 import("//build/config/compiler/compiler.gni") 8 import("//build/config/compiler/compiler.gni")
9 import("//build/config/nacl/config.gni") 9 import("//build/config/nacl/config.gni")
10 import("//build/toolchain/cc_wrapper.gni") 10 import("//build/toolchain/cc_wrapper.gni")
(...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after
1375 # Specifically tell the linker to perform optimizations. 1375 # Specifically tell the linker to perform optimizations.
1376 # See http://lwn.net/Articles/192624/ . 1376 # See http://lwn.net/Articles/192624/ .
1377 "-Wl,-O1", 1377 "-Wl,-O1",
1378 "-Wl,--gc-sections", 1378 "-Wl,--gc-sections",
1379 ] 1379 ]
1380 } 1380 }
1381 } 1381 }
1382 1382
1383 config("default_stack_frames") { 1383 config("default_stack_frames") {
1384 if (is_posix) { 1384 if (is_posix) {
1385 if (enabled_frame_pointers) { 1385 if (enable_frame_pointers) {
1386 cflags = [ "-fno-omit-frame-pointer" ] 1386 cflags = [ "-fno-omit-frame-pointer" ]
1387 } else { 1387 } else {
1388 if (is_android || current_cpu != "arm") { 1388 cflags = [ "-fomit-frame-pointer" ]
1389 # TODO(710131): Remove this special-casing for ARM 32 bit once we
1390 # have determined why -fomit-frame-pointer triggers CPU errata in
1391 # ARM A12/A17 devices.
1392 cflags = [ "-fomit-frame-pointer" ]
1393 }
1394 } 1389 }
1395 } 1390 }
1396 # On Windows, the flag to enable framepointers "/Oy-" must always come after 1391 # On Windows, the flag to enable framepointers "/Oy-" must always come after
1397 # the optimization flag [e.g. "/O2"]. The optimization flag is set by one of 1392 # the optimization flag [e.g. "/O2"]. The optimization flag is set by one of
1398 # the "optimize" configs, see rest of this file. The ordering that cflags are 1393 # the "optimize" configs, see rest of this file. The ordering that cflags are
1399 # applied is well-defined by the GN spec, and there is no way to ensure that 1394 # applied is well-defined by the GN spec, and there is no way to ensure that
1400 # cflags set by "default_stack_frames" is applied after those set by an 1395 # cflags set by "default_stack_frames" is applied after those set by an
1401 # "optimize" config. Similarly, there is no way to propagate state from this 1396 # "optimize" config. Similarly, there is no way to propagate state from this
1402 # config into the "optimize" config. We always apply the "/Oy-" config in the 1397 # config into the "optimize" config. We always apply the "/Oy-" config in the
1403 # definition for common_optimize_on_cflags definition, even though this may 1398 # definition for common_optimize_on_cflags definition, even though this may
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
1722 1717
1723 if (is_ios || is_mac) { 1718 if (is_ios || is_mac) {
1724 # On Mac and iOS, this enables support for ARC (automatic ref-counting). 1719 # On Mac and iOS, this enables support for ARC (automatic ref-counting).
1725 # See http://clang.llvm.org/docs/AutomaticReferenceCounting.html. 1720 # See http://clang.llvm.org/docs/AutomaticReferenceCounting.html.
1726 config("enable_arc") { 1721 config("enable_arc") {
1727 common_flags = [ "-fobjc-arc" ] 1722 common_flags = [ "-fobjc-arc" ]
1728 cflags_objc = common_flags 1723 cflags_objc = common_flags
1729 cflags_objcc = common_flags 1724 cflags_objcc = common_flags
1730 } 1725 }
1731 } 1726 }
OLDNEW
« no previous file with comments | « no previous file | build/config/compiler/compiler.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698