mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
all-packages: Add a self-hosted variant of clang.
This commit is contained in:
parent
9cfc81b749
commit
52abed95ca
@ -2231,8 +2231,26 @@ let
|
|||||||
|
|
||||||
clang = wrapClang clangUnwrapped;
|
clang = wrapClang clangUnwrapped;
|
||||||
|
|
||||||
|
libcxxLLVM = callPackage ../development/compilers/llvm { stdenv = libcxxStdenv; };
|
||||||
|
clangSelf = clangWrapSelf (callPackage ../development/compilers/llvm/clang.nix {
|
||||||
|
stdenv = libcxxStdenv;
|
||||||
|
llvm = libcxxLLVM;
|
||||||
|
});
|
||||||
|
|
||||||
|
clangWrapSelf = build: (import ../build-support/clang-wrapper) {
|
||||||
|
clang = build;
|
||||||
|
stdenv = clangStdenv;
|
||||||
|
libc = glibc;
|
||||||
|
binutils = binutils_gold;
|
||||||
|
shell = bash;
|
||||||
|
inherit libcxx coreutils zlib;
|
||||||
|
nativeTools = false;
|
||||||
|
nativeLibc = false;
|
||||||
|
};
|
||||||
|
|
||||||
#Use this instead of stdenv to build with clang
|
#Use this instead of stdenv to build with clang
|
||||||
clangStdenv = lowPrio (stdenvAdapters.overrideGCC stdenv clang);
|
clangStdenv = lowPrio (stdenvAdapters.overrideGCC stdenv clang);
|
||||||
|
libcxxStdenv = stdenvAdapters.overrideGCC stdenv (clangWrapSelf clangUnwrapped);
|
||||||
|
|
||||||
clean = callPackage ../development/compilers/clean { };
|
clean = callPackage ../development/compilers/clean { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user