Compare commits
No commits in common. "c7bda2b1449138a9e16ecd7b7b5d82b945d7e497" and "8388018db79244366e99d3577a0bd49fefb8816f" have entirely different histories.
c7bda2b144
...
8388018db7
|
@ -1,21 +0,0 @@
|
||||||
{ stdenv, buildPackages
|
|
||||||
, fetchurl, gmp, mpfr, libmpc, platform, platform-binutils
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
basename = "gcc";
|
|
||||||
version = "9.1.0";
|
|
||||||
name = "${basename}-${platform}-${version}";
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://ftp.gnu.org/gnu/gcc/gcc-${version}/gcc-${version}.tar.xz";
|
|
||||||
sha256 = "1817nc2bqdc251k0lpc51cimna7v68xjrnvqzvc50q3ax4s6i9kr";
|
|
||||||
};
|
|
||||||
configureFlags =
|
|
||||||
[ "--target=${platform}-unknown-elf" "--disable-libgcc" "--disable-libssp" "--enable-languages=c"
|
|
||||||
"--with-as=${platform-binutils}/bin/${platform}-unknown-elf-as"
|
|
||||||
"--with-ld=${platform-binutils}/bin/${platform}-unknown-elf-ld" ];
|
|
||||||
outputs = [ "out" "info" "man" ];
|
|
||||||
hardeningDisable = [ "format" "pie" ];
|
|
||||||
propagatedBuildInputs = [ gmp mpfr libmpc platform-binutils ];
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
}
|
|
|
@ -8,12 +8,12 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "rust-riscv32i-crates";
|
name = "rust-riscv32imc-crates";
|
||||||
src = rustc.src;
|
src = rustc.src;
|
||||||
phases = [ "unpackPhase" "buildPhase" ];
|
phases = [ "unpackPhase" "buildPhase" ];
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
destdir=$out/lib/rustlib/riscv32i-unknown-none-elf/lib/
|
destdir=$out/lib/rustlib/riscv32imc-unknown-none-elf/lib/
|
||||||
rustc="${rustc}/bin/rustc --out-dir ''${destdir} -L ''${destdir} --target riscv32i-unknown-none-elf -g -C opt-level=s --crate-type rlib"
|
rustc="${rustc}/bin/rustc --out-dir ''${destdir} -L ''${destdir} --target riscv32imc-unknown-none-elf -g -C opt-level=s --crate-type rlib"
|
||||||
|
|
||||||
mkdir -p ''${destdir}
|
mkdir -p ''${destdir}
|
||||||
export RUSTC_BOOTSTRAP=1
|
export RUSTC_BOOTSTRAP=1
|
|
@ -1,67 +0,0 @@
|
||||||
commit 23c32a1597df69083f4fa6fb932410cb342e266e
|
|
||||||
Author: Sebastien Bourdeauducq <sb@m-labs.hk>
|
|
||||||
Date: Tue Apr 9 00:15:31 2019 +0800
|
|
||||||
|
|
||||||
add riscv32i
|
|
||||||
|
|
||||||
diff --git a/src/librustc_target/spec/mod.rs b/src/librustc_target/spec/mod.rs
|
|
||||||
index 46fefd78f4..181342db7d 100644
|
|
||||||
--- a/src/librustc_target/spec/mod.rs
|
|
||||||
+++ b/src/librustc_target/spec/mod.rs
|
|
||||||
@@ -465,6 +465,7 @@ supported_targets! {
|
|
||||||
("aarch64-unknown-hermit", aarch64_unknown_hermit),
|
|
||||||
("x86_64-unknown-hermit", x86_64_unknown_hermit),
|
|
||||||
|
|
||||||
+ ("riscv32i-unknown-none-elf", riscv32i_unknown_none_elf),
|
|
||||||
("riscv32imc-unknown-none-elf", riscv32imc_unknown_none_elf),
|
|
||||||
("riscv32imac-unknown-none-elf", riscv32imac_unknown_none_elf),
|
|
||||||
("riscv64imac-unknown-none-elf", riscv64imac_unknown_none_elf),
|
|
||||||
diff --git a/src/librustc_target/spec/riscv32i_unknown_none_elf.rs b/src/librustc_target/spec/riscv32i_unknown_none_elf.rs
|
|
||||||
new file mode 100644
|
|
||||||
index 0000000000..a015e16d93
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/src/librustc_target/spec/riscv32i_unknown_none_elf.rs
|
|
||||||
@@ -0,0 +1,31 @@
|
|
||||||
+use crate::spec::{LinkerFlavor, LldFlavor, PanicStrategy,
|
|
||||||
+ Target, TargetOptions, TargetResult};
|
|
||||||
+
|
|
||||||
+pub fn target() -> TargetResult {
|
|
||||||
+ Ok(Target {
|
|
||||||
+ data_layout: "e-m:e-p:32:32-i64:64-n32-S128".to_string(),
|
|
||||||
+ llvm_target: "riscv32".to_string(),
|
|
||||||
+ target_endian: "little".to_string(),
|
|
||||||
+ target_pointer_width: "32".to_string(),
|
|
||||||
+ target_c_int_width: "32".to_string(),
|
|
||||||
+ target_os: "none".to_string(),
|
|
||||||
+ target_env: String::new(),
|
|
||||||
+ target_vendor: "unknown".to_string(),
|
|
||||||
+ arch: "riscv32".to_string(),
|
|
||||||
+ linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
|
|
||||||
+
|
|
||||||
+ options: TargetOptions {
|
|
||||||
+ linker: Some("rust-lld".to_string()),
|
|
||||||
+ cpu: "generic-rv32".to_string(),
|
|
||||||
+ max_atomic_width: Some(32),
|
|
||||||
+ atomic_cas: true,
|
|
||||||
+ features: "-m,-a,-c".to_string(),
|
|
||||||
+ executables: true,
|
|
||||||
+ panic_strategy: PanicStrategy::Abort,
|
|
||||||
+ relocation_model: "static".to_string(),
|
|
||||||
+ emit_debug_gdb_scripts: false,
|
|
||||||
+ abi_blacklist: super::riscv_base::abi_blacklist(),
|
|
||||||
+ .. Default::default()
|
|
||||||
+ },
|
|
||||||
+ })
|
|
||||||
+}
|
|
||||||
diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs
|
|
||||||
index 61cc78ad80..4364ef41f9 100644
|
|
||||||
--- a/src/tools/build-manifest/src/main.rs
|
|
||||||
+++ b/src/tools/build-manifest/src/main.rs
|
|
||||||
@@ -92,6 +92,7 @@ static TARGETS: &[&str] = &[
|
|
||||||
"powerpc-unknown-linux-gnu",
|
|
||||||
"powerpc64-unknown-linux-gnu",
|
|
||||||
"powerpc64le-unknown-linux-gnu",
|
|
||||||
+ "riscv32i-unknown-none-elf",
|
|
||||||
"riscv32imc-unknown-none-elf",
|
|
||||||
"riscv32imac-unknown-none-elf",
|
|
||||||
"riscv64imac-unknown-none-elf",
|
|
|
@ -17,10 +17,8 @@ rec {
|
||||||
heavycomps = pkgs.callPackage ./heavycomps.nix { inherit nmigen; };
|
heavycomps = pkgs.callPackage ./heavycomps.nix { inherit nmigen; };
|
||||||
|
|
||||||
binutils-riscv32 = pkgs.callPackage ./compilers/binutils.nix { platform = "riscv32"; };
|
binutils-riscv32 = pkgs.callPackage ./compilers/binutils.nix { platform = "riscv32"; };
|
||||||
gcc-riscv32 = pkgs.callPackage ./compilers/gcc.nix { platform = "riscv32"; platform-binutils = binutils-riscv32; };
|
|
||||||
binutils-riscv64 = pkgs.callPackage ./compilers/binutils.nix { platform = "riscv64"; };
|
binutils-riscv64 = pkgs.callPackage ./compilers/binutils.nix { platform = "riscv64"; };
|
||||||
gcc-riscv64 = pkgs.callPackage ./compilers/gcc.nix { platform = "riscv64"; platform-binutils = binutils-riscv64; };
|
rust-riscv32imc-crates = pkgs.callPackage ./compilers/rust-riscv32imc-crates.nix { };
|
||||||
rust-riscv32i-crates = pkgs.callPackage ./compilers/rust-riscv32i-crates.nix { };
|
|
||||||
|
|
||||||
fw-helloworld = pkgs.callPackage ./firmware { inherit rust-riscv32i-crates binutils-riscv32; };
|
fw-helloworld = pkgs.callPackage ./firmware { inherit rust-riscv32i-crates binutils-riscv32; };
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,7 +4,4 @@ self: super:
|
||||||
name = oa.name + "-riscv";
|
name = oa.name + "-riscv";
|
||||||
cmakeFlags = oa.cmakeFlags ++ ["-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=RISCV"];
|
cmakeFlags = oa.cmakeFlags ++ ["-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=RISCV"];
|
||||||
});
|
});
|
||||||
rustc = super.rustc.overrideAttrs(oa: {
|
|
||||||
patches = oa.patches ++ [ ./compilers/rustc-riscv32i.patch ];
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue