Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Unified Diff: build/install-build-deps.sh

Issue 9706076: Deprecate installing 32bit build dependencies on a 64bit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/install-build-deps.sh
===================================================================
--- build/install-build-deps.sh (revision 126957)
+++ build/install-build-deps.sh (working copy)
@@ -211,22 +211,14 @@
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 @@
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698