diff options
author | Andrew Waterman <andrew@sifive.com> | 2016-12-20 14:43:58 -0800 |
---|---|---|
committer | Andrew Waterman <andrew@sifive.com> | 2016-12-20 14:43:58 -0800 |
commit | a9d55db96cd553d988c30b8d78b3273331d101e7 (patch) | |
tree | f588c92231b6efa12cfdb02c01c97d34945b3a4c /Makefile | |
parent | 2a62b24ac45fddc536546e5d1520f5dddd169e16 (diff) |
Completely ignore RISCV environment variable
This Makefile installs the tools in a fixed location and ignores $RISCV,
so $RISCV should not be used to set $PATH. The incorrect $PATH setting
prevents the compiler from building, as it can't find the assembler.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,6 +1,3 @@ -RISCV ?= $(CURDIR)/toolchain -PATH := $(RISCV)/bin:$(PATH) - srcdir := $(dir $(realpath $(lastword $(MAKEFILE_LIST)))) srcdir := $(srcdir:/=) wrkdir := $(CURDIR)/work @@ -43,6 +40,7 @@ help : toolchain_srcdir := $(srcdir)/riscv-gnu-toolchain toolchain32_wrkdir := $(wrkdir)/riscv32-gnu-toolchain toolchain_dest := $(CURDIR)/toolchain +PATH := $(toolchain_dest)/bin:$(PATH) openocd_srcdir := $(srcdir)/openocd openocd_wrkdir := $(wrkdir)/openocd |