diff options
author | pcc <pcc@chromium.org> | 2015-05-28 12:14:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-05-28 19:15:03 +0000 |
commit | 39066aab4db67e9a4f81bf63e76d0dd6887a5b39 (patch) | |
tree | f846188ea68eeb7110852a9a4883a8b215775f7c | |
parent | 5480d28d7731e47acdea1667e26756025f903d44 (diff) | |
download | chromium_src-39066aab4db67e9a4f81bf63e76d0dd6887a5b39.zip chromium_src-39066aab4db67e9a4f81bf63e76d0dd6887a5b39.tar.gz chromium_src-39066aab4db67e9a4f81bf63e76d0dd6887a5b39.tar.bz2 |
Remove subtarget configuration flags.
Our version of Clang now supports subtarget-specific code generation during
LTO, so remove these flags, as they are no longer needed.
BUG=453195
R=thakis@chromium.org
Review URL: https://codereview.chromium.org/1148153004
Cr-Commit-Position: refs/heads/master@{#331834}
-rw-r--r-- | build/common.gypi | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/build/common.gypi b/build/common.gypi index ee4cd9e..5074b62 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -6034,27 +6034,6 @@ ], }, }], - ['use_lto==1 and clang==1 and (target_arch=="ia32" or target_arch=="x64")', { - 'target_defaults': { - 'target_conditions': [ - # Required for third_party/zlib/crc_folding.c and various other code - # that uses SSE. TODO(pcc): Remove this once we properly support - # subtarget specific code generation in LLVM. - ['_toolset=="target"', { - 'ldflags': [ - '-Wl,-plugin-opt,mcpu=corei7-avx', - ], - }], - ['_toolset=="target" and _type!="static_library"', { - 'xcode_settings': { - 'OTHER_LDFLAGS': [ - '-Wl,-mcpu,corei7-avx', - ], - }, - }], - ], - }, - }], ['use_lto==1 and clang==1 and target_arch=="arm"', { 'target_defaults': { 'target_conditions': [ |