diff options
author | markus@chromium.org <markus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 20:56:27 +0000 |
---|---|---|
committer | markus@chromium.org <markus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 20:56:27 +0000 |
commit | e76a3631b7ea17e6514f6d5a13ebafb423b6c199 (patch) | |
tree | 4b8be777014afe58498fdd69bbb1af60d7d096a1 | |
parent | 6b40bb5882a2542b41bc1ff088f93ba49bd41a9e (diff) | |
download | chromium_src-e76a3631b7ea17e6514f6d5a13ebafb423b6c199.zip chromium_src-e76a3631b7ea17e6514f6d5a13ebafb423b6c199.tar.gz chromium_src-e76a3631b7ea17e6514f6d5a13ebafb423b6c199.tar.bz2 |
Deprecate installing 32bit build dependencies on a 64bit
system. Instead, point the developer towards the install-chroot.sh
script, which is a cleaner way to achieve the same goal.
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/9706076
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126989 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | build/install-build-deps.sh | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh index 8003af3..1cdf46c 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -211,22 +211,14 @@ fi if [ "$(uname -m)" = "x86_64" ]; then if test "$do_inst_lib32" = "" then - echo "Installing 32bit libraries not already provided by the system" + echo "We no longer recommend that you use this script to install" + echo "32bit libraries on a 64bit system. Instead, consider using" + echo "the install-chroot.sh script to help you set up a 32bit" + echo "environment for building and testing 32bit versions of Chrome." echo - echo "This is only needed to build a 32-bit Chrome on your 64-bit system." - echo - echo "While we only need to install a relatively small number of library" - echo "files, we temporarily need to download a lot of large *.deb packages" - echo "that contain these files. We will create new *.deb packages that" - echo "include just the 32bit libraries. These files will then be found on" - echo "your system in places like /lib32, /usr/lib32, /usr/lib/debug/lib32," - echo "/usr/lib/debug/usr/lib32. If you ever need to uninstall these files," - echo "look for packages named *-ia32.deb." - echo "Do you want me to download all packages needed to build new 32bit" - echo -n "package files (y/N) " - if yes_no 1; then - do_inst_lib32=1 - fi + echo "If you nonetheless want to try installing 32bit libraries" + echo "directly, you can do so by explicitly passing the --lib32" + echo "option to install-build-deps.sh. fi if test "$do_inst_lib32" != "1" then @@ -234,6 +226,11 @@ if [ "$(uname -m)" = "x86_64" ]; then exit 0 fi + echo "N.B. the code for installing 32bit libraries on a 64bit" + echo " system is no longer actively maintained and might" + echo " not work with modern versions of Ubuntu or Debian." + echo + # Standard 32bit compatibility libraries echo "First, installing the limited existing 32-bit support..." cmp_list="ia32-libs lib32asound2-dev lib32stdc++6 lib32z1 |