[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 1 | #!/bin/bash -e |
| 2 | |
[email protected] | aac39c9 | 2012-02-08 18:39:53 | [diff] [blame] | 3 | # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | e46cdae | 2009-08-25 20:59:27 | [diff] [blame] | 4 | # Use of this source code is governed by a BSD-style license that can be |
| 5 | # found in the LICENSE file. |
| 6 | |
[email protected] | cf1df40 | 2008-10-31 21:45:30 | [diff] [blame] | 7 | # Script to install everything needed to build chromium (well, ideally, anyway) |
[email protected] | 592ea8ca | 2008-11-03 19:47:36 | [diff] [blame] | 8 | # See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions |
| 9 | # and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit |
[email protected] | cf1df40 | 2008-10-31 21:45:30 | [diff] [blame] | 10 | |
[email protected] | 1eae2bfb | 2010-01-26 18:17:53 | [diff] [blame] | 11 | usage() { |
| 12 | echo "Usage: $0 [--options]" |
| 13 | echo "Options:" |
| 14 | echo "--[no-]syms: enable or disable installation of debugging symbols" |
johnme | 49bb458a | 2014-11-27 15:45:31 | [diff] [blame^] | 15 | echo "--lib32: enable installation of 32-bit libraries, e.g. for V8 snapshot" |
[email protected] | f2826b6a | 2012-11-15 01:06:26 | [diff] [blame] | 16 | echo "--[no-]arm: enable or disable installation of arm cross toolchain" |
[email protected] | bd29cdd | 2013-02-22 03:49:20 | [diff] [blame] | 17 | echo "--[no-]chromeos-fonts: enable or disable installation of Chrome OS"\ |
| 18 | "fonts" |
[email protected] | 56541636 | 2014-01-16 21:26:47 | [diff] [blame] | 19 | echo "--[no-]nacl: enable or disable installation of prerequisites for"\ |
| 20 | "building standalone NaCl and all its toolchains" |
[email protected] | e2544ed4 | 2012-04-23 04:48:31 | [diff] [blame] | 21 | echo "--no-prompt: silently select standard options/defaults" |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 22 | echo "--quick-check: quickly try to determine if dependencies are installed" |
| 23 | echo " (this avoids interactive prompts and sudo commands," |
| 24 | echo " so might not be 100% accurate)" |
| 25 | echo "--unsupported: attempt installation even on unsupported systems" |
[email protected] | 1eae2bfb | 2010-01-26 18:17:53 | [diff] [blame] | 26 | echo "Script will prompt interactively if options not given." |
| 27 | exit 1 |
| 28 | } |
| 29 | |
[email protected] | 4fc0071 | 2013-05-29 23:11:20 | [diff] [blame] | 30 | # Checks whether a particular package is available in the repos. |
| 31 | # USAGE: $ package_exists <package name> |
| 32 | package_exists() { |
| 33 | apt-cache pkgnames | grep -x "$1" > /dev/null 2>&1 |
| 34 | } |
| 35 | |
[email protected] | fbeddf2 | 2014-01-17 23:59:01 | [diff] [blame] | 36 | # These default to on because (some) bots need them and it keeps things |
| 37 | # simple for the bot setup if all bots just run the script in its default |
| 38 | # mode. Developers who don't want stuff they don't need installed on their |
| 39 | # own workstations can pass --no-arm --no-nacl when running the script. |
| 40 | do_inst_arm=1 |
| 41 | do_inst_nacl=1 |
| 42 | |
[email protected] | 1eae2bfb | 2010-01-26 18:17:53 | [diff] [blame] | 43 | while test "$1" != "" |
| 44 | do |
| 45 | case "$1" in |
[email protected] | ce77464 | 2011-09-12 23:21:39 | [diff] [blame] | 46 | --syms) do_inst_syms=1;; |
| 47 | --no-syms) do_inst_syms=0;; |
[email protected] | ce77464 | 2011-09-12 23:21:39 | [diff] [blame] | 48 | --lib32) do_inst_lib32=1;; |
[email protected] | f2826b6a | 2012-11-15 01:06:26 | [diff] [blame] | 49 | --arm) do_inst_arm=1;; |
| 50 | --no-arm) do_inst_arm=0;; |
[email protected] | bd29cdd | 2013-02-22 03:49:20 | [diff] [blame] | 51 | --chromeos-fonts) do_inst_chromeos_fonts=1;; |
| 52 | --no-chromeos-fonts) do_inst_chromeos_fonts=0;; |
[email protected] | 56541636 | 2014-01-16 21:26:47 | [diff] [blame] | 53 | --nacl) do_inst_nacl=1;; |
| 54 | --no-nacl) do_inst_nacl=0;; |
[email protected] | e2544ed4 | 2012-04-23 04:48:31 | [diff] [blame] | 55 | --no-prompt) do_default=1 |
| 56 | do_quietly="-qq --assume-yes" |
| 57 | ;; |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 58 | --quick-check) do_quick_check=1;; |
[email protected] | fe63a02 | 2013-01-15 22:11:47 | [diff] [blame] | 59 | --unsupported) do_unsupported=1;; |
[email protected] | 1eae2bfb | 2010-01-26 18:17:53 | [diff] [blame] | 60 | *) usage;; |
| 61 | esac |
| 62 | shift |
| 63 | done |
| 64 | |
johnme | 49bb458a | 2014-11-27 15:45:31 | [diff] [blame^] | 65 | if test "$do_inst_arm" = "1"; then |
| 66 | do_inst_lib32=1 |
| 67 | fi |
| 68 | |
[email protected] | 0febc9b | 2014-05-22 20:07:19 | [diff] [blame] | 69 | # Check for lsb_release command in $PATH |
| 70 | if ! which lsb_release > /dev/null; then |
| 71 | echo "ERROR: lsb_release not found in \$PATH" >&2 |
| 72 | exit 1; |
| 73 | fi |
[email protected] | f2826b6a | 2012-11-15 01:06:26 | [diff] [blame] | 74 | |
[email protected] | 0febc9b | 2014-05-22 20:07:19 | [diff] [blame] | 75 | lsb_release=$(lsb_release --codename --short) |
| 76 | ubuntu_codenames="(precise|quantal|raring|saucy|trusty)" |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 77 | if [ 0 -eq "${do_unsupported-0}" ] && [ 0 -eq "${do_quick_check-0}" ] ; then |
[email protected] | 0febc9b | 2014-05-22 20:07:19 | [diff] [blame] | 78 | if [[ ! $lsb_release =~ $ubuntu_codenames ]]; then |
[email protected] | a2984e2 | 2014-05-22 00:48:12 | [diff] [blame] | 79 | echo "ERROR: Only Ubuntu 12.04 (precise) through 14.04 (trusty) are"\ |
[email protected] | fe63a02 | 2013-01-15 22:11:47 | [diff] [blame] | 80 | "currently supported" >&2 |
| 81 | exit 1 |
| 82 | fi |
[email protected] | cf1df40 | 2008-10-31 21:45:30 | [diff] [blame] | 83 | |
[email protected] | fe63a02 | 2013-01-15 22:11:47 | [diff] [blame] | 84 | if ! uname -m | egrep -q "i686|x86_64"; then |
| 85 | echo "Only x86 architectures are currently supported" >&2 |
| 86 | exit |
| 87 | fi |
[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 88 | fi |
| 89 | |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 90 | if [ "x$(id -u)" != x0 ] && [ 0 -eq "${do_quick_check-0}" ]; then |
[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 91 | echo "Running as non-root user." |
| 92 | echo "You might have to enter your password one or more times for 'sudo'." |
[email protected] | 8ada8c5 | 2009-03-10 21:53:08 | [diff] [blame] | 93 | echo |
[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 94 | fi |
| 95 | |
[email protected] | fdc6bf5 | 2010-06-07 22:01:57 | [diff] [blame] | 96 | # Packages needed for chromeos only |
[email protected] | 2299720 | 2014-08-20 01:57:42 | [diff] [blame] | 97 | chromeos_dev_list="libbluetooth-dev libxkbcommon-dev" |
[email protected] | fdc6bf5 | 2010-06-07 22:01:57 | [diff] [blame] | 98 | |
[email protected] | b61f688 | 2013-11-14 20:41:41 | [diff] [blame] | 99 | # Packages needed for development |
Henrik Kjellander | 011f9c8 | 2014-09-19 07:28:34 | [diff] [blame] | 100 | dev_list="apache2.2-bin bison cdbs curl dpkg-dev elfutils devscripts fakeroot |
| 101 | flex fonts-thai-tlwg g++ git-core git-svn gperf language-pack-da |
[email protected] | 48d96e9 | 2014-08-19 18:31:00 | [diff] [blame] | 102 | language-pack-fr language-pack-he language-pack-zh-hant |
| 103 | libapache2-mod-php5 libasound2-dev libbrlapi-dev libav-tools |
| 104 | libbz2-dev libcairo2-dev libcap-dev libcups2-dev libcurl4-gnutls-dev |
| 105 | libdrm-dev libelf-dev libexif-dev libgconf2-dev libgl1-mesa-dev |
| 106 | libglib2.0-dev libglu1-mesa-dev libgnome-keyring-dev libgtk2.0-dev |
| 107 | libkrb5-dev libnspr4-dev libnss3-dev libpam0g-dev libpci-dev |
| 108 | libpulse-dev libsctp-dev libspeechd-dev libsqlite3-dev libssl-dev |
| 109 | libudev-dev libwww-perl libxslt1-dev libxss-dev libxt-dev libxtst-dev |
[email protected] | 36659e0 | 2014-06-27 02:27:14 | [diff] [blame] | 110 | mesa-common-dev openbox patch perl php5-cgi pkg-config python |
mthiesse | f041a51 | 2014-11-21 14:28:50 | [diff] [blame] | 111 | python-cherrypy3 python-crypto python-dev python-numpy python-opencv |
| 112 | python-openssl python-psutil rpm ruby subversion ttf-dejavu-core |
| 113 | ttf-indic-fonts ttf-kochi-gothic ttf-kochi-mincho wdiff xfonts-mathml |
| 114 | zip $chromeos_dev_list" |
[email protected] | fdc6bf5 | 2010-06-07 22:01:57 | [diff] [blame] | 115 | |
[email protected] | f16aabf | 2012-08-15 21:00:14 | [diff] [blame] | 116 | # 64-bit systems need a minimum set of 32-bit compat packages for the pre-built |
[email protected] | f8ceadb | 2014-08-18 12:30:23 | [diff] [blame] | 117 | # NaCl binaries. |
[email protected] | 9161abe | 2013-10-31 15:15:49 | [diff] [blame] | 118 | if file /sbin/init | grep -q 'ELF 64-bit'; then |
[email protected] | d93d68b1 | 2012-10-15 06:39:53 | [diff] [blame] | 119 | dev_list="${dev_list} libc6-i386 lib32gcc1 lib32stdc++6" |
[email protected] | f16aabf | 2012-08-15 21:00:14 | [diff] [blame] | 120 | fi |
| 121 | |
[email protected] | fdc6bf5 | 2010-06-07 22:01:57 | [diff] [blame] | 122 | # Run-time libraries required by chromeos only |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 123 | chromeos_lib_list="libpulse0 libbz2-1.0" |
[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 124 | |
| 125 | # Full list of required run-time libraries |
[email protected] | d8f5232 | 2013-10-29 05:50:38 | [diff] [blame] | 126 | lib_list="libatk1.0-0 libc6 libasound2 libcairo2 libcap2 libcups2 libexpat1 |
[email protected] | e879601 | 2014-03-14 05:56:17 | [diff] [blame] | 127 | libexif12 libfontconfig1 libfreetype6 libglib2.0-0 libgnome-keyring0 |
[email protected] | ca3a1d26 | 2012-10-30 22:33:20 | [diff] [blame] | 128 | libgtk2.0-0 libpam0g libpango1.0-0 libpci3 libpcre3 libpixman-1-0 |
[email protected] | 9e89596 | 2013-05-21 08:26:42 | [diff] [blame] | 129 | libpng12-0 libspeechd2 libstdc++6 libsqlite3-0 libx11-6 |
[email protected] | 8190b88 | 2012-12-05 19:40:34 | [diff] [blame] | 130 | libxau6 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6 |
| 131 | libxext6 libxfixes3 libxi6 libxinerama1 libxrandr2 libxrender1 |
| 132 | libxtst6 zlib1g $chromeos_lib_list" |
[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 133 | |
| 134 | # Debugging symbols for all of the run-time libraries |
[email protected] | 6ffd19f35 | 2012-10-23 02:00:41 | [diff] [blame] | 135 | dbg_list="libatk1.0-dbg libc6-dbg libcairo2-dbg libfontconfig1-dbg |
| 136 | libglib2.0-0-dbg libgtk2.0-0-dbg libpango1.0-0-dbg libpcre3-dbg |
| 137 | libpixman-1-0-dbg libsqlite3-0-dbg libx11-6-dbg libxau6-dbg |
| 138 | libxcb1-dbg libxcomposite1-dbg libxcursor1-dbg libxdamage1-dbg |
| 139 | libxdmcp6-dbg libxext6-dbg libxfixes3-dbg libxi6-dbg libxinerama1-dbg |
[email protected] | 36219623 | 2013-11-10 00:43:40 | [diff] [blame] | 140 | libxrandr2-dbg libxrender1-dbg libxtst6-dbg zlib1g-dbg |
| 141 | libstdc++6-4.6-dbg" |
[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 142 | |
johnme | 49bb458a | 2014-11-27 15:45:31 | [diff] [blame^] | 143 | # 32-bit libraries needed e.g. to compile V8 snapshot for Android or armhf |
| 144 | lib32_list="linux-libc-dev:i386" |
| 145 | |
[email protected] | 3f85dac3 | 2013-10-29 02:38:46 | [diff] [blame] | 146 | # arm cross toolchain packages needed to build chrome on armhf |
[email protected] | a2984e2 | 2014-05-22 00:48:12 | [diff] [blame] | 147 | arm_list="libc6-dev-armhf-cross |
| 148 | linux-libc-dev-armhf-cross |
johnme | 49bb458a | 2014-11-27 15:45:31 | [diff] [blame^] | 149 | g++-arm-linux-gnueabihf" |
[email protected] | 31a60553 | 2011-08-23 22:27:35 | [diff] [blame] | 150 | |
[email protected] | 713eac6 | 2014-06-02 23:10:03 | [diff] [blame] | 151 | # Packages to build NaCl, its toolchains, and its ports. |
Brad Nelson | 5e59c2c | 2014-09-06 06:18:45 | [diff] [blame] | 152 | naclports_list="ant autoconf bison cmake gawk intltool xutils-dev xsltproc" |
| 153 | nacl_list="g++-mingw-w64-i686 lib32z1-dev |
[email protected] | 5203a35 | 2014-06-19 16:17:50 | [diff] [blame] | 154 | libasound2:i386 libcap2:i386 libelf-dev:i386 libexif12:i386 |
[email protected] | 419a9a6 | 2014-06-19 18:26:18 | [diff] [blame] | 155 | libfontconfig1:i386 libgconf-2-4:i386 libglib2.0-0:i386 libgpm2:i386 |
[email protected] | a14d76e | 2014-07-23 02:25:08 | [diff] [blame] | 156 | libgtk2.0-0:i386 libncurses5:i386 lib32ncurses5-dev |
Brad Nelson | 5e59c2c | 2014-09-06 06:18:45 | [diff] [blame] | 157 | libnss3:i386 libpango1.0-0:i386 |
[email protected] | 419a9a6 | 2014-06-19 18:26:18 | [diff] [blame] | 158 | libssl0.9.8:i386 libtinfo-dev libtinfo-dev:i386 libtool |
| 159 | libxcomposite1:i386 libxcursor1:i386 libxdamage1:i386 libxi6:i386 |
Brad Nelson | 5e59c2c | 2014-09-06 06:18:45 | [diff] [blame] | 160 | libxrandr2:i386 libxss1:i386 libxtst6:i386 texinfo xvfb |
| 161 | ${naclports_list}" |
[email protected] | 419a9a6 | 2014-06-19 18:26:18 | [diff] [blame] | 162 | |
| 163 | # Find the proper version of libgbm-dev. We can't just install libgbm-dev as |
| 164 | # it depends on mesa, and only one version of mesa can exists on the system. |
| 165 | # Hence we must match the same version or this entire script will fail. |
| 166 | mesa_variant="" |
svenpanne | bd55b92 | 2014-08-28 07:45:15 | [diff] [blame] | 167 | for variant in "-lts-quantal" "-lts-raring" "-lts-saucy" "-lts-trusty"; do |
primiano | b83ed9b | 2014-11-03 19:02:46 | [diff] [blame] | 168 | if $(dpkg-query -Wf'${Status}' libgl1-mesa-glx${variant} 2>/dev/null | \ |
[email protected] | 419a9a6 | 2014-06-19 18:26:18 | [diff] [blame] | 169 | grep -q " ok installed"); then |
| 170 | mesa_variant="${variant}" |
| 171 | fi |
| 172 | done |
[email protected] | 3a4bd5d | 2014-06-25 23:55:04 | [diff] [blame] | 173 | dev_list="${dev_list} libgbm-dev${mesa_variant} |
| 174 | libgles2-mesa-dev${mesa_variant}" |
[email protected] | 419a9a6 | 2014-06-19 18:26:18 | [diff] [blame] | 175 | nacl_list="${nacl_list} libgl1-mesa-glx${mesa_variant}:i386" |
[email protected] | 56541636 | 2014-01-16 21:26:47 | [diff] [blame] | 176 | |
[email protected] | 757c296 | 2012-03-15 19:05:18 | [diff] [blame] | 177 | # Some package names have changed over time |
[email protected] | 4fc0071 | 2013-05-29 23:11:20 | [diff] [blame] | 178 | if package_exists ttf-mscorefonts-installer; then |
[email protected] | 757c296 | 2012-03-15 19:05:18 | [diff] [blame] | 179 | dev_list="${dev_list} ttf-mscorefonts-installer" |
[email protected] | b11411c | 2012-03-21 22:09:41 | [diff] [blame] | 180 | else |
| 181 | dev_list="${dev_list} msttcorefonts" |
[email protected] | 757c296 | 2012-03-15 19:05:18 | [diff] [blame] | 182 | fi |
[email protected] | 4fc0071 | 2013-05-29 23:11:20 | [diff] [blame] | 183 | if package_exists libnspr4-dbg; then |
[email protected] | 1a0f64a | 2011-05-20 17:53:55 | [diff] [blame] | 184 | dbg_list="${dbg_list} libnspr4-dbg libnss3-dbg" |
| 185 | lib_list="${lib_list} libnspr4 libnss3" |
[email protected] | 757c296 | 2012-03-15 19:05:18 | [diff] [blame] | 186 | else |
| 187 | dbg_list="${dbg_list} libnspr4-0d-dbg libnss3-1d-dbg" |
| 188 | lib_list="${lib_list} libnspr4-0d libnss3-1d" |
| 189 | fi |
[email protected] | 4fc0071 | 2013-05-29 23:11:20 | [diff] [blame] | 190 | if package_exists libjpeg-dev; then |
[email protected] | 9e89596 | 2013-05-21 08:26:42 | [diff] [blame] | 191 | dev_list="${dev_list} libjpeg-dev" |
[email protected] | b11411c | 2012-03-21 22:09:41 | [diff] [blame] | 192 | else |
[email protected] | 9e89596 | 2013-05-21 08:26:42 | [diff] [blame] | 193 | dev_list="${dev_list} libjpeg62-dev" |
[email protected] | b11411c | 2012-03-21 22:09:41 | [diff] [blame] | 194 | fi |
[email protected] | 4fc0071 | 2013-05-29 23:11:20 | [diff] [blame] | 195 | if package_exists libudev1; then |
[email protected] | 9e89596 | 2013-05-21 08:26:42 | [diff] [blame] | 196 | dev_list="${dev_list} libudev1" |
[email protected] | ab9e6908 | 2014-06-05 15:28:52 | [diff] [blame] | 197 | nacl_list="${nacl_list} libudev1:i386" |
[email protected] | 9e89596 | 2013-05-21 08:26:42 | [diff] [blame] | 198 | else |
| 199 | dev_list="${dev_list} libudev0" |
[email protected] | ab9e6908 | 2014-06-05 15:28:52 | [diff] [blame] | 200 | nacl_list="${nacl_list} libudev0:i386" |
[email protected] | 9e89596 | 2013-05-21 08:26:42 | [diff] [blame] | 201 | fi |
[email protected] | 3ea4291 | 2013-09-06 06:23:57 | [diff] [blame] | 202 | if package_exists libbrlapi0.6; then |
| 203 | dev_list="${dev_list} libbrlapi0.6" |
| 204 | else |
| 205 | dev_list="${dev_list} libbrlapi0.5" |
| 206 | fi |
[email protected] | 9e89596 | 2013-05-21 08:26:42 | [diff] [blame] | 207 | |
[email protected] | 757c296 | 2012-03-15 19:05:18 | [diff] [blame] | 208 | |
[email protected] | dc09977 | 2013-09-30 22:06:58 | [diff] [blame] | 209 | # Some packages are only needed if the distribution actually supports |
[email protected] | 757c296 | 2012-03-15 19:05:18 | [diff] [blame] | 210 | # installing them. |
[email protected] | 4fc0071 | 2013-05-29 23:11:20 | [diff] [blame] | 211 | if package_exists appmenu-gtk; then |
[email protected] | 757c296 | 2012-03-15 19:05:18 | [diff] [blame] | 212 | lib_list="$lib_list appmenu-gtk" |
[email protected] | 4da8fad | 2011-04-11 18:42:42 | [diff] [blame] | 213 | fi |
| 214 | |
johnme | 49bb458a | 2014-11-27 15:45:31 | [diff] [blame^] | 215 | # When cross building for arm/Android on 64-bit systems the host binaries |
| 216 | # that are part of v8 need to be compiled with -m32 which means |
| 217 | # that basic multilib support is needed. |
| 218 | if file /sbin/init | grep -q 'ELF 64-bit'; then |
| 219 | # gcc-multilib conflicts with the arm cross compiler (at least in trusty) but |
| 220 | # g++-X.Y-multilib gives us the 32-bit support that we need. Find out the |
| 221 | # appropriate value of X and Y by seeing what version the current |
| 222 | # distribution's g++-multilib package depends on. |
| 223 | multilib_package=$(apt-cache depends g++-multilib --important | \ |
| 224 | grep -E --color=never --only-matching '\bg\+\+-[0-9.]+-multilib\b') |
| 225 | lib32_list="$lib32_list $multilib_package" |
| 226 | fi |
| 227 | |
[email protected] | 8ada8c5 | 2009-03-10 21:53:08 | [diff] [blame] | 228 | # Waits for the user to press 'Y' or 'N'. Either uppercase of lowercase is |
| 229 | # accepted. Returns 0 for 'Y' and 1 for 'N'. If an optional parameter has |
| 230 | # been provided to yes_no(), the function also accepts RETURN as a user input. |
| 231 | # The parameter specifies the exit code that should be returned in that case. |
| 232 | # The function will echo the user's selection followed by a newline character. |
| 233 | # Users can abort the function by pressing CTRL-C. This will call "exit 1". |
| 234 | yes_no() { |
[email protected] | e2544ed4 | 2012-04-23 04:48:31 | [diff] [blame] | 235 | if [ 0 -ne "${do_default-0}" ] ; then |
[email protected] | dc09977 | 2013-09-30 22:06:58 | [diff] [blame] | 236 | [ $1 -eq 0 ] && echo "Y" || echo "N" |
[email protected] | e2544ed4 | 2012-04-23 04:48:31 | [diff] [blame] | 237 | return $1 |
| 238 | fi |
[email protected] | 8ada8c5 | 2009-03-10 21:53:08 | [diff] [blame] | 239 | local c |
| 240 | while :; do |
| 241 | c="$(trap 'stty echo -iuclc icanon 2>/dev/null' EXIT INT TERM QUIT |
| 242 | stty -echo iuclc -icanon 2>/dev/null |
| 243 | dd count=1 bs=1 2>/dev/null | od -An -tx1)" |
| 244 | case "$c" in |
| 245 | " 0a") if [ -n "$1" ]; then |
| 246 | [ $1 -eq 0 ] && echo "Y" || echo "N" |
| 247 | return $1 |
| 248 | fi |
| 249 | ;; |
| 250 | " 79") echo "Y" |
| 251 | return 0 |
| 252 | ;; |
| 253 | " 6e") echo "N" |
| 254 | return 1 |
| 255 | ;; |
| 256 | "") echo "Aborted" >&2 |
| 257 | exit 1 |
| 258 | ;; |
| 259 | *) # The user pressed an unrecognized key. As we are not echoing |
| 260 | # any incorrect user input, alert the user by ringing the bell. |
| 261 | (tput bel) 2>/dev/null |
| 262 | ;; |
| 263 | esac |
| 264 | done |
| 265 | } |
| 266 | |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 267 | if test "$do_inst_syms" = "" && test 0 -eq ${do_quick_check-0} |
[email protected] | 1eae2bfb | 2010-01-26 18:17:53 | [diff] [blame] | 268 | then |
| 269 | echo "This script installs all tools and libraries needed to build Chromium." |
| 270 | echo "" |
| 271 | echo "For most of the libraries, it can also install debugging symbols, which" |
| 272 | echo "will allow you to debug code in the system libraries. Most developers" |
| 273 | echo "won't need these symbols." |
| 274 | echo -n "Do you want me to install them for you (y/N) " |
| 275 | if yes_no 1; then |
| 276 | do_inst_syms=1 |
| 277 | fi |
| 278 | fi |
| 279 | if test "$do_inst_syms" = "1"; then |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 280 | echo "Including debugging symbols." |
[email protected] | 8ada8c5 | 2009-03-10 21:53:08 | [diff] [blame] | 281 | else |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 282 | echo "Skipping debugging symbols." |
[email protected] | 8ada8c5 | 2009-03-10 21:53:08 | [diff] [blame] | 283 | dbg_list= |
| 284 | fi |
| 285 | |
johnme | 49bb458a | 2014-11-27 15:45:31 | [diff] [blame^] | 286 | if test "$do_inst_lib32" = "1" ; then |
| 287 | echo "Including 32-bit libraries for ARM/Android." |
| 288 | else |
| 289 | echo "Skipping 32-bit libraries for ARM/Android." |
| 290 | lib32_list= |
[email protected] | 9f28a9cf | 2012-12-17 23:31:40 | [diff] [blame] | 291 | fi |
| 292 | |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 293 | if test "$do_inst_arm" = "1" ; then |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 294 | echo "Including ARM cross toolchain." |
[email protected] | f2826b6a | 2012-11-15 01:06:26 | [diff] [blame] | 295 | else |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 296 | echo "Skipping ARM cross toolchain." |
[email protected] | f2826b6a | 2012-11-15 01:06:26 | [diff] [blame] | 297 | arm_list= |
| 298 | fi |
| 299 | |
[email protected] | 56541636 | 2014-01-16 21:26:47 | [diff] [blame] | 300 | if test "$do_inst_nacl" = "1"; then |
[email protected] | 713eac6 | 2014-06-02 23:10:03 | [diff] [blame] | 301 | echo "Including NaCl, NaCl toolchain, NaCl ports dependencies." |
[email protected] | 56541636 | 2014-01-16 21:26:47 | [diff] [blame] | 302 | else |
[email protected] | 713eac6 | 2014-06-02 23:10:03 | [diff] [blame] | 303 | echo "Skipping NaCl, NaCl toolchain, NaCl ports dependencies." |
[email protected] | 56541636 | 2014-01-16 21:26:47 | [diff] [blame] | 304 | nacl_list= |
| 305 | fi |
| 306 | |
| 307 | packages="$( |
johnme | 49bb458a | 2014-11-27 15:45:31 | [diff] [blame^] | 308 | echo "${dev_list} ${lib_list} ${dbg_list} ${lib32_list} ${arm_list}"\ |
| 309 | "${nacl_list}" | tr " " "\n" | sort -u | tr "\n" " " |
[email protected] | 56541636 | 2014-01-16 21:26:47 | [diff] [blame] | 310 | )" |
[email protected] | ba48c4ca | 2013-10-25 16:11:46 | [diff] [blame] | 311 | |
| 312 | if [ 1 -eq "${do_quick_check-0}" ] ; then |
| 313 | failed_check="$(dpkg-query -W -f '${PackageSpec}:${Status}\n' \ |
| 314 | ${packages} 2>&1 | grep -v "ok installed" || :)" |
| 315 | if [ -n "${failed_check}" ]; then |
| 316 | echo |
| 317 | nomatch="$(echo "${failed_check}" | \ |
| 318 | sed -e "s/^No packages found matching \(.*\).$/\1/;t;d")" |
| 319 | missing="$(echo "${failed_check}" | \ |
| 320 | sed -e "/^No packages found matching/d;s/^\(.*\):.*$/\1/")" |
| 321 | if [ "$nomatch" ]; then |
| 322 | # Distinguish between packages that actually aren't available to the |
| 323 | # system (i.e. not in any repo) and packages that just aren't known to |
| 324 | # dpkg (i.e. managed by apt). |
| 325 | unknown="" |
| 326 | for p in ${nomatch}; do |
| 327 | if apt-cache show ${p} > /dev/null 2>&1; then |
| 328 | missing="${p}\n${missing}" |
| 329 | else |
| 330 | unknown="${p}\n${unknown}" |
| 331 | fi |
| 332 | done |
| 333 | if [ -n "${unknown}" ]; then |
| 334 | echo "WARNING: The following packages are unknown to your system" |
| 335 | echo "(maybe missing a repo or need to 'sudo apt-get update'):" |
| 336 | echo -e "${unknown}" | sed -e "s/^/ /" |
| 337 | fi |
| 338 | fi |
| 339 | if [ -n "${missing}" ]; then |
| 340 | echo "WARNING: The following packages are not installed:" |
| 341 | echo -e "${missing}" | sed -e "s/^/ /" |
| 342 | fi |
| 343 | exit 1 |
| 344 | fi |
| 345 | exit 0 |
| 346 | fi |
| 347 | |
johnme | 49bb458a | 2014-11-27 15:45:31 | [diff] [blame^] | 348 | if test "$do_inst_lib32" = "1" || test "$do_inst_nacl" = "1"; then |
| 349 | if [[ ! $lsb_release =~ (precise|quantal|raring) ]]; then |
| 350 | sudo dpkg --add-architecture i386 |
| 351 | fi |
| 352 | fi |
[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 353 | sudo apt-get update |
| 354 | |
| 355 | # We initially run "apt-get" with the --reinstall option and parse its output. |
| 356 | # This way, we can find all the packages that need to be newly installed |
| 357 | # without accidentally promoting any packages from "auto" to "manual". |
| 358 | # We then re-run "apt-get" with just the list of missing packages. |
| 359 | echo "Finding missing packages..." |
[email protected] | 757c296 | 2012-03-15 19:05:18 | [diff] [blame] | 360 | # Intentionally leaving $packages unquoted so it's more readable. |
[email protected] | b6e06452 | 2009-08-10 18:47:51 | [diff] [blame] | 361 | echo "Packages required: " $packages |
| 362 | echo |
[email protected] | 79a9d296 | 2009-08-06 21:10:58 | [diff] [blame] | 363 | new_list_cmd="sudo apt-get install --reinstall $(echo $packages)" |
[email protected] | c3d8b15 | 2013-05-10 10:10:03 | [diff] [blame] | 364 | if new_list="$(yes n | LANGUAGE=en LANG=C $new_list_cmd)"; then |
[email protected] | b6e06452 | 2009-08-10 18:47:51 | [diff] [blame] | 365 | # We probably never hit this following line. |
[email protected] | 79a9d296 | 2009-08-06 21:10:58 | [diff] [blame] | 366 | echo "No missing packages, and the packages are up-to-date." |
[email protected] | b62f11e7 | 2010-05-03 17:20:45 | [diff] [blame] | 367 | elif [ $? -eq 1 ]; then |
[email protected] | 79a9d296 | 2009-08-06 21:10:58 | [diff] [blame] | 368 | # We expect apt-get to have exit status of 1. |
[email protected] | 757c296 | 2012-03-15 19:05:18 | [diff] [blame] | 369 | # This indicates that we cancelled the install with "yes n|". |
[email protected] | b6e06452 | 2009-08-10 18:47:51 | [diff] [blame] | 370 | new_list=$(echo "$new_list" | |
[email protected] | 79a9d296 | 2009-08-06 21:10:58 | [diff] [blame] | 371 | sed -e '1,/The following NEW packages will be installed:/d;s/^ //;t;d') |
[email protected] | b6e06452 | 2009-08-10 18:47:51 | [diff] [blame] | 372 | new_list=$(echo "$new_list" | sed 's/ *$//') |
| 373 | if [ -z "$new_list" ] ; then |
| 374 | echo "No missing packages, and the packages are up-to-date." |
| 375 | else |
| 376 | echo "Installing missing packages: $new_list." |
[email protected] | e2544ed4 | 2012-04-23 04:48:31 | [diff] [blame] | 377 | sudo apt-get install ${do_quietly-} ${new_list} |
[email protected] | b6e06452 | 2009-08-10 18:47:51 | [diff] [blame] | 378 | fi |
| 379 | echo |
[email protected] | 79a9d296 | 2009-08-06 21:10:58 | [diff] [blame] | 380 | else |
| 381 | # An apt-get exit status of 100 indicates that a real error has occurred. |
[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 382 | |
[email protected] | 79a9d296 | 2009-08-06 21:10:58 | [diff] [blame] | 383 | # I am intentionally leaving out the '"'s around new_list_cmd, |
| 384 | # as this makes it easier to cut and paste the output |
[email protected] | 79a9d296 | 2009-08-06 21:10:58 | [diff] [blame] | 385 | echo "The following command failed: " ${new_list_cmd} |
| 386 | echo |
| 387 | echo "It produces the following output:" |
| 388 | yes n | $new_list_cmd || true |
| 389 | echo |
| 390 | echo "You will have to install the above packages yourself." |
| 391 | echo |
| 392 | exit 100 |
| 393 | fi |
[email protected] | e041ed1 | 2009-03-10 16:43:01 | [diff] [blame] | 394 | |
[email protected] | d96cc347 | 2013-09-19 00:53:30 | [diff] [blame] | 395 | # Install the Chrome OS default fonts. This must go after running |
| 396 | # apt-get, since install-chromeos-fonts depends on curl. |
| 397 | if test "$do_inst_chromeos_fonts" != "0"; then |
| 398 | echo |
| 399 | echo "Installing Chrome OS fonts." |
| 400 | dir=`echo $0 | sed -r -e 's/\/[^/]+$//'` |
| 401 | if ! sudo $dir/linux/install-chromeos-fonts.py; then |
| 402 | echo "ERROR: The installation of the Chrome OS default fonts failed." |
| 403 | if [ `stat -f -c %T $dir` == "nfs" ]; then |
| 404 | echo "The reason is that your repo is installed on a remote file system." |
| 405 | else |
| 406 | echo "This is expected if your repo is installed on a remote file system." |
| 407 | fi |
| 408 | echo "It is recommended to install your repo on a local file system." |
| 409 | echo "You can skip the installation of the Chrome OS default founts with" |
| 410 | echo "the command line option: --no-chromeos-fonts." |
| 411 | exit 1 |
| 412 | fi |
| 413 | else |
| 414 | echo "Skipping installation of Chrome OS fonts." |
| 415 | fi |
| 416 | |
[email protected] | 713eac6 | 2014-06-02 23:10:03 | [diff] [blame] | 417 | if test "$do_inst_nacl" = "1"; then |
| 418 | echo "Installing symbolic links for NaCl." |
| 419 | if [ ! -r /usr/lib/i386-linux-gnu/libcrypto.so ]; then |
| 420 | sudo ln -fs libcrypto.so.0.9.8 /usr/lib/i386-linux-gnu/libcrypto.so |
| 421 | fi |
| 422 | if [ ! -r /usr/lib/i386-linux-gnu/libssl.so ]; then |
| 423 | sudo ln -fs libssl.so.0.9.8 /usr/lib/i386-linux-gnu/libssl.so |
| 424 | fi |
| 425 | else |
| 426 | echo "Skipping symbolic links for NaCl." |
| 427 | fi |