2021-05-11 20:20:15 +01:00
|
|
|
|
{ lowPrio, newScope, pkgs, lib, stdenv, cmake
|
|
|
|
|
, gccForLibs, preLibcCrossHeaders
|
2020-01-12 20:22:29 +00:00
|
|
|
|
, libxml2, python3, isl, fetchurl, overrideCC, wrapCCWith, wrapBintoolsWith
|
2019-09-19 19:19:41 +01:00
|
|
|
|
, buildLlvmTools # tools, but from the previous stage, for cross
|
|
|
|
|
, targetLlvmLibraries # libraries, but from the next stage, for cross
|
2021-05-01 04:03:19 +01:00
|
|
|
|
# This is the default binutils, but with *this* version of LLD rather
|
|
|
|
|
# than the default LLVM verion's, if LLD is the choice. We use these for
|
|
|
|
|
# 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
|
2019-09-19 19:19:41 +01:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
let
|
2019-12-31 20:53:24 +00:00
|
|
|
|
release_version = "9.0.1";
|
2019-09-19 19:19:41 +01:00
|
|
|
|
version = release_version; # differentiating these is important for rc's
|
2020-04-07 01:46:15 +01:00
|
|
|
|
targetConfig = stdenv.targetPlatform.config;
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
|
|
|
|
fetch = name: sha256: fetchurl {
|
2019-12-31 20:53:24 +00:00
|
|
|
|
url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-${release_version}/${name}-${version}.src.tar.xz";
|
2019-09-19 19:19:41 +01:00
|
|
|
|
inherit sha256;
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-31 20:53:24 +00:00
|
|
|
|
clang-tools-extra_src = fetch "clang-tools-extra" "01vgzd4k1q93nfs8gyl83mjlc4x0qsgfqw32lacbjzdxg0mdfvxj";
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
2021-05-11 22:12:04 +01:00
|
|
|
|
llvm_meta = {
|
|
|
|
|
license = lib.licenses.ncsa;
|
|
|
|
|
maintainers = with lib.maintainers; [ lovek323 raskin dtzWill primeos ];
|
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-22 11:25:31 +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 09:23:57 +01:00
|
|
|
|
callPackage = newScope (tools // { inherit stdenv cmake libxml2 python3 isl release_version version fetch buildLlvmTools; });
|
2021-05-07 17:39:19 +01:00
|
|
|
|
mkExtraBuildCommands0 = cc: ''
|
2019-09-19 19:19:41 +01: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 09:23:57 +01:00
|
|
|
|
ln -s "${cc.lib}/lib/clang/${release_version}/include" "$rsrc"
|
2019-09-19 19:19:41 +01:00
|
|
|
|
echo "-resource-dir=$rsrc" >> $out/nix-support/cc-cflags
|
|
|
|
|
'';
|
2021-05-07 17:39:19 +01:00
|
|
|
|
mkExtraBuildCommands = cc: mkExtraBuildCommands0 cc + ''
|
|
|
|
|
ln -s "${targetLlvmLibraries.compiler-rt.out}/lib" "$rsrc/lib"
|
2021-05-15 13:54:22 +01:00
|
|
|
|
ln -s "${targetLlvmLibraries.compiler-rt.out}/share" "$rsrc/share"
|
2021-05-07 17:39:19 +01:00
|
|
|
|
'';
|
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 09:23:57 +01:00
|
|
|
|
|
2021-05-01 04:03:19 +01:00
|
|
|
|
bintoolsNoLibc' =
|
|
|
|
|
if bootBintoolsNoLibc == null
|
|
|
|
|
then tools.bintoolsNoLibc
|
|
|
|
|
else bootBintoolsNoLibc;
|
|
|
|
|
bintools' =
|
|
|
|
|
if bootBintools == null
|
|
|
|
|
then tools.bintools
|
|
|
|
|
else bootBintools;
|
|
|
|
|
|
2019-09-19 19:19:41 +01:00
|
|
|
|
in {
|
|
|
|
|
|
2021-05-11 22:12:04 +01:00
|
|
|
|
libllvm = callPackage ./llvm {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
};
|
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 09:23:57 +01:00
|
|
|
|
|
2021-05-11 09:35:41 +01:00
|
|
|
|
# `llvm` historically had the binaries. When choosing an output explicitly,
|
2021-10-15 15:30:58 +01:00
|
|
|
|
# we need to reintroduce `outputSpecified` to get the expected behavior e.g. of lib.get*
|
|
|
|
|
llvm = tools.libllvm.out // { outputSpecified = false; };
|
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 09:23:57 +01:00
|
|
|
|
|
2021-05-11 22:12:04 +01:00
|
|
|
|
libllvm-polly = callPackage ./llvm {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
enablePolly = true;
|
|
|
|
|
};
|
2021-03-24 01:40:33 +00:00
|
|
|
|
|
2021-10-15 15:30:58 +01:00
|
|
|
|
llvm-polly = tools.libllvm-polly.lib // { outputSpecified = false; };
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
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 09:23:57 +01:00
|
|
|
|
libclang = callPackage ./clang {
|
2021-05-11 22:12:04 +01:00
|
|
|
|
inherit clang-tools-extra_src llvm_meta;
|
2019-09-19 19:19:41 +01:00
|
|
|
|
};
|
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 09:23:57 +01:00
|
|
|
|
|
2021-10-15 15:30:58 +01:00
|
|
|
|
clang-unwrapped = tools.libclang.out // { outputSpecified = false; };
|
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 09:23:57 +01:00
|
|
|
|
|
2019-09-19 19:19:41 +01:00
|
|
|
|
clang-polly-unwrapped = callPackage ./clang {
|
2021-05-11 22:12:04 +01:00
|
|
|
|
inherit llvm_meta;
|
2019-09-19 19:19:41 +01:00
|
|
|
|
inherit clang-tools-extra_src;
|
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 09:23:57 +01:00
|
|
|
|
libllvm = tools.libllvm-polly;
|
2019-09-19 19:19:41 +01:00
|
|
|
|
enablePolly = true;
|
|
|
|
|
};
|
|
|
|
|
|
2020-07-28 08:21:50 +01: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 09:23:57 +01:00
|
|
|
|
#llvm-manpages = lowPrio (tools.libllvm.override {
|
2020-07-28 08:21:50 +01:00
|
|
|
|
# enableManpages = true;
|
|
|
|
|
# python3 = pkgs.python3; # don't use python-boot
|
|
|
|
|
#});
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
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 09:23:57 +01:00
|
|
|
|
clang-manpages = lowPrio (tools.libclang.override {
|
2019-09-19 19:19:41 +01:00
|
|
|
|
enableManpages = true;
|
2020-01-12 20:22:29 +00:00
|
|
|
|
python3 = pkgs.python3; # don't use python-boot
|
2019-09-19 19:19:41 +01:00
|
|
|
|
});
|
|
|
|
|
|
2022-01-07 01:30:01 +00:00
|
|
|
|
# pick clang appropriate for package set we are targeting
|
|
|
|
|
clang =
|
2022-01-07 11:58:21 +00:00
|
|
|
|
/**/ if stdenv.targetPlatform.useLLVM or false then tools.clangUseLLVM
|
|
|
|
|
else if (pkgs.targetPackages.stdenv or stdenv).cc.isGNU then tools.libstdcxxClang
|
2022-01-07 01:30:01 +00:00
|
|
|
|
else tools.libcxxClang;
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
|
|
|
|
libstdcxxClang = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
2020-06-17 21:33:56 +01:00
|
|
|
|
# libstdcxx is taken from gcc in an ad-hoc way in cc-wrapper.
|
|
|
|
|
libcxx = null;
|
2020-03-18 15:28:52 +00:00
|
|
|
|
extraPackages = [
|
2019-09-19 19:19:41 +01:00
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
];
|
2020-04-14 01:44:43 +01:00
|
|
|
|
extraBuildCommands = mkExtraBuildCommands cc;
|
2019-09-19 19:19:41 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
libcxxClang = wrapCCWith rec {
|
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = targetLlvmLibraries.libcxx;
|
|
|
|
|
extraPackages = [
|
|
|
|
|
targetLlvmLibraries.libcxxabi
|
|
|
|
|
targetLlvmLibraries.compiler-rt
|
|
|
|
|
];
|
|
|
|
|
extraBuildCommands = mkExtraBuildCommands cc;
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-11 22:12:04 +01:00
|
|
|
|
lld = callPackage ./lld {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
};
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
2021-05-11 22:12:04 +01:00
|
|
|
|
lldb = callPackage ./lldb {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
};
|
2019-09-19 19:19:41 +01: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-05-11 20:20:15 +01:00
|
|
|
|
bintools-unwrapped = callPackage ./bintools {};
|
|
|
|
|
|
|
|
|
|
bintoolsNoLibc = wrapBintoolsWith {
|
|
|
|
|
bintools = tools.bintools-unwrapped;
|
|
|
|
|
libc = preLibcCrossHeaders;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
bintools = wrapBintoolsWith {
|
|
|
|
|
bintools = tools.bintools-unwrapped;
|
|
|
|
|
};
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
2021-05-01 04:03:19 +01:00
|
|
|
|
clangUseLLVM = wrapCCWith rec {
|
2019-09-19 19:19:41 +01:00
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = targetLlvmLibraries.libcxx;
|
2021-05-01 04:03:19 +01:00
|
|
|
|
bintools = bintools';
|
2019-09-19 19:19:41 +01:00
|
|
|
|
extraPackages = [
|
|
|
|
|
targetLlvmLibraries.libcxxabi
|
|
|
|
|
targetLlvmLibraries.compiler-rt
|
2021-01-22 11:25:31 +00:00
|
|
|
|
] ++ lib.optionals (!stdenv.targetPlatform.isWasm) [
|
2019-09-19 19:19:41 +01:00
|
|
|
|
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
|
2021-01-22 11:25:31 +00:00
|
|
|
|
'' + lib.optionalString (!stdenv.targetPlatform.isWasm) ''
|
2019-09-19 19:19:41 +01:00
|
|
|
|
echo "--unwindlib=libunwind" >> $out/nix-support/cc-cflags
|
2021-05-14 23:26:27 +01:00
|
|
|
|
'' + lib.optionalString (!stdenv.targetPlatform.isWasm && stdenv.targetPlatform.useLLVM or false) ''
|
2021-05-11 20:20:15 +01:00
|
|
|
|
echo "-lunwind" >> $out/nix-support/cc-ldflags
|
2021-01-22 11:25:31 +00:00
|
|
|
|
'' + lib.optionalString stdenv.targetPlatform.isWasm ''
|
2019-09-19 19:19:41 +01:00
|
|
|
|
echo "-fno-exceptions" >> $out/nix-support/cc-cflags
|
|
|
|
|
'' + mkExtraBuildCommands cc;
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-01 04:03:19 +01:00
|
|
|
|
clangNoLibcxx = wrapCCWith rec {
|
2019-09-19 19:19:41 +01:00
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
2021-05-01 04:03:19 +01:00
|
|
|
|
bintools = bintools';
|
2019-09-19 19:19:41 +01:00
|
|
|
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-01 04:03:19 +01:00
|
|
|
|
clangNoLibc = wrapCCWith rec {
|
2019-09-19 19:19:41 +01:00
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
2021-05-01 04:03:19 +01:00
|
|
|
|
bintools = bintoolsNoLibc';
|
2019-09-19 19:19:41 +01:00
|
|
|
|
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-01 04:03:19 +01:00
|
|
|
|
clangNoCompilerRt = wrapCCWith rec {
|
2019-09-19 19:19:41 +01:00
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
2021-05-01 04:03:19 +01:00
|
|
|
|
bintools = bintoolsNoLibc';
|
2019-09-19 19:19:41 +01:00
|
|
|
|
extraPackages = [ ];
|
|
|
|
|
extraBuildCommands = ''
|
|
|
|
|
echo "-nostartfiles" >> $out/nix-support/cc-cflags
|
2021-05-07 17:39:19 +01:00
|
|
|
|
'' + mkExtraBuildCommands0 cc;
|
2019-09-19 19:19:41 +01:00
|
|
|
|
};
|
|
|
|
|
|
2021-05-01 04:03:19 +01:00
|
|
|
|
clangNoCompilerRtWithLibc = wrapCCWith rec {
|
2021-05-11 20:20:15 +01:00
|
|
|
|
cc = tools.clang-unwrapped;
|
|
|
|
|
libcxx = null;
|
2021-05-01 04:03:19 +01:00
|
|
|
|
bintools = bintools';
|
2021-05-11 20:20:15 +01:00
|
|
|
|
extraPackages = [ ];
|
|
|
|
|
extraBuildCommands = mkExtraBuildCommands0 cc;
|
|
|
|
|
};
|
|
|
|
|
|
2019-09-19 19:19:41 +01:00
|
|
|
|
});
|
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
|
libraries = lib.makeExtensible (libraries: let
|
2020-01-12 20:22:29 +00:00
|
|
|
|
callPackage = newScope (libraries // buildLlvmTools // { inherit stdenv cmake libxml2 python3 isl release_version version fetch; });
|
2019-09-19 19:19:41 +01:00
|
|
|
|
in {
|
|
|
|
|
|
2021-05-11 20:20:15 +01:00
|
|
|
|
compiler-rt-libc = callPackage ./compiler-rt {
|
2021-05-11 22:12:04 +01:00
|
|
|
|
inherit llvm_meta;
|
2021-05-11 20:20:15 +01:00
|
|
|
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
2021-05-01 04:03:19 +01:00
|
|
|
|
then overrideCC stdenv buildLlvmTools.clangNoCompilerRtWithLibc
|
2021-05-11 20:20:15 +01:00
|
|
|
|
else stdenv;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
compiler-rt-no-libc = callPackage ./compiler-rt {
|
2021-05-11 22:12:04 +01:00
|
|
|
|
inherit llvm_meta;
|
2021-05-11 20:20:15 +01:00
|
|
|
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
2021-05-01 04:03:19 +01:00
|
|
|
|
then overrideCC stdenv buildLlvmTools.clangNoCompilerRt
|
2021-05-11 20:20:15 +01:00
|
|
|
|
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;
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
|
|
|
|
stdenv = overrideCC stdenv buildLlvmTools.clang;
|
|
|
|
|
|
|
|
|
|
libcxxStdenv = overrideCC stdenv buildLlvmTools.libcxxClang;
|
|
|
|
|
|
2021-05-11 22:12:04 +01:00
|
|
|
|
libcxx = callPackage ./libcxx {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
2021-05-01 04:03:19 +01:00
|
|
|
|
then overrideCC stdenv buildLlvmTools.clangNoLibcxx
|
2021-05-11 22:12:04 +01:00
|
|
|
|
else stdenv;
|
|
|
|
|
};
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
2021-05-11 22:12:04 +01:00
|
|
|
|
libcxxabi = callPackage ./libcxxabi {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
2021-05-01 04:03:19 +01:00
|
|
|
|
then overrideCC stdenv buildLlvmTools.clangNoLibcxx
|
2021-05-11 22:12:04 +01:00
|
|
|
|
else stdenv;
|
|
|
|
|
};
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
2021-05-11 22:12:04 +01:00
|
|
|
|
libunwind = callPackage ./libunwind {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
stdenv = if stdenv.hostPlatform.useLLVM or false
|
2021-05-01 04:03:19 +01:00
|
|
|
|
then overrideCC stdenv buildLlvmTools.clangNoLibcxx
|
2021-05-11 22:12:04 +01:00
|
|
|
|
else stdenv;
|
|
|
|
|
};
|
2019-09-19 19:19:41 +01:00
|
|
|
|
|
2021-05-11 22:12:04 +01:00
|
|
|
|
openmp = callPackage ./openmp {
|
|
|
|
|
inherit llvm_meta;
|
|
|
|
|
};
|
2019-09-19 19:19:41 +01:00
|
|
|
|
});
|
|
|
|
|
|
2021-08-07 08:42:33 +01:00
|
|
|
|
in { inherit tools libraries release_version; } // libraries // tools
|