mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
llvmPackages_12.libunwind: Make sure we get right llvm version
This commit is contained in:
parent
894a09dfd2
commit
4caedc060f
@ -229,12 +229,13 @@ let
|
||||
libunwind = libraries.libunwind;
|
||||
}));
|
||||
|
||||
openmp = callPackage ./openmp { inherit llvm_meta; };
|
||||
libunwind = callPackage ./libunwind ({
|
||||
inherit (buildLlvmTools) llvm;
|
||||
} // lib.optionalAttrs (stdenv.hostPlatform.useLLVM or false) {
|
||||
stdenv = overrideCC stdenv buildLlvmTools.lldClangNoLibcxx;
|
||||
});
|
||||
|
||||
libunwind = callPackage ./libunwind ({ inherit llvm_meta; } //
|
||||
(lib.optionalAttrs (stdenv.hostPlatform.useLLVM or false) {
|
||||
stdenv = overrideCC stdenv buildLlvmTools.lldClangNoLibcxx;
|
||||
}));
|
||||
openmp = callPackage ./openmp { inherit llvm_meta; };
|
||||
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user