diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-12 21:28:33 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-12 21:28:33 +0000 |
commit | db2ff4b4607eb2a54b30ea9c4b8248e7a1cebfe5 (patch) | |
tree | 1651bfa8011bd897c1e4efb4478905e200c21be4 | |
parent | 03afc190c4ff80a4d7165afb0c59bd38ebe68818 (diff) | |
download | chromium_src-db2ff4b4607eb2a54b30ea9c4b8248e7a1cebfe5.zip chromium_src-db2ff4b4607eb2a54b30ea9c4b8248e7a1cebfe5.tar.gz chromium_src-db2ff4b4607eb2a54b30ea9c4b8248e7a1cebfe5.tar.bz2 |
Currently it only installs the gold linker if it is not installed at all. Version 2.20 is needed to complete a Release build and if the contributor has version 2.19, the gold linker will not be updated.
The checkin gets the version number of ld. It checks if the version is gold and if it has the correct version number.
Review URL: http://codereview.chromium.org/547021
Patch from brianlum@chromium.org.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36042 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | build/install-build-deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh index 8f28a4b..7a64b35 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -239,7 +239,7 @@ fi # So just install from source if it isn't the default linker. case `ld --version` in -*gold*) ;; +*gold*2.2*) ;; * ) echo "Gold is a new linker that links Chrome 5x faster than ld." echo "Don't use it if you need to link other apps (e.g. valgrind, wine)" |