* Merge the gcc-4.1 changes into 3.4.

svn path=/nixpkgs/trunk/; revision=6855
This commit is contained in:
Eelco Dolstra 2006-10-26 11:25:29 +00:00
parent 115a99e6f4
commit eb4584c0cb
2 changed files with 26 additions and 41 deletions

View File

@ -7,47 +7,31 @@ mkdir $NIX_FIXINC_DUMMY
if test "$noSysDirs" = "1"; then if test "$noSysDirs" = "1"; then
if test "$noSysDirs" = "1"; then if test -e $NIX_GCC/nix-support/orig-libc; then
# Figure out what extra flags to pass to the gcc compilers # Figure out what extra flags to pass to the gcc compilers
# being generated to make sure that they use our glibc. # being generated to make sure that they use our glibc.
if test -e $NIX_GCC/nix-support/orig-glibc; then extraCFlags="$(cat $NIX_GCC/nix-support/libc-cflags)"
glibc=$(cat $NIX_GCC/nix-support/orig-glibc) extraLDFlags="$(cat $NIX_GCC/nix-support/libc-ldflags) $(cat $NIX_GCC/nix-support/libc-ldflags-before)"
# Ugh. Copied from gcc-wrapper/builder.sh. We can't just
# source in $NIX_GCC/nix-support/add-flags, since that
# would cause *this* GCC to be linked against the
# *previous* GCC. Need some more modularity there.
extraCFlags="-B$glibc/lib -isystem $glibc/include"
extraLDFlags="-B$glibc/lib -L$glibc/lib -Wl,-s \
-Wl,-dynamic-linker,$glibc/lib/ld-linux.so.2"
# Oh, what a hack. I should be shot for this. # Use *real* header files, otherwise a limits.h is generated
# In stage 1, we should link against the previous GCC, but # that does not include Glibc's limits.h (notably missing
# not afterwards. Otherwise we retain a dependency. # SSIZE_MAX, which breaks the build).
# However, ld-wrapper, which adds the linker flags for the export NIX_FIXINC_DUMMY=$(cat $NIX_GCC/nix-support/orig-libc)/include
# previous GCC, is also used in stage 2/3. We can prevent
# it from adding them by NIX_GLIBC_FLAGS_SET, but then else
# gcc-wrapper will also not add them, thereby causing # Hack: support impure environments.
# stage 1 to fail. So we use a trick to only set the extraCFlags="-isystem /usr/include"
# flags in gcc-wrapper. extraLDFlags="-L/usr/lib64 -L/usr/lib"
hook=$(pwd)/ld-wrapper-hook export NIX_FIXINC_DUMMY=/usr/include
echo "NIX_GLIBC_FLAGS_SET=1" > $hook
export NIX_LD_WRAPPER_START_HOOK=$hook
# Use *real* header files, otherwise a limits.h is
# generated that does not include Glibc's limits.h
# (notably missing SSIZE_MAX, which breaks the build).
export NIX_FIXINC_DUMMY=$glibc/include
fi
export NIX_EXTRA_CFLAGS=$extraCFlags
export NIX_EXTRA_LDFLAGS=$extraLDFlags
export CFLAGS=$extraCFlags
export LDFLAGS=$extraLDFlags
fi fi
else export NIX_EXTRA_CFLAGS=$extraCFlags
patches="" for i in $extraLDFlags; do
export NIX_EXTRA_LDFLAGS="$NIX_EXTRA_LDFLAGS -Wl,$i"
done
export CFLAGS=$extraCFlags
export CXXFLAGS=$extraCFlags
fi fi
@ -68,7 +52,7 @@ preConfigure() {
cd ../build cd ../build
configureScript=../$sourceRoot/configure configureScript=../$sourceRoot/configure
configureFlags="--enable-languages=$langs" configureFlags="--enable-languages=$langs $configureFlags"
} }
@ -85,9 +69,9 @@ postInstall() {
if test -z "$profiledCompiler"; then if test -z "$profiledCompiler"; then
makeFlags="bootstrap" makeFlags="bootstrap $makeFlags"
else else
makeFlags="profiledbootstrap" makeFlags="profiledbootstrap $makeFlags"
fi fi
genericBuild genericBuild

View File

@ -12,8 +12,9 @@ stdenv.mkDerivation {
url = http://nix.cs.uu.nl/dist/tarballs/gcc-3.4.6.tar.bz2; url = http://nix.cs.uu.nl/dist/tarballs/gcc-3.4.6.tar.bz2;
md5 = "4a21ac777d4b5617283ce488b808da7b"; md5 = "4a21ac777d4b5617283ce488b808da7b";
}; };
# !!! apply only if noSysDirs is set
patches = [./no-sys-dirs.patch]; patches = if noSysDirs then [./no-sys-dirs.patch] else [];
inherit noSysDirs langC langCC langF77 profiledCompiler; inherit noSysDirs langC langCC langF77 profiledCompiler;
meta = { meta = {