2011-10-18 21:03:09 +01:00
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin
|
|
|
|
mkdir -p $out/nix-support
|
2011-10-18 21:03:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
if test -z "$nativeLibc"; then
|
|
|
|
dynamicLinker="$libc/lib/$dynamicLinker"
|
|
|
|
echo $dynamicLinker > $out/nix-support/dynamic-linker
|
|
|
|
|
|
|
|
if test -e $libc/lib/32/ld-linux.so.2; then
|
|
|
|
echo $libc/lib/32/ld-linux.so.2 > $out/nix-support/dynamic-linker-m32
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The "-B$libc/lib/" flag is a quick hack to force clang to link
|
|
|
|
# against the crt1.o from our own glibc, rather than the one in
|
|
|
|
# /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/ -idirafter $libc/include" > $out/nix-support/libc-cflags
|
|
|
|
|
|
|
|
echo "-L$libc/lib" > $out/nix-support/libc-ldflags
|
|
|
|
|
|
|
|
# The dynamic linker is passed in `ldflagsBefore' to allow
|
|
|
|
# explicit overrides of the dynamic linker by callers to clang/ld
|
|
|
|
# (the *last* value counts, so ours should come first).
|
|
|
|
echo "-dynamic-linker $dynamicLinker" > $out/nix-support/libc-ldflags-before
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "$nativeTools"; then
|
|
|
|
clangPath="$nativePrefix/bin"
|
|
|
|
ldPath="$nativePrefix/bin"
|
|
|
|
else
|
|
|
|
basePath=`echo $gcc/lib/*/*/*`
|
|
|
|
# Need libgcc until the llvm compiler-rt library is complete
|
|
|
|
clangLDFlags="$clangLDFlags -L$basePath"
|
|
|
|
if test -e "$gcc/lib64"; then
|
|
|
|
clangLDFlags="$clangLDFlags -L$gcc/lib64"
|
|
|
|
else
|
|
|
|
clangLDFlags="$clangLDFlags -L$gcc/lib"
|
|
|
|
fi
|
|
|
|
|
|
|
|
clangLDFlags="$clangLDFlags -L$clang/lib"
|
|
|
|
echo "$clangLDFlags" > $out/nix-support/clang-ldflags
|
|
|
|
|
|
|
|
# Need files like crtbegin.o from gcc
|
|
|
|
# It's unclear if these will ever be provided by an LLVM project
|
|
|
|
clangCFlags="$clangCFlags -B$basePath"
|
|
|
|
|
2011-10-27 07:39:45 +01:00
|
|
|
clangCFlags="$clangCFlags -isystem$clang/lib/clang/$clangVersion/include"
|
2011-10-18 21:03:09 +01:00
|
|
|
echo "$clangCFlags" > $out/nix-support/clang-cflags
|
|
|
|
|
|
|
|
clangPath="$clang/bin"
|
|
|
|
ldPath="$binutils/bin"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
doSubstitute() {
|
|
|
|
local src=$1
|
|
|
|
local dst=$2
|
2013-09-07 10:02:32 +01:00
|
|
|
local uselibcxx=
|
Add full llvm build, update libc++ and dragonegg
Some packages in the llvm suite (e.g. compiler-rt) cannot be built
separate from the build of llvm, and while some others (e.g. clang) can
the combined build is much better tested (we've had to work around
annoying issues before). So this puts llvm, clang, clang-tools-extra,
compiler-rt, lld, lldb, and polly all into one big build (llvmFull).
This build includes a static llvm, as dynamic is similarly less tested
and has known failures.
This also updates libc++ and dragonegg. libc++ now builds against
libc++abi as a separate package rather than building it during the
libc++ build.
The clang purity patch is gone. Instead, we simply set --sysroot to
/var/empty for pure builds, as all impure paths are either looked up in
the gcc prefix (which we hard-code at compile time) or in the sysroot.
This also means that if NIX_ENFORCE_PURITY is 0 then clang will look in
the normal Linux paths by default, which is the proper behavior IMO.
polly required an updated isl. When stdenv-updates is merged, perhaps we
can update the isl used by gcc and avoid having two versions.
Since llvm on its own is now separate from the llvm used by clang, I've
removed myself as maintainer from llvm and will leave maintenance of
that to those who are interested in llvm separate from clang.
Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-20 10:23:17 +00:00
|
|
|
local uselibcxxabi=
|
2013-09-07 10:02:32 +01:00
|
|
|
if test -n "$libcxx" && echo $dst | fgrep ++; then uselibcxx=$libcxx; fi
|
Add full llvm build, update libc++ and dragonegg
Some packages in the llvm suite (e.g. compiler-rt) cannot be built
separate from the build of llvm, and while some others (e.g. clang) can
the combined build is much better tested (we've had to work around
annoying issues before). So this puts llvm, clang, clang-tools-extra,
compiler-rt, lld, lldb, and polly all into one big build (llvmFull).
This build includes a static llvm, as dynamic is similarly less tested
and has known failures.
This also updates libc++ and dragonegg. libc++ now builds against
libc++abi as a separate package rather than building it during the
libc++ build.
The clang purity patch is gone. Instead, we simply set --sysroot to
/var/empty for pure builds, as all impure paths are either looked up in
the gcc prefix (which we hard-code at compile time) or in the sysroot.
This also means that if NIX_ENFORCE_PURITY is 0 then clang will look in
the normal Linux paths by default, which is the proper behavior IMO.
polly required an updated isl. When stdenv-updates is merged, perhaps we
can update the isl used by gcc and avoid having two versions.
Since llvm on its own is now separate from the llvm used by clang, I've
removed myself as maintainer from llvm and will leave maintenance of
that to those who are interested in llvm separate from clang.
Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-20 10:23:17 +00:00
|
|
|
if test -n "$libcxxabi" && echo $dst | fgrep ++; then uselibcxxabi=$libcxxabi; fi
|
2011-10-18 21:03:09 +01:00
|
|
|
# Can't use substitute() here, because replace may not have been
|
|
|
|
# built yet (in the bootstrap).
|
|
|
|
sed \
|
|
|
|
-e "s^@out@^$out^g" \
|
|
|
|
-e "s^@shell@^$shell^g" \
|
2013-09-07 10:02:32 +01:00
|
|
|
-e "s^@libcxx@^$uselibcxx^g" \
|
Add full llvm build, update libc++ and dragonegg
Some packages in the llvm suite (e.g. compiler-rt) cannot be built
separate from the build of llvm, and while some others (e.g. clang) can
the combined build is much better tested (we've had to work around
annoying issues before). So this puts llvm, clang, clang-tools-extra,
compiler-rt, lld, lldb, and polly all into one big build (llvmFull).
This build includes a static llvm, as dynamic is similarly less tested
and has known failures.
This also updates libc++ and dragonegg. libc++ now builds against
libc++abi as a separate package rather than building it during the
libc++ build.
The clang purity patch is gone. Instead, we simply set --sysroot to
/var/empty for pure builds, as all impure paths are either looked up in
the gcc prefix (which we hard-code at compile time) or in the sysroot.
This also means that if NIX_ENFORCE_PURITY is 0 then clang will look in
the normal Linux paths by default, which is the proper behavior IMO.
polly required an updated isl. When stdenv-updates is merged, perhaps we
can update the isl used by gcc and avoid having two versions.
Since llvm on its own is now separate from the llvm used by clang, I've
removed myself as maintainer from llvm and will leave maintenance of
that to those who are interested in llvm separate from clang.
Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-20 10:23:17 +00:00
|
|
|
-e "s^@libcxxabi@^$uselibcxxabi^g" \
|
2011-10-18 21:03:09 +01:00
|
|
|
-e "s^@clang@^$clang^g" \
|
|
|
|
-e "s^@clangProg@^$clangProg^g" \
|
|
|
|
-e "s^@binutils@^$binutils^g" \
|
|
|
|
-e "s^@coreutils@^$coreutils^g" \
|
|
|
|
-e "s^@libc@^$libc^g" \
|
|
|
|
-e "s^@ld@^$ldPath/ld^g" \
|
|
|
|
< "$src" > "$dst"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Make wrapper scripts around clang and clang++. Also make symlinks
|
|
|
|
# cc and c++
|
|
|
|
mkClangWrapper() {
|
|
|
|
local dst=$1
|
|
|
|
local src=$2
|
|
|
|
|
|
|
|
if ! test -f "$src"; then
|
|
|
|
echo "$src does not exist (skipping)"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
clangProg="$src"
|
|
|
|
doSubstitute "$clangWrapper" "$dst"
|
|
|
|
chmod +x "$dst"
|
|
|
|
}
|
|
|
|
|
|
|
|
if mkClangWrapper $out/bin/clang $clangPath/clang
|
|
|
|
then
|
|
|
|
ln -sv clang $out/bin/cc
|
|
|
|
fi
|
|
|
|
|
|
|
|
if mkClangWrapper $out/bin/clang++ $clangPath/clang++
|
|
|
|
then
|
|
|
|
ln -sv clang++ $out/bin/c++
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Create a symlink to as (the assembler). This is useful when a
|
|
|
|
# clang-wrapper is installed in a user environment, as it ensures that
|
|
|
|
# the right assembler is called.
|
|
|
|
ln -s $ldPath/as $out/bin/as
|
|
|
|
|
|
|
|
|
|
|
|
# Make a wrapper around the linker.
|
|
|
|
doSubstitute "$ldWrapper" "$out/bin/ld"
|
|
|
|
chmod +x "$out/bin/ld"
|
|
|
|
|
|
|
|
|
|
|
|
# Emit a setup hook. Also store the path to the original Clang and
|
|
|
|
# libc.
|
|
|
|
test -n "$clang" && echo $clang > $out/nix-support/orig-clang
|
|
|
|
test -n "$libc" && echo $libc > $out/nix-support/orig-libc
|
|
|
|
|
|
|
|
doSubstitute "$addFlags" "$out/nix-support/add-flags.sh"
|
|
|
|
|
|
|
|
doSubstitute "$setupHook" "$out/nix-support/setup-hook"
|
|
|
|
|
|
|
|
cp -p $utils $out/nix-support/utils.sh
|
|
|
|
|
|
|
|
|
|
|
|
# Propagate the wrapped clang so that if you install the wrapper, you get
|
|
|
|
# llvm tools, the manpages, etc. as well (including for binutils
|
|
|
|
# and Glibc).
|
|
|
|
if test -z "$nativeTools"; then
|
|
|
|
echo $clang $binutils $libc > $out/nix-support/propagated-user-env-packages
|
|
|
|
fi
|