2023-03-15 16:39:30 +00:00
|
|
|
|
{ lowPrio, newScope, pkgs, lib, stdenv, cmake, ninja
|
2021-06-04 09:07:49 +00:00
|
|
|
|
, gccForLibs, preLibcCrossHeaders
|
2023-03-27 19:17:25 +00:00
|
|
|
|
, libxml2, python3, fetchFromGitHub, overrideCC, wrapCCWith, wrapBintoolsWith
|
2021-06-04 09:07:49 +00:00
|
|
|
|
, buildLlvmTools # tools, but from the previous stage, for cross
|
|
|
|
|
, targetLlvmLibraries # libraries, but from the next stage, for cross
|
2023-04-29 16:46:19 +00:00
|
|
|
|
, targetLlvm
|
2021-06-04 09:07:49 +00:00
|
|
|
|
# This is the default binutils, but with *this* version of LLD rather
|
2023-05-24 13:37:59 +00:00
|
|
|
|
# than the default LLVM version's, if LLD is the choice. We use these for
|
2021-06-04 09:07:49 +00:00
|
|
|
|
# the `useLLVM` bootstrapping below.
|
|
|
|
|
, bootBintoolsNoLibc ?
|
|
|
|
|
if stdenv.targetPlatform.linker == "lld"
|
|
|
|
|
then null
|
|
|
|
|
else pkgs.bintoolsNoLibc
|
|
|
|
|
, bootBintools ?
|
|
|
|
|
if stdenv.targetPlatform.linker == "lld"
|
|
|
|
|
then null
|
|
|
|
|
else pkgs.bintools
|
|
|
|
|
, darwin
|
2023-04-29 16:46:19 +00:00
|
|
|
|
# LLVM release information; specify one of these but not both:
|
|
|
|
|
, gitRelease ? null
|
|
|
|
|
# i.e.:
|
|
|
|
|
# {
|
|
|
|
|
# version = /* i.e. "15.0.0" */;
|
|
|
|
|
# rev = /* commit SHA */;
|
|
|
|
|
# rev-version = /* human readable version; i.e. "unstable-2022-26-07" */;
|
|
|
|
|
# sha256 = /* checksum for this release, can omit if specifying your own `monorepoSrc` */;
|
|
|
|
|
# }
|
|
|
|
|
, officialRelease ? { version = "15.0.7"; sha256 = "sha256-wjuZQyXQ/jsmvy6y1aksCcEDXGBjuhpgngF3XQJ/T4s="; }
|
|
|
|
|
# i.e.:
|
|
|
|
|
# {
|
|
|
|
|
# version = /* i.e. "15.0.0" */;
|
|
|
|
|
# candidate = /* optional; if specified, should be: "rcN" */
|
|
|
|
|
# sha256 = /* checksum for this release, can omit if specifying your own `monorepoSrc` */;
|
|
|
|
|
# }
|
|
|
|
|
# By default, we'll try to fetch a release from `github:llvm/llvm-project`
|
|
|
|
|
# corresponding to the `gitRelease` or `officialRelease` specified.
|
|
|
|
|
#
|
|
|
|
|
# You can provide your own LLVM source by specifying this arg but then it's up
|
|
|
|
|
# to you to make sure that the LLVM repo given matches the release configuration
|
|
|
|
|
# specified.
|
|
|
|
|
, monorepoSrc ? null
|
2021-06-04 09:07:49 +00:00
|
|
|
|
}:
|
2023-04-29 16:46:19 +00:00
|
|
|
|
assert let
|
|
|
|
|
int = a: if a then 1 else 0;
|
|
|
|
|
xor = a: b: ((builtins.bitXor (int a) (int b)) == 1);
|
|
|
|
|
in
|
|
|
|
|
lib.assertMsg
|
|
|
|
|
(xor
|
|
|
|
|
(gitRelease != null)
|
|
|
|
|
(officialRelease != null))
|
|
|
|
|
("must specify `gitRelease` or `officialRelease`" +
|
|
|
|
|
(lib.optionalString (gitRelease != null) " — not both"));
|
2021-06-04 09:07:49 +00:00
|
|
|
|
let
|
2023-04-29 16:46:19 +00:00
|
|
|
|
monorepoSrc' = monorepoSrc;
|
|
|
|
|
in let
|
|
|
|
|
releaseInfo = if gitRelease != null then rec {
|
|
|
|
|
original = gitRelease;
|
|
|
|
|
release_version = original.version;
|
|
|
|
|
version = gitRelease.rev-version;
|
|
|
|
|
} else rec {
|
|
|
|
|
original = officialRelease;
|
|
|
|
|
release_version = original.version;
|
|
|
|
|
version = if original ? candidate then
|
|
|
|
|
"${release_version}-${original.candidate}"
|
|
|
|
|
else
|
|
|
|
|
release_version;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
monorepoSrc = if monorepoSrc' != null then
|
|
|
|
|
monorepoSrc'
|
|
|
|
|
else let
|
|
|
|
|
sha256 = releaseInfo.original.sha256;
|
|
|
|
|
rev = if gitRelease != null then
|
|
|
|
|
gitRelease.rev
|
|
|
|
|
else
|
|
|
|
|
"llvmorg-${releaseInfo.version}";
|
|
|
|
|
in fetchFromGitHub {
|
2021-06-04 09:07:49 +00:00
|
|
|
|
owner = "llvm";
|
|
|
|
|
repo = "llvm-project";
|
2023-04-29 16:46:19 +00:00
|
|
|
|
inherit rev sha256;
|
2021-06-04 09:07:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
|
inherit (releaseInfo) release_version version;
|
|
|
|
|
|
2021-06-04 09:07:49 +00:00
|
|
|
|
llvm_meta = {
|
|
|
|
|
license = lib.licenses.ncsa;
|
2023-02-02 18:25:31 +00:00
|
|
|
|
maintainers = lib.teams.llvm.members;
|
2023-03-15 16:39:30 +00:00
|
|
|
|
|
|
|
|
|
# See llvm/cmake/config-ix.cmake.
|
|
|
|
|
platforms =
|
|
|
|
|
lib.platforms.aarch64 ++
|
|
|
|
|
lib.platforms.arm ++
|
|
|
|
|
lib.platforms.m68k ++
|
|
|
|
|
lib.platforms.mips ++
|
|
|
|
|
lib.platforms.power ++
|
|
|
|
|
lib.platforms.riscv ++
|
|
|
|
|
lib.platforms.s390x ++
|
|
|
|
|
lib.platforms.wasi ++
|
|
|
|
|
lib.platforms.x86;
|
2021-06-04 09:07:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
tools = lib.makeExtensible (tools: let
|
2023-03-27 19:17:25 +00:00
|
|
|
|
callPackage = newScope (tools // { inherit stdenv cmake ninja libxml2 python3 release_version version monorepoSrc buildLlvmTools; });
|
2021-06-04 09:07:49 +00:00
|
|
|
|
mkExtraBuildCommands0 = cc: ''
|
|
|
|
|
rsrc="$out/resource-root"
|
|
|
|
|
mkdir "$rsrc"
|
|
|
|
|
ln -s "${cc.lib}/lib/clang/${release_version}/include" "$rsrc"
|
|
|
|
|
echo "-resource-dir=$rsrc" >> $out/nix-support/cc-cflags
|
|
|
|
|
'';
|
|
|
|
|
mkExtraBuildCommands = cc: mkExtraBuildCommands0 cc + ''
|
|
|
|
|
ln -s "${targetLlvmLibraries.compiler-rt.out}/lib" "$rsrc/lib"
|
|
|
|
|
ln -s "${targetLlvmLibraries.compiler-rt.out}/share" "$rsrc/share"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
bintoolsNoLibc' =
|
|
|
|
|
if bootBintoolsNoLibc == null
|
|
|
|
|
then tools.bintoolsNoLibc
|
|
|
|
|
else bootBintoolsNoLibc;
|
|
|
|
|
bintools' =
|
|
|
|
|
if bootBintools == null
|
|
|
|
|
then tools.bintools
|
|
|
|
|
else bootBintools;
|
|
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
|
|
libllvm = callPackage ./llvm {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# `llvm` historically had the binaries. When choosing an output explicitly,
|
2021-10-28 06:52:43 +00:00
|
|
|
|
# we need to reintroduce `outputSpecified` to get the expected behavior e.g. of lib.get*
|
2023-03-04 12:14:45 +00:00
|
|
|
|
llvm = tools.libllvm;
|
2021-06-04 09:07:49 +00:00
|
|
|
|
|
|
|
|
|
libclang = callPackage ./clang {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
};
|
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
|
clang-unwrapped = tools.libclang;
|
2021-06-04 09:07:49 +00:00
|
|
|
|
|
2021-08-05 21:33:18 +00:00
|
|
|
|
llvm-manpages = lowPrio (tools.libllvm.override {
|
|
|
|
|
enableManpages = true;
|
|
|
|
|
python3 = pkgs.python3; # don't use python-boot
|
|
|
|
|
});
|
2021-06-04 09:07:49 +00:00
|
|
|
|
|
|
|
|
|
clang-manpages = lowPrio (tools.libclang.override {
|
|
|
|
|
enableManpages = true;
|
|
|
|
|
python3 = pkgs.python3; # don't use python-boot
|
|
|
|
|
});
|
|
|
|
|
|
2021-08-05 21:33:18 +00:00
|
|
|
|
# TODO: lldb/docs/index.rst:155:toctree contains reference to nonexisting document 'design/structureddataplugins'
|
2021-06-04 09:07:49 +00:00
|
|
|
|
# lldb-manpages = lowPrio (tools.lldb.override {
|
|
|
|
|
# enableManpages = true;
|
|
|
|
|
# python3 = pkgs.python3; # don't use python-boot
|
|
|
|
|
# });
|
|
|
|
|
|
2022-01-26 04:04:25 +00:00
|
|
|
|
# pick clang appropriate for package set we are targeting
|
|
|
|
|
clang =
|
2023-05-24 13:37:59 +00:00
|
|
|
|
/**/ if stdenv.targetPlatform.libc == null then tools.clangNoLibc
|
|
|
|
|
else if stdenv.targetPlatform.useLLVM or false then tools.clangUseLLVM
|
2022-01-26 04:04:25 +00:00
|
|
|
|
else if (pkgs.targetPackages.stdenv or stdenv).cc.isGNU then tools.libstdcxxClang
|
|
|
|
|
else tools.libcxxClang;
|
2021-06-04 09:07:49 +00:00
|
|
|
|
|
|
|
|
|
libstdcxxClang = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
# libstdcxx is taken from gcc in an ad-hoc way in cc-wrapper.
|
|
|
|
|
libcxx = null;
|
|
|
|
|
extraPackages = [
|
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
];
|
|
|
|
|
extraBuildCommands = mkExtraBuildCommands cc;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
libcxxClang = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = targetLlvmLibraries.libcxx;
|
|
|
|
|
extraPackages = [
|
2023-02-02 18:25:31 +00:00
|
|
|
|
libcxx.cxxabi
|
2021-06-04 09:07:49 +00:00
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
];
|
|
|
|
|
extraBuildCommands = mkExtraBuildCommands cc;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
lld = callPackage ./lld {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
lldb = callPackage ./lldb {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
inherit (darwin) libobjc bootstrap_cmds;
|
|
|
|
|
inherit (darwin.apple_sdk.libs) xpc;
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) Foundation Carbon Cocoa;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Below, is the LLVM bootstrapping logic. It handles building a
|
|
|
|
|
# fully LLVM toolchain from scratch. No GCC toolchain should be
|
|
|
|
|
# pulled in. As a consequence, it is very quick to build different
|
|
|
|
|
# targets provided by LLVM and we can also build for what GCC
|
|
|
|
|
# doesn’t support like LLVM. Probably we should move to some other
|
|
|
|
|
# file.
|
|
|
|
|
|
|
|
|
|
bintools-unwrapped = callPackage ./bintools {};
|
|
|
|
|
|
|
|
|
|
bintoolsNoLibc = wrapBintoolsWith {
|
|
|
|
|
bintools = tools.bintools-unwrapped;
|
|
|
|
|
libc = preLibcCrossHeaders;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
bintools = wrapBintoolsWith {
|
|
|
|
|
bintools = tools.bintools-unwrapped;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
clangUseLLVM = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = targetLlvmLibraries.libcxx;
|
|
|
|
|
bintools = bintools';
|
|
|
|
|
extraPackages = [
|
2023-02-02 18:25:31 +00:00
|
|
|
|
libcxx.cxxabi
|
2021-06-04 09:07:49 +00:00
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
] ++ lib.optionals (!stdenv.targetPlatform.isWasm) [
|
|
|
|
|
targetLlvmLibraries.libunwind
|
|
|
|
|
];
|
2022-08-21 13:32:41 +00:00
|
|
|
|
extraBuildCommands = mkExtraBuildCommands cc;
|
|
|
|
|
nixSupport.cc-cflags =
|
|
|
|
|
[ "-rtlib=compiler-rt"
|
|
|
|
|
"-Wno-unused-command-line-argument"
|
|
|
|
|
"-B${targetLlvmLibraries.compiler-rt}/lib"
|
|
|
|
|
]
|
|
|
|
|
++ lib.optional (!stdenv.targetPlatform.isWasm) "--unwindlib=libunwind"
|
|
|
|
|
++ lib.optional
|
2023-02-02 18:25:31 +00:00
|
|
|
|
(!stdenv.targetPlatform.isWasm && stdenv.targetPlatform.useLLVM or false)
|
2022-08-21 13:32:41 +00:00
|
|
|
|
"-lunwind"
|
|
|
|
|
++ lib.optional stdenv.targetPlatform.isWasm "-fno-exceptions";
|
2021-06-04 09:07:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
clangNoLibcxx = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
|
|
|
|
bintools = bintools';
|
|
|
|
|
extraPackages = [
|
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
];
|
2022-08-21 13:32:41 +00:00
|
|
|
|
extraBuildCommands = mkExtraBuildCommands cc;
|
|
|
|
|
nixSupport.cc-cflags = [
|
|
|
|
|
"-rtlib=compiler-rt"
|
|
|
|
|
"-B${targetLlvmLibraries.compiler-rt}/lib"
|
|
|
|
|
"-nostdlib++"
|
|
|
|
|
];
|
2021-06-04 09:07:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
clangNoLibc = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
|
|
|
|
bintools = bintoolsNoLibc';
|
|
|
|
|
extraPackages = [
|
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
];
|
2022-08-21 13:32:41 +00:00
|
|
|
|
extraBuildCommands = mkExtraBuildCommands cc;
|
|
|
|
|
nixSupport.cc-cflags = [
|
|
|
|
|
"-rtlib=compiler-rt"
|
|
|
|
|
"-B${targetLlvmLibraries.compiler-rt}/lib"
|
|
|
|
|
];
|
2021-06-04 09:07:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
clangNoCompilerRt = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
|
|
|
|
bintools = bintoolsNoLibc';
|
|
|
|
|
extraPackages = [ ];
|
2022-08-21 13:32:41 +00:00
|
|
|
|
extraBuildCommands = mkExtraBuildCommands0 cc;
|
|
|
|
|
nixSupport.cc-cflags = [ "-nostartfiles" ];
|
2021-06-04 09:07:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
clangNoCompilerRtWithLibc = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
|
|
|
|
bintools = bintools';
|
|
|
|
|
extraPackages = [ ];
|
|
|
|
|
extraBuildCommands = mkExtraBuildCommands0 cc;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
libraries = lib.makeExtensible (libraries: let
|
2023-03-27 19:17:25 +00:00
|
|
|
|
callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv cmake ninja libxml2 python3 release_version version monorepoSrc; });
|
2021-06-04 09:07:49 +00:00
|
|
|
|
in {
|
|
|
|
|
|
|
|
|
|
compiler-rt-libc = callPackage ./compiler-rt {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
|
|
|
|
then overrideCC stdenv buildLlvmTools.clangNoCompilerRtWithLibc
|
|
|
|
|
else stdenv;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
compiler-rt-no-libc = callPackage ./compiler-rt {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
|
|
|
|
then overrideCC stdenv buildLlvmTools.clangNoCompilerRt
|
|
|
|
|
else stdenv;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# N.B. condition is safe because without useLLVM both are the same.
|
|
|
|
|
compiler-rt = if stdenv.hostPlatform.isAndroid
|
|
|
|
|
then libraries.compiler-rt-libc
|
|
|
|
|
else libraries.compiler-rt-no-libc;
|
|
|
|
|
|
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.clang;
|
|
|
|
|
|
|
|
|
|
libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang;
|
|
|
|
|
|
2021-12-26 17:43:05 +00:00
|
|
|
|
libcxxabi = let
|
2023-03-27 19:17:25 +00:00
|
|
|
|
# CMake will "require" a compiler capable of compiling C++ programs
|
|
|
|
|
# cxx-header's build does not actually use one so it doesn't really matter
|
|
|
|
|
# what stdenv we use here, as long as CMake is happy.
|
2021-12-26 17:43:05 +00:00
|
|
|
|
cxx-headers = callPackage ./libcxx {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
headersOnly = true;
|
|
|
|
|
};
|
2023-03-27 19:17:25 +00:00
|
|
|
|
|
|
|
|
|
# `libcxxabi` *doesn't* need a compiler with a working C++ stdlib but it
|
|
|
|
|
# *does* need a relatively modern C++ compiler (see:
|
|
|
|
|
# https://releases.llvm.org/15.0.0/projects/libcxx/docs/index.html#platform-and-compiler-support).
|
|
|
|
|
#
|
|
|
|
|
# So, we use the clang from this LLVM package set, like libc++
|
|
|
|
|
# "boostrapping builds" do:
|
|
|
|
|
# https://releases.llvm.org/15.0.0/projects/libcxx/docs/BuildingLibcxx.html#bootstrapping-build
|
|
|
|
|
#
|
|
|
|
|
# We cannot use `clangNoLibcxx` because that contains `compiler-rt` which,
|
|
|
|
|
# on macOS, depends on `libcxxabi`, thus forming a cycle.
|
|
|
|
|
stdenv_ = overrideCC stdenv buildLlvmTools.clangNoCompilerRtWithLibc;
|
2021-12-26 17:43:05 +00:00
|
|
|
|
in callPackage ./libcxxabi {
|
|
|
|
|
stdenv = stdenv_;
|
|
|
|
|
inherit llvm_meta cxx-headers;
|
2021-06-04 09:07:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-03-27 19:17:25 +00:00
|
|
|
|
# Like `libcxxabi` above, `libcxx` requires a fairly modern C++ compiler,
|
|
|
|
|
# so: we use the clang from this LLVM package set instead of the regular
|
|
|
|
|
# stdenv's compiler.
|
|
|
|
|
libcxx = callPackage ./libcxx {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.clangNoLibcxx;
|
|
|
|
|
};
|
|
|
|
|
|
2021-06-04 09:07:49 +00:00
|
|
|
|
libunwind = callPackage ./libunwind {
|
|
|
|
|
inherit llvm_meta;
|
2021-06-28 23:13:55 +00:00
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.clangNoLibcxx;
|
2021-06-04 09:07:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
openmp = callPackage ./openmp {
|
2023-04-29 16:46:19 +00:00
|
|
|
|
inherit llvm_meta targetLlvm;
|
2021-06-04 09:07:49 +00:00
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
|
in { inherit tools libraries release_version; } // libraries // tools
|