2005-12-05 15:11:09 +01:00
|
|
|
source $stdenv/setup
|
|
|
|
source $substitute
|
2004-03-08 17:02:46 +01:00
|
|
|
|
2004-03-09 18:08:41 +01:00
|
|
|
|
2006-10-24 20:26:23 +02:00
|
|
|
mkdir $out
|
|
|
|
mkdir $out/bin
|
|
|
|
mkdir $out/nix-support
|
2004-03-09 18:08:41 +01:00
|
|
|
|
2006-10-24 20:26:23 +02:00
|
|
|
|
|
|
|
if test -z "$nativeLibc"; then
|
|
|
|
dynamicLinker="$libc/lib/$dynamicLinker"
|
|
|
|
echo $dynamicLinker > $out/nix-support/dynamic-linker
|
|
|
|
|
|
|
|
# The "-B$libc/lib/" flag is a quick hack to force gcc to link
|
2004-03-09 18:08:41 +01:00
|
|
|
# against the crt1.o from our own glibc, rather than the one in
|
2006-10-24 20:26:23 +02:00
|
|
|
# /usr/lib. (This is only an issue when using an `impure'
|
|
|
|
# compiler/linker, i.e., one that searches /usr/lib and so on.)
|
|
|
|
echo "-B$libc/lib/ -isystem $libc/include" > $out/nix-support/libc-cflags
|
|
|
|
|
|
|
|
echo "-L$libc/lib" > $out/nix-support/libc-ldflags
|
|
|
|
|
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).
|
2006-10-24 20:26:23 +02:00
|
|
|
echo "-dynamic-linker $dynamicLinker" > $out/nix-support/libc-ldflags-before
|
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
|
2006-10-24 15:50:21 +02:00
|
|
|
if test -e "$gcc/lib64"; then
|
2006-10-24 20:26:23 +02:00
|
|
|
gccLDFlags="$gccLDFlags -L$gcc/lib64"
|
2006-10-24 15:50:21 +02:00
|
|
|
fi
|
2006-10-24 20:26:23 +02:00
|
|
|
gccLDFlags="$gccLDFlags -L$gcc/lib"
|
|
|
|
echo "$gccLDFlags" > $out/nix-support/gcc-ldflags
|
2006-10-25 18:32:13 +02:00
|
|
|
|
|
|
|
# GCC shows $gcc/lib in `gcc -print-search-dirs', but not
|
|
|
|
# $gcc/lib64 (even though it does actually search there...)..
|
|
|
|
# This confuses libtool. So add it to the compiler tool search
|
|
|
|
# path explicitly.
|
|
|
|
if test -e "$gcc/lib64"; then
|
|
|
|
gccCFlags="$gccCFlags -B$gcc/lib64"
|
|
|
|
fi
|
|
|
|
echo "$gccCFlags" > $out/nix-support/gcc-cflags
|
|
|
|
|
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
|
|
|
|
2005-02-22 15:32:56 +01:00
|
|
|
doSubstitute() {
|
|
|
|
local src=$1
|
|
|
|
local dst=$2
|
|
|
|
substitute "$src" "$dst" \
|
|
|
|
--subst-var "out" \
|
|
|
|
--subst-var "shell" \
|
|
|
|
--subst-var "gcc" \
|
|
|
|
--subst-var "gccProg" \
|
|
|
|
--subst-var "binutils" \
|
2006-10-24 20:26:23 +02:00
|
|
|
--subst-var "libc" \
|
2005-02-22 15:32:56 +01:00
|
|
|
--subst-var-by "ld" "$ldPath/ld"
|
|
|
|
}
|
2004-03-08 17:02:46 +01:00
|
|
|
|
|
|
|
|
2005-02-22 15:32:56 +01:00
|
|
|
# Make wrapper scripts around gcc, g++, and g77. Also make symlinks
|
|
|
|
# cc, c++, and f77.
|
|
|
|
mkGccWrapper() {
|
2004-03-08 17:02:46 +01:00
|
|
|
local dst=$1
|
|
|
|
local src=$2
|
|
|
|
|
|
|
|
if ! test -f "$src"; then
|
|
|
|
echo "$src does not exist (skipping)"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2005-02-22 15:32:56 +01:00
|
|
|
gccProg="$src"
|
|
|
|
doSubstitute "$gccWrapper" "$dst"
|
|
|
|
chmod +x "$dst"
|
2004-03-08 17:02:46 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
2006-10-26 22:25:31 +02:00
|
|
|
# Create a symlink to as (the assembler). This is useful when a
|
|
|
|
# gcc-wrapper is installed in a user environment, as it ensures that
|
|
|
|
# the right assembler is called.
|
2006-10-27 14:07:03 +02:00
|
|
|
ln -s $ldPath/as $out/bin/as
|
2006-10-26 22:25:31 +02:00
|
|
|
|
|
|
|
|
2005-02-22 15:32:56 +01:00
|
|
|
# Make a wrapper around the linker.
|
|
|
|
doSubstitute "$ldWrapper" "$out/bin/ld"
|
|
|
|
chmod +x "$out/bin/ld"
|
2004-03-08 17:02:46 +01:00
|
|
|
|
|
|
|
|
2005-02-22 15:32:56 +01:00
|
|
|
# Emit a setup hook. Also store the path to the original GCC and
|
|
|
|
# Glibc.
|
2004-03-12 12:12:18 +01:00
|
|
|
test -n "$gcc" && echo $gcc > $out/nix-support/orig-gcc
|
2006-10-24 20:26:23 +02:00
|
|
|
test -n "$libc" && echo $libc > $out/nix-support/orig-libc
|
2004-03-09 18:08:41 +01:00
|
|
|
|
2006-10-24 20:26:23 +02:00
|
|
|
doSubstitute "$addFlags" "$out/nix-support/add-flags.sh"
|
2005-02-22 15:32:56 +01:00
|
|
|
|
|
|
|
doSubstitute "$setupHook" "$out/nix-support/setup-hook"
|
2004-03-12 12:12:18 +01:00
|
|
|
|
2006-10-24 20:26:23 +02:00
|
|
|
cp -p $utils $out/nix-support/utils.sh
|