OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # Script to build binutils found in /build/binutils-XXXX when inside a chroot. | 6 # Script to build binutils found in /build/binutils-XXXX when inside a chroot. |
7 # Don't call this script yourself, instead use the build-all.sh script. | 7 # Don't call this script yourself, instead use the build-all.sh script. |
8 | 8 |
9 set -e | 9 set -e |
10 | 10 |
11 if [ -z "$1" ]; then | 11 if [ -z "$1" ]; then |
12 echo "Directory of binutils not given." | 12 echo "Directory of binutils not given." |
13 exit 1 | 13 exit 1 |
14 fi | 14 fi |
15 | 15 |
16 cd "$1" | 16 cd "$1" |
17 | 17 |
| 18 # First, we need to build libtcmalloc_minimal |
| 19 |
| 20 cd ../gperftools/ |
| 21 ./autogen.sh |
| 22 ./configure --disable-static --enable-minimal --disable-heap-checker \ |
| 23 --disable-heap-profiler --disable-cpu-profiler |
| 24 make -j8 |
| 25 |
| 26 cd "$1" |
| 27 |
18 # Ask the dynamic loader to load libstdc++ from the LLVM build directory if | 28 # Ask the dynamic loader to load libstdc++ from the LLVM build directory if |
19 # available. That copy of libstdc++ is required by the gold plugin in the same | 29 # available. That copy of libstdc++ is required by the gold plugin in the same |
20 # directory. The dynamic loader expects the relative path to start with $ORIGIN, | 30 # directory. Do the same for libtcmalloc_minimal, that is stored in ../lib. |
| 31 # The dynamic loader expects the relative path to start with $ORIGIN, |
21 # but because of escaping issues | 32 # but because of escaping issues |
22 # (https://sourceware.org/ml/binutils/2009-05/msg00252.html) | 33 # (https://sourceware.org/ml/binutils/2009-05/msg00252.html) |
23 # we embed a dummy path with $ replaced with z and fix it up later. | 34 # we embed a dummy path with $ replaced with z and fix it up later. |
24 export LDFLAGS='-Wl,-rpath,zORIGIN/../../../../llvm-build/Release+Asserts/lib' | 35 |
| 36 readonly LIBSTDCPP_RPATH="zORIGIN/../../../../llvm-build/Release+Asserts/lib" |
| 37 readonly LIBTCMALLOC_RPATH="zORIGIN/../lib" |
| 38 export LDFLAGS="-Wl,-rpath,$LIBSTDCPP_RPATH:$LIBTCMALLOC_RPATH \ |
| 39 -L$(pwd)/../gperftools/.libs/" |
| 40 export LIBS='-ltcmalloc_minimal' |
25 | 41 |
26 ./configure --enable-gold=default --enable-threads --enable-plugins \ | 42 ./configure --enable-gold=default --enable-threads --enable-plugins \ |
27 --prefix=/build/output | 43 --prefix=/build/output |
| 44 |
28 make -j8 all | 45 make -j8 all |
29 make install | 46 make install |
30 | 47 |
| 48 # Copy libtcmalloc_minimal library and symlinks to the install lib dir. |
| 49 cp -a ../gperftools/.libs/libtcmalloc_minimal.so* /build/output/*/lib/ |
| 50 |
31 # Save the list of binaries. The sed -i command will leave .orig files behind. | 51 # Save the list of binaries. The sed -i command will leave .orig files behind. |
32 # We don't want them to appear in the for loop below. | 52 # We don't want them to appear in the for loop below. |
33 bins="$(echo /build/output/*/bin/*)" | 53 bins="$(echo /build/output/*/bin/*)" |
34 | 54 |
35 # Fix up zORIGIN -> $ORIGIN. | 55 # Fix up zORIGIN -> $ORIGIN. |
36 sed -i.orig 's,zORIGIN,$ORIGIN,g' $bins | 56 sed -i.orig 's,zORIGIN,$ORIGIN,g' $bins |
37 | 57 |
38 # Verify that we changed only one byte per executable. | 58 # Verify that we changed only two bytes per executable. |
39 for bin in $bins; do | 59 for bin in $bins; do |
40 test "`cmp -l $bin.orig $bin | wc -l`" = 1 || \ | 60 test "`cmp -l $bin.orig $bin | wc -l`" = 2 || \ |
41 (echo "$bin: verification failed" && exit 1) | 61 (echo "$bin: verification failed" && exit 1) |
42 done | 62 done |
43 | 63 |
44 rm /build/output/*/bin/*.orig | 64 rm /build/output/*/bin/*.orig |
OLD | NEW |