forked from M-Labs/zynq-rs
llvm: patch for artiq-zynq release-7
This commit is contained in:
parent
51b8111e79
commit
0efbbe39fe
|
@ -33,16 +33,13 @@ let
|
||||||
|
|
||||||
llvm_meta = {
|
llvm_meta = {
|
||||||
license = lib.licenses.ncsa;
|
license = lib.licenses.ncsa;
|
||||||
maintainers = lib.teams.llvm.members;
|
|
||||||
|
|
||||||
# See llvm/cmake/config-ix.cmake.
|
# See llvm/cmake/config-ix.cmake.
|
||||||
platforms =
|
platforms =
|
||||||
lib.platforms.aarch64 ++
|
lib.platforms.aarch64 ++
|
||||||
lib.platforms.arm ++
|
lib.platforms.arm ++
|
||||||
lib.platforms.mips ++
|
lib.platforms.mips ++
|
||||||
lib.platforms.power ++
|
|
||||||
lib.platforms.riscv ++
|
lib.platforms.riscv ++
|
||||||
lib.platforms.s390x ++
|
|
||||||
lib.platforms.wasi ++
|
lib.platforms.wasi ++
|
||||||
lib.platforms.x86;
|
lib.platforms.x86;
|
||||||
};
|
};
|
||||||
|
@ -294,6 +291,6 @@ let
|
||||||
inherit llvm_meta targetLlvm;
|
inherit llvm_meta targetLlvm;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
noExtend = extensible: lib.attrsets.removeAttrs extensible [ "extend" ];
|
noExtend = extensible: builtins.removeAttrs extensible [ "extend" ];
|
||||||
|
|
||||||
in { inherit tools libraries release_version; } // (noExtend libraries) // (noExtend tools)
|
in { inherit tools libraries release_version; } // (noExtend libraries) // (noExtend tools)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
, cmake
|
, cmake
|
||||||
, python3
|
, python3
|
||||||
, libffi
|
, libffi
|
||||||
, enableGoldPlugin ? libbfd.hasPluginAPI
|
, enableGoldPlugin ? false
|
||||||
, libbfd
|
, libbfd
|
||||||
, libpfm
|
, libpfm
|
||||||
, libxml2
|
, libxml2
|
||||||
|
|
Loading…
Reference in New Issue