mirror of https://github.com/m-labs/artiq.git
board_misoc/build: use rv32 as target arg
The original rv64 argument was only to match the misoc counterpart.
This commit is contained in:
parent
448974fe11
commit
a573dcf3f9
|
@ -13,7 +13,7 @@ fn main() {
|
||||||
|
|
||||||
println!("cargo:rerun-if-changed={}", vectors_path.to_str().unwrap());
|
println!("cargo:rerun-if-changed={}", vectors_path.to_str().unwrap());
|
||||||
cc::Build::new()
|
cc::Build::new()
|
||||||
.flag("--target=riscv64-unknown-elf")
|
.flag("--target=riscv32-unknown-elf")
|
||||||
.file(vectors_path)
|
.file(vectors_path)
|
||||||
.compile("vectors");
|
.compile("vectors");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue