2018-09-18 20:19:58 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetch
|
2019-01-16 16:19:47 +00:00
|
|
|
, fetchpatch
|
2018-09-18 20:19:58 +01:00
|
|
|
, cmake
|
|
|
|
, python
|
|
|
|
, libffi
|
|
|
|
, libbfd
|
2018-09-21 01:53:59 +01:00
|
|
|
, libpfm
|
2018-09-18 20:19:58 +01:00
|
|
|
, libxml2
|
|
|
|
, ncurses
|
|
|
|
, version
|
|
|
|
, release_version
|
|
|
|
, zlib
|
2018-12-12 09:21:47 +00:00
|
|
|
, buildPackages
|
2018-09-18 20:19:58 +01:00
|
|
|
, debugVersion ? false
|
|
|
|
, enableManpages ? false
|
|
|
|
, enableSharedLibraries ? true
|
2018-09-21 01:53:59 +01:00
|
|
|
, enablePFM ? !stdenv.isDarwin
|
2018-09-18 20:19:58 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2018-12-12 09:21:47 +00:00
|
|
|
inherit (stdenv.lib) optional optionals optionalString;
|
|
|
|
|
2018-12-29 18:54:57 +00:00
|
|
|
src = fetch "llvm" "16s196wqzdw4pmri15hadzqgdi926zln3an2viwyq0kini6zr3d3";
|
2018-09-18 20:19:58 +01:00
|
|
|
|
|
|
|
# Used when creating a version-suffixed symlink of libLLVM.dylib
|
|
|
|
shortVersion = with stdenv.lib;
|
2018-09-21 01:42:44 +01:00
|
|
|
concatStringsSep "." (take 1 (splitString "." release_version));
|
2018-12-08 19:25:43 +00:00
|
|
|
|
2018-09-18 20:19:58 +01:00
|
|
|
in stdenv.mkDerivation (rec {
|
|
|
|
name = "llvm-${version}";
|
|
|
|
|
|
|
|
unpackPhase = ''
|
|
|
|
unpackFile ${src}
|
|
|
|
mv llvm-${version}* llvm
|
|
|
|
sourceRoot=$PWD/llvm
|
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = [ "out" "python" ]
|
2018-12-12 09:21:47 +00:00
|
|
|
++ optional enableSharedLibraries "lib";
|
2018-09-18 20:19:58 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake python ]
|
2018-12-12 09:21:47 +00:00
|
|
|
++ optional enableManpages python.pkgs.sphinx;
|
2018-09-18 20:19:58 +01:00
|
|
|
|
2018-09-21 01:53:59 +01:00
|
|
|
buildInputs = [ libxml2 libffi ]
|
2018-12-12 09:21:47 +00:00
|
|
|
++ optional enablePFM libpfm; # exegesis
|
2018-09-18 20:19:58 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ ncurses zlib ];
|
|
|
|
|
2019-01-16 16:19:47 +00:00
|
|
|
patches = [
|
|
|
|
# https://bugs.llvm.org/show_bug.cgi?id=39427
|
2019-01-31 19:44:40 +00:00
|
|
|
# https://github.com/NixOS/nixpkgs/issues/54370
|
2019-01-16 16:19:47 +00:00
|
|
|
(fetchpatch {
|
2019-01-31 19:44:40 +00:00
|
|
|
url = "https://github.com/llvm-mirror/llvm/commit/57567def148f387153a8149fb590bd39b1b006a1.patch";
|
|
|
|
sha256 = "1w1xg5pxpc6cals1nf5j5k4p6qi8lcrpvn0paxc86m415i79xmcg";
|
2019-01-16 16:19:47 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-12-12 09:21:47 +00:00
|
|
|
postPatch = optionalString stdenv.isDarwin ''
|
2018-09-18 20:19:58 +01:00
|
|
|
substituteInPlace cmake/modules/AddLLVM.cmake \
|
2018-12-15 18:14:19 +00:00
|
|
|
--replace 'set(_install_name_dir INSTALL_NAME_DIR "@rpath")' "set(_install_name_dir)" \
|
2018-09-18 20:19:58 +01:00
|
|
|
--replace 'set(_install_rpath "@loader_path/../lib" ''${extra_libdir})' ""
|
|
|
|
''
|
|
|
|
# Patch llvm-config to return correct library path based on --link-{shared,static}.
|
2018-12-12 09:21:47 +00:00
|
|
|
+ optionalString (enableSharedLibraries) ''
|
2018-09-18 20:19:58 +01:00
|
|
|
substitute '${./llvm-outputs.patch}' ./llvm-outputs.patch --subst-var lib
|
|
|
|
patch -p1 < ./llvm-outputs.patch
|
|
|
|
'' + ''
|
|
|
|
# FileSystem permissions tests fail with various special bits
|
|
|
|
substituteInPlace unittests/Support/CMakeLists.txt \
|
|
|
|
--replace "Path.cpp" ""
|
|
|
|
rm unittests/Support/Path.cpp
|
2018-12-12 09:21:47 +00:00
|
|
|
'' + optionalString stdenv.hostPlatform.isMusl ''
|
2018-09-18 20:19:58 +01:00
|
|
|
patch -p1 -i ${../TLI-musl.patch}
|
|
|
|
substituteInPlace unittests/Support/CMakeLists.txt \
|
|
|
|
--replace "add_subdirectory(DynamicLibrary)" ""
|
|
|
|
rm unittests/Support/DynamicLibrary/DynamicLibraryTest.cpp
|
2018-09-18 20:35:21 +01:00
|
|
|
'' + ''
|
|
|
|
patchShebangs test/BugPoint/compile-custom.ll.py
|
2018-09-18 20:19:58 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
# hacky fix: created binaries need to be run before installation
|
|
|
|
preBuild = ''
|
|
|
|
mkdir -p $out/
|
|
|
|
ln -sv $PWD/lib $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
cmakeFlags = with stdenv; [
|
|
|
|
"-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}"
|
|
|
|
"-DLLVM_INSTALL_UTILS=ON" # Needed by rustc
|
|
|
|
"-DLLVM_BUILD_TESTS=ON"
|
|
|
|
"-DLLVM_ENABLE_FFI=ON"
|
|
|
|
"-DLLVM_ENABLE_RTTI=ON"
|
|
|
|
"-DLLVM_HOST_TRIPLE=${stdenv.hostPlatform.config}"
|
2018-12-08 19:25:43 +00:00
|
|
|
"-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.targetPlatform.config}"
|
2018-12-12 09:21:47 +00:00
|
|
|
"-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly"
|
2018-09-18 20:19:58 +01:00
|
|
|
"-DLLVM_ENABLE_DUMP=ON"
|
2018-12-12 09:21:47 +00:00
|
|
|
] ++ optionals enableSharedLibraries [
|
2018-09-18 20:19:58 +01:00
|
|
|
"-DLLVM_LINK_LLVM_DYLIB=ON"
|
2018-12-12 09:21:47 +00:00
|
|
|
] ++ optionals enableManpages [
|
2018-09-18 20:19:58 +01:00
|
|
|
"-DLLVM_BUILD_DOCS=ON"
|
|
|
|
"-DLLVM_ENABLE_SPHINX=ON"
|
|
|
|
"-DSPHINX_OUTPUT_MAN=ON"
|
|
|
|
"-DSPHINX_OUTPUT_HTML=OFF"
|
|
|
|
"-DSPHINX_WARNINGS_AS_ERRORS=OFF"
|
2018-12-12 09:21:47 +00:00
|
|
|
] ++ optionals (!isDarwin) [
|
2018-09-18 20:19:58 +01:00
|
|
|
"-DLLVM_BINUTILS_INCDIR=${libbfd.dev}/include"
|
2018-12-12 09:21:47 +00:00
|
|
|
] ++ optionals (isDarwin) [
|
2018-09-18 20:19:58 +01:00
|
|
|
"-DLLVM_ENABLE_LIBCXX=ON"
|
|
|
|
"-DCAN_TARGET_i386=false"
|
2018-12-12 09:21:47 +00:00
|
|
|
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
"-DCMAKE_CROSSCOMPILING=True"
|
|
|
|
"-DLLVM_TABLEGEN=${buildPackages.llvm_7}/bin/llvm-tblgen"
|
|
|
|
];
|
2018-09-18 20:19:58 +01:00
|
|
|
|
|
|
|
postBuild = ''
|
|
|
|
rm -fR $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $python/share
|
|
|
|
mv $out/share/opt-viewer $python/share/opt-viewer
|
|
|
|
''
|
2018-12-12 09:21:47 +00:00
|
|
|
+ optionalString enableSharedLibraries ''
|
2018-09-18 20:19:58 +01:00
|
|
|
moveToOutput "lib/libLLVM-*" "$lib"
|
|
|
|
moveToOutput "lib/libLLVM${stdenv.hostPlatform.extensions.sharedLibrary}" "$lib"
|
|
|
|
substituteInPlace "$out/lib/cmake/llvm/LLVMExports-${if debugVersion then "debug" else "release"}.cmake" \
|
|
|
|
--replace "\''${_IMPORT_PREFIX}/lib/libLLVM-" "$lib/lib/libLLVM-"
|
|
|
|
''
|
2018-12-12 09:21:47 +00:00
|
|
|
+ optionalString (stdenv.isDarwin && enableSharedLibraries) ''
|
2018-09-18 20:19:58 +01:00
|
|
|
substituteInPlace "$out/lib/cmake/llvm/LLVMExports-${if debugVersion then "debug" else "release"}.cmake" \
|
|
|
|
--replace "\''${_IMPORT_PREFIX}/lib/libLLVM.dylib" "$lib/lib/libLLVM.dylib"
|
|
|
|
ln -s $lib/lib/libLLVM.dylib $lib/lib/libLLVM-${shortVersion}.dylib
|
|
|
|
ln -s $lib/lib/libLLVM.dylib $lib/lib/libLLVM-${release_version}.dylib
|
|
|
|
'';
|
|
|
|
|
2019-01-06 18:57:36 +00:00
|
|
|
doCheck = stdenv.isLinux && (!stdenv.isx86_32);
|
2018-09-18 20:19:58 +01:00
|
|
|
|
|
|
|
checkTarget = "check-all";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
passthru.src = src;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Collection of modular and reusable compiler and toolchain technologies";
|
|
|
|
homepage = http://llvm.org/;
|
|
|
|
license = stdenv.lib.licenses.ncsa;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ lovek323 raskin dtzWill ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
} // stdenv.lib.optionalAttrs enableManpages {
|
|
|
|
name = "llvm-manpages-${version}";
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
make docs-llvm-man
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
make -C docs install
|
|
|
|
'';
|
|
|
|
|
2018-09-18 20:45:39 +01:00
|
|
|
postPatch = null;
|
|
|
|
postInstall = null;
|
|
|
|
|
2018-09-18 20:19:58 +01:00
|
|
|
outputs = [ "out" ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta.description = "man pages for LLVM ${version}";
|
|
|
|
})
|