2004-03-08 17:02:46 +01:00
|
|
|
. $stdenv/setup
|
|
|
|
|
2004-03-09 18:08:41 +01:00
|
|
|
|
|
|
|
# Force gcc to use ld-wrapper.sh when calling ld.
|
|
|
|
cflagsCompile="-B$out/bin"
|
|
|
|
|
2004-03-11 18:26:14 +01:00
|
|
|
if test -z "$nativeGlibc"; then
|
2004-03-09 18:08:41 +01:00
|
|
|
# The "-B$glibc/lib" flag is a quick hack to force gcc to link
|
|
|
|
# against the crt1.o from our own glibc, rather than the one in
|
|
|
|
# /usr/lib. The real solution is of course to prevent those paths
|
|
|
|
# from being used by gcc in the first place.
|
2004-11-22 17:36:27 +01:00
|
|
|
# The dynamic linker is passed in `ldflagsBefore' to allow
|
|
|
|
# explicit overrides of the dynamic linker by callers to gcc/ld
|
|
|
|
# (the *last* value counts, so ours should come first).
|
2004-03-09 18:08:41 +01:00
|
|
|
cflagsCompile="$cflagsCompile -B$glibc/lib -isystem $glibc/include"
|
2004-11-22 17:36:27 +01:00
|
|
|
ldflags="$ldflags -L$glibc/lib"
|
|
|
|
ldflagsBefore="-dynamic-linker $glibc/lib/ld-linux.so.2"
|
2004-03-09 18:08:41 +01:00
|
|
|
fi
|
|
|
|
|
2004-03-11 18:26:14 +01:00
|
|
|
if test -n "$nativeTools"; then
|
2004-03-09 18:08:41 +01:00
|
|
|
gccPath="$nativePrefix/bin"
|
|
|
|
ldPath="$nativePrefix/bin"
|
2004-03-08 17:02:46 +01:00
|
|
|
else
|
2004-04-05 00:02:41 +02:00
|
|
|
ldflags="$ldflags -L$gcc/lib"
|
2004-03-09 18:08:41 +01:00
|
|
|
gccPath="$gcc/bin"
|
|
|
|
ldPath="$binutils/bin"
|
2004-03-08 17:02:46 +01:00
|
|
|
fi
|
|
|
|
|
2004-03-09 18:08:41 +01:00
|
|
|
|
2004-03-08 17:02:46 +01:00
|
|
|
mkdir $out
|
|
|
|
mkdir $out/bin
|
|
|
|
|
|
|
|
|
|
|
|
mkGccWrapper () {
|
|
|
|
local dst=$1
|
|
|
|
local src=$2
|
|
|
|
|
|
|
|
if ! test -f "$src"; then
|
|
|
|
echo "$src does not exist (skipping)"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
sed \
|
|
|
|
-e "s^@gcc@^$src^g" \
|
2004-03-09 18:08:41 +01:00
|
|
|
-e "s^@out@^$out^g" \
|
2004-03-30 14:46:52 +02:00
|
|
|
-e "s^@shell@^$shell^g" \
|
2004-03-08 17:02:46 +01:00
|
|
|
< $gccWrapper > $dst
|
|
|
|
chmod +x $dst
|
|
|
|
}
|
|
|
|
|
2004-03-09 18:08:41 +01:00
|
|
|
mkGccWrapper $out/bin/gcc $gccPath/gcc
|
2004-03-08 17:02:46 +01:00
|
|
|
ln -s gcc $out/bin/cc
|
|
|
|
|
2004-03-09 18:08:41 +01:00
|
|
|
mkGccWrapper $out/bin/g++ $gccPath/g++
|
2004-03-08 17:02:46 +01:00
|
|
|
ln -s g++ $out/bin/c++
|
|
|
|
|
2004-03-09 18:08:41 +01:00
|
|
|
mkGccWrapper $out/bin/g77 $gccPath/g77
|
2004-03-08 17:02:46 +01:00
|
|
|
ln -s g77 $out/bin/f77
|
|
|
|
|
|
|
|
|
|
|
|
sed \
|
2004-03-12 12:12:18 +01:00
|
|
|
-e "s^@out@^$out^g" \
|
2004-03-08 17:02:46 +01:00
|
|
|
-e "s^@ldflags@^$ldflags^g" \
|
2004-11-22 17:36:27 +01:00
|
|
|
-e "s^@ldflagsBefore@^$ldflagsBefore^g" \
|
2004-03-09 18:08:41 +01:00
|
|
|
-e "s^@ld@^$ldPath/ld^g" \
|
2004-03-30 14:46:52 +02:00
|
|
|
-e "s^@shell@^$shell^g" \
|
2004-03-08 17:02:46 +01:00
|
|
|
< $ldWrapper > $out/bin/ld
|
|
|
|
chmod +x $out/bin/ld
|
|
|
|
|
|
|
|
|
|
|
|
mkdir $out/nix-support
|
2004-03-12 12:12:18 +01:00
|
|
|
test -n "$gcc" && echo $gcc > $out/nix-support/orig-gcc
|
2004-03-09 18:08:41 +01:00
|
|
|
test -n "$glibc" && echo $glibc > $out/nix-support/orig-glibc
|
|
|
|
|
|
|
|
cat > $out/nix-support/add-flags <<EOF
|
2004-04-02 19:49:44 +02:00
|
|
|
export NIX_CFLAGS_COMPILE="$cflagsCompile \$NIX_CFLAGS_COMPILE"
|
|
|
|
export NIX_CFLAGS_LINK="$cflagsLink \$NIX_CFLAGS_LINK"
|
|
|
|
export NIX_LDFLAGS="$ldflags \$NIX_LDFLAGS"
|
2004-11-22 17:36:27 +01:00
|
|
|
export NIX_LDFLAGS_BEFORE="$ldflagsBefore \$NIX_LDFLAGS_BEFORE"
|
2004-04-02 19:49:44 +02:00
|
|
|
export NIX_GLIBC_FLAGS_SET=1
|
2005-02-21 17:03:34 +01:00
|
|
|
#export GCC_EXEC_PREFIX=$gcc/libexec/gcc/i686-pc-linux-gnu/3.4.3
|
2004-03-09 18:08:41 +01:00
|
|
|
EOF
|
2004-03-08 17:02:46 +01:00
|
|
|
|
|
|
|
sed \
|
|
|
|
-e "s^@gcc@^$gcc^g" \
|
2004-03-09 18:08:41 +01:00
|
|
|
-e "s^@binutils@^$binutils^g" \
|
2004-03-08 17:02:46 +01:00
|
|
|
-e "s^@glibc@^$glibc^g" \
|
|
|
|
< $setupHook > $out/nix-support/setup-hook
|
2004-03-12 12:12:18 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
cp -p $utils $out/nix-support/utils
|