aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-12-10 12:09:15 +0100
committerClifford Wolf <clifford@clifford.at>2016-12-10 12:09:15 +0100
commit9d873cac925246c38d86d644787d159efb9855a0 (patch)
treeb7a81cc08f8d74ef2b8292e0d25c9f6940bb93d9 /Makefile
parentf29376ac22b89091219a0d5bb1a5bada82df1998 (diff)
downloadpicorv32-9d873cac925246c38d86d644787d159efb9855a0.tar.gz
picorv32-9d873cac925246c38d86d644787d159efb9855a0.zip
Minor changes and build fixes for new riscv-gnu-toolchain
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5492048..0e8a862 100644
--- a/Makefile
+++ b/Makefile
@@ -69,7 +69,7 @@ firmware/firmware.elf: $(FIRMWARE_OBJS) $(TEST_OBJS) firmware/sections.lds
chmod -x $@
firmware/start.o: firmware/start.S
- $(TOOLCHAIN_PREFIX)gcc -c -m32 -march=RV32IM$(COMPRESSED_ISA)Xcustom -o $@ $<
+ $(TOOLCHAIN_PREFIX)gcc -c -m32 -march=RV32IM$(COMPRESSED_ISA) -o $@ $<
firmware/%.o: firmware/%.c
$(TOOLCHAIN_PREFIX)gcc -c -m32 -march=RV32I$(COMPRESSED_ISA) -Os --std=c99 $(GCC_WARNS) -ffreestanding -nostdlib -o $@ $<