2009-11-08 01:32:12 +01:00
|
|
|
set -e
|
|
|
|
|
|
|
|
# Unpack the bootstrap tools tarball.
|
|
|
|
echo Unpacking the bootstrap tools...
|
|
|
|
$mkdir $out
|
|
|
|
$bzip2 -d < $tarball | (cd $out && $cpio -V -i)
|
|
|
|
|
|
|
|
# Set the ELF interpreter / RPATH in the bootstrap binaries.
|
|
|
|
echo Patching the bootstrap tools...
|
|
|
|
|
|
|
|
# On x86_64, ld-linux-x86-64.so.2 barfs on patchelf'ed programs. So
|
|
|
|
# use a copy of patchelf.
|
|
|
|
LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? $out/bin/cp $out/bin/patchelf .
|
|
|
|
|
2009-12-08 11:03:20 +01:00
|
|
|
for i in $out/bin/* $out/libexec/gcc/*/*/* $out/lib/librt*; do
|
2009-11-08 01:32:12 +01:00
|
|
|
echo patching $i
|
|
|
|
if ! test -L $i; then
|
|
|
|
LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \
|
|
|
|
$out/bin/patchelf --set-interpreter $out/lib/ld-linux*.so.? --set-rpath $out/lib --force-rpath $i
|
|
|
|
LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \
|
|
|
|
$out/bin/patchelf --set-interpreter $out/lib/ld-linux*.so.? --set-rpath $out/lib --force-rpath $i
|
|
|
|
fi
|
|
|
|
done
|
2009-12-08 11:03:20 +01:00
|
|
|
for i in $out/lib/libppl* $out/lib/libgmp*; do
|
2009-11-08 01:32:12 +01:00
|
|
|
echo patching $i
|
|
|
|
if ! test -L $i; then
|
|
|
|
LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \
|
2009-12-08 11:03:20 +01:00
|
|
|
$out/bin/patchelf --set-rpath $out/lib --force-rpath $i
|
2009-11-08 01:32:12 +01:00
|
|
|
LD_LIBRARY_PATH=$out/lib $out/lib/ld-linux*.so.? \
|
2009-12-08 11:03:20 +01:00
|
|
|
$out/bin/patchelf --set-rpath $out/lib --force-rpath $i
|
2009-11-08 01:32:12 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# Fix the libc linker script.
|
|
|
|
export PATH=$out/bin
|
|
|
|
cat $out/lib/libc.so | sed "s|/nix/store/e*-[^/]*/|$out/|g" > $out/lib/libc.so.tmp
|
|
|
|
mv $out/lib/libc.so.tmp $out/lib/libc.so
|
|
|
|
cat $out/lib/libpthread.so | sed "s|/nix/store/e*-[^/]*/|$out/|g" > $out/lib/libpthread.so.tmp
|
|
|
|
mv $out/lib/libpthread.so.tmp $out/lib/libpthread.so
|
|
|
|
|
|
|
|
# Provide some additional symlinks.
|
|
|
|
ln -s bash $out/bin/sh
|
|
|
|
ln -s bzip2 $out/bin/bunzip2
|
2009-11-28 20:21:33 +01:00
|
|
|
|
|
|
|
# Mimic the gunzip script as in gzip installations
|
|
|
|
cat > $out/bin/gunzip <<EOF
|
|
|
|
#!$out/bin/sh
|
|
|
|
exec $out/bin/gzip -d "\$@"
|
|
|
|
EOF
|
|
|
|
chmod +x $out/bin/gunzip
|
2009-11-08 01:32:12 +01:00
|
|
|
|
|
|
|
# fetchurl needs curl.
|
|
|
|
bzip2 -d < $curl > $out/bin/curl
|
|
|
|
chmod +x $out/bin/curl
|