llvm -> llvm_7 for nixos-unstable rustc

pull/1/head
Sebastien Bourdeauducq 2019-05-14 10:41:10 +08:00
parent f7e7b894b7
commit 351d5360f0
1 changed files with 2 additions and 2 deletions

View File

@ -16,11 +16,11 @@ rec {
heavycomps = pkgs.callPackage ./heavycomps.nix { inherit nmigen; };
binutils-riscv = pkgs.callPackage ./compilers/binutils.nix { platform = "riscv32"; };
llvm = pkgs.llvm_7.overrideAttrs(oa: {
llvm_7 = pkgs.llvm_7.overrideAttrs(oa: {
cmakeFlags = oa.cmakeFlags ++ ["-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=RISCV"];
});
rustc = (pkgs.rustc.overrideAttrs(oa: {
patches = oa.patches ++ [ ./compilers/rustc-riscv32i.patch ];
})).override { inherit llvm; };
})).override { inherit llvm_7; };
rust-riscv32i-crates = pkgs.callPackage ./compilers/rust-riscv32i-crates.nix { inherit rustc; };
}