Skip to content
Snippets Groups Projects
Commit 9a4a43a8 authored by Astro's avatar Astro :gear:
Browse files

s/eabihf/eabi/

parent 28c6890c
No related branches found
No related tags found
No related merge requests found
[target.thumbv7em-none-eabihf]
[target.thumbv7em-none-eabi]
rustflags = [
"-C", "linker=arm-none-eabihf-gcc",
"-C", "linker=arm-none-eabi-gcc",
"-C", "link-args=-Tl0dable.ld -n -pie -fPIC",
"-C", "relocation-model=pic",
]
[build]
target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU)
target = "thumbv7em-none-eabi" # Cortex-M4F and Cortex-M7F (with FPU)
......@@ -17,8 +17,8 @@ fn main() {
// Link against C code
cc::Build::new()
.target("thumbv7em-none-eabihf")
.compiler("arm-none-eabihf-gcc")
.target("thumbv7em-none-eabi")
.compiler("arm-none-eabi-gcc")
.define("TARGET", "MAX32665")
.define("TARGET_UC", "MAX32665")
.define("TARGET_LC", "max32665")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment