2021-04-01 09:27:57 +00:00
|
|
|
|
{ lowPrio, newScope, pkgs, lib, stdenv, cmake, gccForLibs
|
|
|
|
|
, libxml2, python3, isl, fetchurl, overrideCC, wrapCCWith, wrapBintoolsWith
|
|
|
|
|
, buildLlvmTools # tools, but from the previous stage, for cross
|
|
|
|
|
, targetLlvmLibraries # libraries, but from the next stage, for cross
|
2021-03-17 17:17:32 +00:00
|
|
|
|
, darwin
|
2021-04-01 09:27:57 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
let
|
2021-03-17 17:17:32 +00:00
|
|
|
|
release_version = "12.0.0";
|
2021-04-15 14:28:00 +00:00
|
|
|
|
candidate = ""; # empty or "rcN"
|
2021-04-01 09:27:57 +00:00
|
|
|
|
dash-candidate = lib.optionalString (candidate != "") "-${candidate}";
|
|
|
|
|
version = "${release_version}${dash-candidate}"; # differentiating these (variables) is important for RCs
|
|
|
|
|
targetConfig = stdenv.targetPlatform.config;
|
|
|
|
|
|
|
|
|
|
fetch = name: sha256: fetchurl {
|
|
|
|
|
url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-${version}/${name}-${release_version}${candidate}.src.tar.xz";
|
|
|
|
|
inherit sha256;
|
|
|
|
|
};
|
|
|
|
|
|
2021-04-15 14:28:00 +00:00
|
|
|
|
clang-tools-extra_src = fetch "clang-tools-extra" "0p3dzr0qa7mar83y66xa5m5apynf6ia0lsdsq6axwnm64ysy0hdd";
|
2021-04-01 09:27:57 +00:00
|
|
|
|
|
2021-04-15 16:41:38 +00:00
|
|
|
|
llvm_meta = {
|
|
|
|
|
license = lib.licenses.ncsa;
|
|
|
|
|
maintainers = with lib.maintainers; [ lovek323 raskin dtzWill primeos ];
|
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
|
};
|
|
|
|
|
|
2021-04-01 09:27:57 +00:00
|
|
|
|
tools = lib.makeExtensible (tools: let
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
|
callPackage = newScope (tools // { inherit stdenv cmake libxml2 python3 isl release_version version fetch buildLlvmTools; });
|
2021-05-07 16:39:19 +00:00
|
|
|
|
mkExtraBuildCommands0 = cc: ''
|
2021-04-01 09:27:57 +00:00
|
|
|
|
rsrc="$out/resource-root"
|
|
|
|
|
mkdir "$rsrc"
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
|
ln -s "${cc.lib}/lib/clang/${release_version}/include" "$rsrc"
|
2021-05-07 16:39:19 +00:00
|
|
|
|
echo "-resource-dir=$rsrc" >> $out/nix-support/cc-cflags
|
|
|
|
|
'';
|
|
|
|
|
mkExtraBuildCommands = cc: mkExtraBuildCommands0 cc + ''
|
2021-04-01 09:27:57 +00:00
|
|
|
|
ln -s "${targetLlvmLibraries.compiler-rt.out}/lib" "$rsrc/lib"
|
|
|
|
|
ln -s "${targetLlvmLibraries.compiler-rt.out}/share" "$rsrc/share"
|
|
|
|
|
'';
|
2021-04-15 16:41:38 +00:00
|
|
|
|
|
2021-04-01 09:27:57 +00:00
|
|
|
|
in {
|
|
|
|
|
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
|
libllvm = callPackage ./llvm {
|
2021-04-15 16:41:38 +00:00
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
};
|
2021-04-01 09:27:57 +00:00
|
|
|
|
|
2021-05-11 08:35:41 +00:00
|
|
|
|
# `llvm` historically had the binaries. When choosing an output explicitly,
|
|
|
|
|
# we need to reintroduce `outputUnspecified` to get the expected behavior e.g. of lib.get*
|
|
|
|
|
llvm = tools.libllvm.out // { outputUnspecified = true; };
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
|
|
|
|
|
|
libclang = callPackage ./clang {
|
2021-04-15 16:41:38 +00:00
|
|
|
|
inherit clang-tools-extra_src llvm_meta;
|
2021-04-01 09:27:57 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-05-11 08:35:41 +00:00
|
|
|
|
clang-unwrapped = tools.libclang.out // { outputUnspecified = true; };
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
|
|
2021-04-01 09:27:57 +00:00
|
|
|
|
# disabled until recommonmark supports sphinx 3
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
|
#Llvm-manpages = lowPrio (tools.libllvm.override {
|
2021-04-01 09:27:57 +00:00
|
|
|
|
# enableManpages = true;
|
|
|
|
|
# python3 = pkgs.python3; # don't use python-boot
|
|
|
|
|
#});
|
|
|
|
|
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
|
clang-manpages = lowPrio (tools.libclang.override {
|
2021-04-01 09:27:57 +00:00
|
|
|
|
enableManpages = true;
|
|
|
|
|
python3 = pkgs.python3; # don't use python-boot
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
# disabled until recommonmark supports sphinx 3
|
|
|
|
|
# lldb-manpages = lowPrio (tools.lldb.override {
|
|
|
|
|
# enableManpages = true;
|
|
|
|
|
# python3 = pkgs.python3; # don't use python-boot
|
|
|
|
|
# });
|
|
|
|
|
|
|
|
|
|
clang = if stdenv.cc.isGNU then tools.libstdcxxClang else tools.libcxxClang;
|
|
|
|
|
|
|
|
|
|
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 = [
|
|
|
|
|
targetLlvmLibraries.libcxxabi
|
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
];
|
|
|
|
|
extraBuildCommands = mkExtraBuildCommands cc;
|
|
|
|
|
};
|
|
|
|
|
|
2021-04-15 10:44:05 +00:00
|
|
|
|
lld = callPackage ./lld {
|
2021-04-15 16:41:38 +00:00
|
|
|
|
inherit llvm_meta;
|
2021-03-17 17:17:32 +00:00
|
|
|
|
libunwind = libraries.libunwind;
|
|
|
|
|
};
|
2021-04-01 09:27:57 +00:00
|
|
|
|
|
2021-04-15 10:44:05 +00:00
|
|
|
|
lldb = callPackage ./lldb {
|
2021-04-15 16:41:38 +00:00
|
|
|
|
inherit llvm_meta;
|
2021-03-17 17:17:32 +00:00
|
|
|
|
inherit (darwin) libobjc bootstrap_cmds;
|
|
|
|
|
inherit (darwin.apple_sdk.libs) xpc;
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) Foundation Carbon Cocoa;
|
|
|
|
|
};
|
2021-04-01 09:27:57 +00:00
|
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
2021-04-24 09:40:28 +00:00
|
|
|
|
bintools = callPackage ./bintools {};
|
2021-04-01 09:27:57 +00:00
|
|
|
|
|
|
|
|
|
lldClang = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = targetLlvmLibraries.libcxx;
|
|
|
|
|
bintools = wrapBintoolsWith {
|
|
|
|
|
inherit (tools) bintools;
|
|
|
|
|
};
|
|
|
|
|
extraPackages = [
|
|
|
|
|
targetLlvmLibraries.libcxxabi
|
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
] ++ lib.optionals (!stdenv.targetPlatform.isWasm) [
|
|
|
|
|
targetLlvmLibraries.libunwind
|
|
|
|
|
];
|
|
|
|
|
extraBuildCommands = ''
|
|
|
|
|
echo "-rtlib=compiler-rt -Wno-unused-command-line-argument" >> $out/nix-support/cc-cflags
|
|
|
|
|
echo "-B${targetLlvmLibraries.compiler-rt}/lib" >> $out/nix-support/cc-cflags
|
|
|
|
|
'' + lib.optionalString (!stdenv.targetPlatform.isWasm) ''
|
|
|
|
|
echo "--unwindlib=libunwind" >> $out/nix-support/cc-cflags
|
2021-05-06 04:15:34 +00:00
|
|
|
|
'' + lib.optionalString (stdenv.targetPlatform.isAndroid && stdenv.targetPlatform.useLLVM) ''
|
|
|
|
|
echo "-lunwind" >> $out/nix-support/cc-ldflags
|
2021-04-01 09:27:57 +00:00
|
|
|
|
'' + lib.optionalString stdenv.targetPlatform.isWasm ''
|
|
|
|
|
echo "-fno-exceptions" >> $out/nix-support/cc-cflags
|
|
|
|
|
'' + mkExtraBuildCommands cc;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
lldClangNoLibcxx = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
|
|
|
|
bintools = wrapBintoolsWith {
|
|
|
|
|
inherit (tools) bintools;
|
|
|
|
|
};
|
|
|
|
|
extraPackages = [
|
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
];
|
|
|
|
|
extraBuildCommands = ''
|
|
|
|
|
echo "-rtlib=compiler-rt" >> $out/nix-support/cc-cflags
|
|
|
|
|
echo "-B${targetLlvmLibraries.compiler-rt}/lib" >> $out/nix-support/cc-cflags
|
|
|
|
|
echo "-nostdlib++" >> $out/nix-support/cc-cflags
|
|
|
|
|
'' + mkExtraBuildCommands cc;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
lldClangNoLibc = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
|
|
|
|
bintools = wrapBintoolsWith {
|
|
|
|
|
inherit (tools) bintools;
|
|
|
|
|
libc = null;
|
|
|
|
|
};
|
|
|
|
|
extraPackages = [
|
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
];
|
|
|
|
|
extraBuildCommands = ''
|
|
|
|
|
echo "-rtlib=compiler-rt" >> $out/nix-support/cc-cflags
|
|
|
|
|
echo "-B${targetLlvmLibraries.compiler-rt}/lib" >> $out/nix-support/cc-cflags
|
|
|
|
|
'' + mkExtraBuildCommands cc;
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-07 16:39:19 +00:00
|
|
|
|
lldClangNoCompilerRt = wrapCCWith rec {
|
2021-04-01 09:27:57 +00:00
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
|
|
|
|
bintools = wrapBintoolsWith {
|
|
|
|
|
inherit (tools) bintools;
|
|
|
|
|
libc = null;
|
|
|
|
|
};
|
|
|
|
|
extraPackages = [ ];
|
|
|
|
|
extraBuildCommands = ''
|
|
|
|
|
echo "-nostartfiles" >> $out/nix-support/cc-cflags
|
2021-05-07 16:39:19 +00:00
|
|
|
|
'' + mkExtraBuildCommands0 cc;
|
2021-04-01 09:27:57 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-05-06 04:15:34 +00:00
|
|
|
|
lldClangNoCompilerRtWithLibc = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
|
|
|
|
bintools = wrapBintoolsWith {
|
|
|
|
|
inherit (tools) bintools;
|
|
|
|
|
};
|
|
|
|
|
extraPackages = [ ];
|
|
|
|
|
extraBuildCommands = mkExtraBuildCommands0 cc;
|
|
|
|
|
};
|
|
|
|
|
|
2021-04-01 09:27:57 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
libraries = lib.makeExtensible (libraries: let
|
|
|
|
|
callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv cmake libxml2 python3 isl release_version version fetch; });
|
|
|
|
|
in {
|
|
|
|
|
|
2021-05-06 04:15:34 +00:00
|
|
|
|
compiler-rt-libc = callPackage ./compiler-rt ({ inherit llvm_meta; } //
|
|
|
|
|
(lib.optionalAttrs (stdenv.hostPlatform.useLLVM or false) {
|
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.lldClangNoCompilerRtWithLibc;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
compiler-rt-no-libc = callPackage ./compiler-rt ({ inherit llvm_meta; } //
|
2021-04-01 09:27:57 +00:00
|
|
|
|
(lib.optionalAttrs (stdenv.hostPlatform.useLLVM or false) {
|
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.lldClangNoCompilerRt;
|
|
|
|
|
}));
|
|
|
|
|
|
2021-05-06 04:15:34 +00:00
|
|
|
|
# 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;
|
|
|
|
|
|
2021-04-01 09:27:57 +00:00
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.clang;
|
|
|
|
|
|
|
|
|
|
libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang;
|
|
|
|
|
|
2021-04-24 09:31:11 +00:00
|
|
|
|
libcxx = callPackage ./libcxx ({ inherit llvm_meta; } //
|
2021-04-01 09:27:57 +00:00
|
|
|
|
(lib.optionalAttrs (stdenv.hostPlatform.useLLVM or false) {
|
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.lldClangNoLibcxx;
|
|
|
|
|
}));
|
|
|
|
|
|
2021-04-24 09:31:11 +00:00
|
|
|
|
libcxxabi = callPackage ./libcxxabi ({ inherit llvm_meta; } //
|
2021-04-01 09:27:57 +00:00
|
|
|
|
(lib.optionalAttrs (stdenv.hostPlatform.useLLVM or false) {
|
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.lldClangNoLibcxx;
|
|
|
|
|
libunwind = libraries.libunwind;
|
|
|
|
|
}));
|
|
|
|
|
|
2021-04-24 09:40:28 +00:00
|
|
|
|
openmp = callPackage ./openmp { inherit llvm_meta; };
|
2021-04-01 09:27:57 +00:00
|
|
|
|
|
2021-04-15 16:41:38 +00:00
|
|
|
|
libunwind = callPackage ./libunwind ({ inherit llvm_meta; } //
|
2021-04-01 09:27:57 +00:00
|
|
|
|
(lib.optionalAttrs (stdenv.hostPlatform.useLLVM or false) {
|
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.lldClangNoLibcxx;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
in { inherit tools libraries; } // libraries // tools
|