Merge pull request #114487 from bobrik/ivan/llvm11-openmp-aarch64-darwin

llvmPackages_11.openmp: make it compile on aarch64-darwin
This commit is contained in:
Sandro 2021-02-26 20:18:54 +01:00 committed by GitHub
commit dad1dc73c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetch
, fetchpatch
, cmake
, llvm
, perl
@ -13,6 +14,15 @@ stdenv.mkDerivation rec {
src = fetch pname "0bh5cswgpc79awlq8j5i7hp355adaac7s6zaz0zwp6mkflxli1yi";
patches = [
# Fix compilation on aarch64-darwin, remove after the next release.
(fetchpatch {
url = "https://github.com/llvm/llvm-project/commit/7b5254223acbf2ef9cd278070c5a84ab278d7e5f.patch";
sha256 = "sha256-A+9/IVIoazu68FK5H5CiXcOEYe1Hpp4xTx2mIw7m8Es=";
stripLen = 1;
})
];
nativeBuildInputs = [ cmake perl ];
buildInputs = [ llvm ];