Compare commits

...

2 Commits

Author SHA1 Message Date
Eyck Jentzsch fca9f04264 Merge remote-tracking branch 'origin/main' into develop 2024-03-20 12:29:57 +01:00
Eyck Jentzsch fe1136c7ce fixes ISA handling 2023-12-06 10:00:33 +01:00
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,7 @@ HEADERS := dhry.h
BOARD=iss
LINK_TARGET=link
RISCV_ARCH:=rv32$(ISA)
ifeq ($(ISA),e)
ifneq (,$(findstring e,$(ISA)))
RISCV_ABI:=ilp32e
else
RISCV_ABI:=ilp32

View File

@ -1,4 +1,3 @@
TARGET = hello
ISA?=imc