|
|
Created:
6 years, 9 months ago by mithro-old Modified:
6 years, 9 months ago CC:
chromium-reviews Base URL:
https://chromium.googlesource.com/chromium/src.git@master Visibility:
Public. |
DescriptionMoving binutils version extraction so it works with clang.
BUG=352046
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=257943
Patch Set 1 : #
Total comments: 2
Patch Set 2 : Rebase onto master. #Patch Set 3 : Fixing the binutil version for the android x64 toolchain. #Messages
Total messages: 19 (0 generated)
Hi guys, Another Debug Fission related patch. I was sure this worked previously, but it appears not. Tim
lgtm Sorry, should've caught this :-/ https://codereview.chromium.org/199333007/diff/20001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/199333007/diff/20001/build/common.gypi#newcod... build/common.gypi:3104: ['linux_use_gold_flags==1 and (clang==1 or gcc_version>=47) and binutils_version>=223', { This still says 47 – probably just some old base version of this file?
https://codereview.chromium.org/199333007/diff/20001/build/common.gypi File build/common.gypi (right): https://codereview.chromium.org/199333007/diff/20001/build/common.gypi#newcod... build/common.gypi:3104: ['linux_use_gold_flags==1 and (clang==1 or gcc_version>=47) and binutils_version>=223', { On 2014/03/18 16:00:21, Nico (on GMT time Mar 15 - 24) wrote: > This still says 47 – probably just some old base version of this file? Yeah, just an old base version. Got too many of these changes outstanding at the moment.
The CQ bit was checked by mithro@mithis.com
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mithro@mithis.com/199333007/20001
The CQ bit was unchecked by commit-bot@chromium.org
Retried try job too often on mac_rel for step(s) telemetry_perf_unittests, telemetry_unittests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&nu...
The CQ bit was checked by thestig@chromium.org
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mithro@mithis.com/199333007/20001
The CQ bit was unchecked by commit-bot@chromium.org
Failed to apply patch for build/common.gypi: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file build/common.gypi Hunk #1 FAILED at 1308. Hunk #2 succeeded at 1361 (offset 6 lines). 1 out of 2 hunks FAILED -- saving rejects to file build/common.gypi.rej Patch: build/common.gypi Index: build/common.gypi diff --git a/build/common.gypi b/build/common.gypi index 1dc3dcd6d8bc7594c0e782b0dea0abc119a894d5..c5e84b2ea5a8c1bbf624f64eff7b94bac0051fb9 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1308,15 +1308,12 @@ ['OS=="android"', { # We directly set the gcc_version since we know what we use. 'gcc_version%': 46, - 'binutils_version%': 222, }, { 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', - 'binutils_version%': '<!(python <(DEPTH)/build/compiler_version.py assembler)', }], ], }, { 'gcc_version%': 0, - 'binutils_version%': 0, }], ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_default_path))"=="True"', { 'windows_sdk_path%': '<(windows_sdk_default_path)', @@ -1355,7 +1352,14 @@ # can use breakpad for these builds. 'release_unwind_tables%': 0, }], + ['OS=="android"', { + 'binutils_version%': 222, + }, { + 'binutils_version%': '<!(python <(DEPTH)/build/compiler_version.py assembler)', + }], ], + }, { + 'binutils_version%': 0, }], # os_posix==1 and OS!="mac" and OS!="ios" ['OS=="ios"', { 'disable_nacl%': 1,
The CQ bit was checked by mithro@mithis.com
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mithro@mithis.com/199333007/60001
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: tryserver.chromium on linux_chromium_clang_dbg
The CQ bit was checked by mithro@mithis.com
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mithro@mithis.com/199333007/60001
Message was sent while issue was closed.
Change committed as 257943
Message was sent while issue was closed.
A revert of this CL has been created in https://codereview.chromium.org/203603009/ by pneubeck@chromium.org. The reason for reverting is: Seems to break runhooks on several bots, like: http://build.chromium.org/p/chromium.memory/builders/Linux%20ASan%2BLSan%20Bu... Error: Command /usr/bin/python src/build/gyp_chromium returned non-zero exit status 1 in /b/build/slave/Linux_ASan_LSan_Builder/build Updating projects from gyp files... /bin/sh: 1: clang++: not found compiler_version.py failed to execute: clang++ -Xassembler --version -x assembler -c /dev/null Command 'clang++ -Xassembler --version -x assembler -c /dev/null' returned non-zero exit status 127 gyp: Call to 'python ../build/compiler_version.py assembler' returned exit status 1.. |