2009-06-22 21:49:42 +02:00
|
|
|
# Glibc cannot have itself in its RPATH.
|
2008-07-08 01:11:53 +02:00
|
|
|
export NIX_NO_SELF_RPATH=1
|
|
|
|
|
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
# Explicitly tell glibc to use our pwd, not /bin/pwd.
|
|
|
|
export PWD_P=$(type -tP pwd)
|
|
|
|
|
2009-02-01 22:29:39 +01:00
|
|
|
# Needed to install share/zoneinfo/zone.tab. Set to impure /bin/sh to
|
|
|
|
# prevent a retained dependency on the bootstrap tools in the
|
|
|
|
# stdenv-linux bootstrap.
|
|
|
|
export BASH_SHELL=/bin/sh
|
2008-07-08 01:11:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
preConfigure() {
|
|
|
|
|
|
|
|
for i in configure io/ftwtest-sh; do
|
|
|
|
# Can't use substituteInPlace here because replace hasn't been
|
|
|
|
# built yet in the bootstrap.
|
|
|
|
sed -i "$i" -e "s^/bin/pwd^$PWD_P^g"
|
|
|
|
done
|
|
|
|
|
|
|
|
# In the glibc 2.6/2.7 tarballs C-translit.h is a little bit older
|
|
|
|
# than C-translit.h.in, forcing Make to rebuild it unnecessarily.
|
|
|
|
# This wouldn't be problem except that it requires Perl, which we
|
|
|
|
# don't want as a dependency in the Nixpkgs bootstrap. So force
|
|
|
|
# the output file to be newer.
|
|
|
|
touch locale/C-translit.h
|
2009-11-08 01:32:12 +01:00
|
|
|
|
|
|
|
tar xvjf "$srcPorts"
|
2008-07-08 01:11:53 +02:00
|
|
|
|
2009-11-17 00:21:13 +01:00
|
|
|
if test -n "$crossConfig"; then
|
2009-11-15 06:28:35 +01:00
|
|
|
sed -i s/-lgcc_eh//g Makeconfig
|
|
|
|
fi
|
|
|
|
|
2009-11-08 01:32:12 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2008-07-08 01:11:53 +02:00
|
|
|
|
2009-11-08 01:32:12 +01:00
|
|
|
configureScript=../configure
|
2009-11-17 00:21:13 +01:00
|
|
|
if test -n "$crossConfig"; then
|
2009-11-15 06:28:35 +01:00
|
|
|
cat > config.cache << "EOF"
|
|
|
|
libc_cv_forced_unwind=yes
|
|
|
|
libc_cv_c_cleanup=yes
|
|
|
|
libc_cv_gnu89_inline=yes
|
|
|
|
EOF
|
|
|
|
export BUILD_CC=gcc
|
2009-11-17 00:21:13 +01:00
|
|
|
export CC="${crossConfig}-gcc"
|
|
|
|
export AR="${crossConfig}-ar"
|
|
|
|
export RANLIB="${crossConfig}-ranlib"
|
2009-11-15 06:28:35 +01:00
|
|
|
configureFlags="${configureFlags} --cache-file=config.cache"
|
2009-11-23 18:06:57 +01:00
|
|
|
|
|
|
|
# Disable the native stripping, because it breaks libc_nonshared.a
|
|
|
|
dontStrip=1
|
2009-11-15 06:28:35 +01:00
|
|
|
fi
|
2008-07-08 01:11:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
postConfigure() {
|
|
|
|
# Hack: get rid of the `-static' flag set by the bootstrap stdenv.
|
|
|
|
# This has to be done *after* `configure' because it builds some
|
|
|
|
# test binaries.
|
|
|
|
export NIX_CFLAGS_LINK=
|
|
|
|
export NIX_LDFLAGS_BEFORE=
|
2009-06-22 21:49:42 +02:00
|
|
|
|
|
|
|
export NIX_DONT_SET_RPATH=1
|
2009-11-08 01:32:12 +01:00
|
|
|
unset CFLAGS
|
2008-07-08 01:11:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
postInstall() {
|
|
|
|
if test -n "$installLocales"; then
|
|
|
|
make localedata/install-locales
|
|
|
|
fi
|
2009-11-15 06:28:35 +01:00
|
|
|
test -f $out/etc/ld.so.cache && rm $out/etc/ld.so.cache
|
2008-07-08 01:11:53 +02:00
|
|
|
(cd $out/include && ln -s $kernelHeaders/include/* .) || exit 1
|
|
|
|
|
|
|
|
# Fix for NIXOS-54 (ldd not working on x86_64). Make a symlink
|
|
|
|
# "lib64" to "lib".
|
|
|
|
if test -n "$is64bit"; then
|
|
|
|
ln -s lib $out/lib64
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
genericBuild
|