diff options
author | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-15 06:39:53 +0000 |
---|---|---|
committer | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-15 06:39:53 +0000 |
commit | d93d68b11d33cdffc3655decf0fdce8c13484c9a (patch) | |
tree | 3f2999cf0afee13cf84ac8a84ba62c704c479b82 /build/install-build-deps.sh | |
parent | 294064b632d5c4b79c33cabb1387502fd93edc6d (diff) | |
download | chromium_src-d93d68b11d33cdffc3655decf0fdce8c13484c9a.zip chromium_src-d93d68b11d33cdffc3655decf0fdce8c13484c9a.tar.gz chromium_src-d93d68b11d33cdffc3655decf0fdce8c13484c9a.tar.bz2 |
64-bit system need 32bit libstdc++.so.6 to run pnacl sdk clang
To build chromium, NaCl SDK should work for internally used NaCl library.
32bit version of clang is used as a part of pnacl sdk toolchain, and requires
libstdc++.so.6.
BUG=none
Review URL: https://chromiumcodereview.appspot.com/11141009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161831 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/install-build-deps.sh')
-rwxr-xr-x | build/install-build-deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh index 705d4c2..b77e23a 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -70,10 +70,10 @@ dev_list="apache2.2-bin bison curl elfutils fakeroot flex g++ gperf $chromeos_dev_list" # 64-bit systems need a minimum set of 32-bit compat packages for the pre-built -# NaCL binaries. These are always needed, regardless of whether or not we want +# NaCl binaries. These are always needed, regardless of whether or not we want # the full 32-bit "cross-compile" support (--lib32). if [ "$(uname -m)" = "x86_64" ]; then - dev_list="${dev_list} libc6-i386 lib32gcc1" + dev_list="${dev_list} libc6-i386 lib32gcc1 lib32stdc++6" fi # Run-time libraries required by chromeos only |