2017-02-19 20:33:47 +00:00
|
|
|
{ stdenv, fetch, cmake, libxml2, libedit, llvm, version, release_version, clang-tools-extra_src, python }:
|
2017-02-18 19:53:46 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
|
|
|
|
self = stdenv.mkDerivation {
|
|
|
|
name = "clang-${version}";
|
|
|
|
|
|
|
|
unpackPhase = ''
|
2017-03-13 19:54:39 +00:00
|
|
|
unpackFile ${fetch "cfe" "12n99m60aa680cir3ql56s1jsv6lp61hq4w9rabf4c6vpn7gi9ff"}
|
2017-02-18 19:53:46 +00:00
|
|
|
mv cfe-${version}* clang
|
|
|
|
sourceRoot=$PWD/clang
|
|
|
|
unpackFile ${clang-tools-extra_src}
|
|
|
|
mv clang-tools-extra-* $sourceRoot/tools/extra
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ cmake libedit libxml2 llvm python ];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_CXX_FLAGS=-std=c++11"
|
|
|
|
] ++
|
|
|
|
# Maybe with compiler-rt this won't be needed?
|
|
|
|
(stdenv.lib.optional stdenv.isLinux "-DGCC_INSTALL_PREFIX=${gcc}") ++
|
|
|
|
(stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include");
|
|
|
|
|
|
|
|
patches = [ ./purity.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp
|
|
|
|
sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp
|
|
|
|
'';
|
|
|
|
|
2017-03-18 17:07:52 +00:00
|
|
|
outputs = [ "out" "python" ];
|
|
|
|
|
2017-02-18 19:53:46 +00:00
|
|
|
# Clang expects to find LLVMgold in its own prefix
|
|
|
|
# Clang expects to find sanitizer libraries in its own prefix
|
|
|
|
postInstall = ''
|
|
|
|
ln -sv ${llvm}/lib/LLVMgold.so $out/lib
|
2017-02-19 20:33:47 +00:00
|
|
|
ln -sv ${llvm}/lib/clang/${release_version}/lib $out/lib/clang/${release_version}/
|
2017-02-18 19:53:46 +00:00
|
|
|
ln -sv $out/bin/clang $out/bin/cpp
|
2017-03-18 17:07:52 +00:00
|
|
|
|
|
|
|
mkdir -p $python/bin $python/share/clang/
|
|
|
|
mv $out/bin/{git-clang-format,scan-view} $python/bin
|
|
|
|
if [ -e $out/bin/set-xcode-analyzer ]; then
|
|
|
|
mv $out/bin/set-xcode-analyzer $python/bin
|
|
|
|
fi
|
|
|
|
mv $out/share/clang/*.py $python/share/clang
|
|
|
|
|
|
|
|
rm $out/bin/c-index-test
|
2017-02-18 19:53:46 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both
|
|
|
|
isClang = true;
|
|
|
|
} // stdenv.lib.optionalAttrs stdenv.isLinux {
|
|
|
|
inherit gcc;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A c, c++, objective-c, and objective-c++ frontend for the llvm compiler";
|
|
|
|
homepage = http://llvm.org/;
|
|
|
|
license = stdenv.lib.licenses.ncsa;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in self
|