From 84dfb3cbd5ce4f3e6ae077b72a8a9cbd27506a2a Mon Sep 17 00:00:00 2001 From: Joan Touzet Date: Wed, 15 Mar 2023 18:06:56 -0400 Subject: [PATCH 1/2] Ignore vim temp files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index ec6ca5a..e542c74 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ build-tmp __pycache__ .*.swp +*~ +*.un~ From bc36185a9d43f7d3d206fad58065ef17ea208d27 Mon Sep 17 00:00:00 2001 From: Joan Touzet Date: Wed, 15 Mar 2023 18:07:05 -0400 Subject: [PATCH 2/2] riscv-none-embed-* ==> riscv-none-elf-* See: https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/issues/11 --- projects/riscv_doom/fw_boot/Makefile | 2 +- projects/riscv_usb/fw/Makefile | 2 +- projects/usb_amr/fw/Makefile | 2 +- projects/usb_audio/fw/Makefile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/riscv_doom/fw_boot/Makefile b/projects/riscv_doom/fw_boot/Makefile index a600c7a..94c11ea 100644 --- a/projects/riscv_doom/fw_boot/Makefile +++ b/projects/riscv_doom/fw_boot/Makefile @@ -1,4 +1,4 @@ -CROSS ?= riscv-none-embed- +CROSS ?= riscv-none-elf- CC = $(CROSS)gcc OBJCOPY = $(CROSS)objcopy diff --git a/projects/riscv_usb/fw/Makefile b/projects/riscv_usb/fw/Makefile index 4877da1..2da8f9d 100644 --- a/projects/riscv_usb/fw/Makefile +++ b/projects/riscv_usb/fw/Makefile @@ -1,5 +1,5 @@ BOARD ?= icebreaker -CROSS ?= riscv-none-embed- +CROSS ?= riscv-none-elf- CC = $(CROSS)gcc OBJCOPY = $(CROSS)objcopy ICEPROG = iceprog diff --git a/projects/usb_amr/fw/Makefile b/projects/usb_amr/fw/Makefile index a556943..9a277d6 100644 --- a/projects/usb_amr/fw/Makefile +++ b/projects/usb_amr/fw/Makefile @@ -1,5 +1,5 @@ BOARD ?= icebreaker -CROSS ?= riscv-none-embed- +CROSS ?= riscv-none-elf- CC = $(CROSS)gcc OBJCOPY = $(CROSS)objcopy ICEPROG = iceprog diff --git a/projects/usb_audio/fw/Makefile b/projects/usb_audio/fw/Makefile index 2e8c028..8e489e1 100644 --- a/projects/usb_audio/fw/Makefile +++ b/projects/usb_audio/fw/Makefile @@ -1,5 +1,5 @@ BOARD ?= icebreaker -CROSS ?= riscv-none-embed- +CROSS ?= riscv-none-elf- CC = $(CROSS)gcc OBJCOPY = $(CROSS)objcopy ICEPROG = iceprog