From db2ff4b4607eb2a54b30ea9c4b8248e7a1cebfe5 Mon Sep 17 00:00:00 2001 From: "ajwong@chromium.org" Date: Tue, 12 Jan 2010 21:28:33 +0000 Subject: 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 --- build/install-build-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build/install-build-deps.sh') 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)" -- cgit v1.1