aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-04-28 10:32:23 +0200
committerClifford Wolf <clifford@clifford.at>2019-04-28 10:32:23 +0200
commitcf69d4da58b416648fb93cc3a7d53fc1a01a566a (patch)
tree6bad8e60688750b49e5d0f877b049ae190e0d2fc
parentd60ffd8eea7ede509db5db196e322064074e6d61 (diff)
downloadpicorv32-cf69d4da58b416648fb93cc3a7d53fc1a01a566a.tar.gz
picorv32-cf69d4da58b416648fb93cc3a7d53fc1a01a566a.zip
Undo Makefile changes
Signed-off-by: Clifford Wolf <clifford@clifford.at>
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3fd3aad..a005920 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,13 @@
-RISCV_PATH = /opt/riscv32i/bin
RISCV_GNU_TOOLCHAIN_GIT_REVISION = 411d134
-RISCV_GNU_TOOLCHAIN_INSTALL_PREFIX = $(RISCV_PATH)
+RISCV_GNU_TOOLCHAIN_INSTALL_PREFIX = /opt/riscv32
SHELL = bash
TEST_OBJS = $(addsuffix .o,$(basename $(wildcard tests/*.S)))
FIRMWARE_OBJS = firmware/start.o firmware/irq.o firmware/print.o firmware/sieve.o firmware/multest.o firmware/stats.o
GCC_WARNS = -Werror -Wall -Wextra -Wshadow -Wundef -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings
GCC_WARNS += -Wredundant-decls -Wstrict-prototypes -Wmissing-prototypes -pedantic # -Wconversion
-TOOLCHAIN_PREFIX = $(RISCV_GNU_TOOLCHAIN_INSTALL_PREFIX)/riscv32-unknown-elf-
+TOOLCHAIN_PREFIX = $(RISCV_GNU_TOOLCHAIN_INSTALL_PREFIX)i/bin/riscv32-unknown-elf-
COMPRESSED_ISA = C
# Add things like "export http_proxy=... https_proxy=..." here