summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordzwdz2021-08-07 15:34:03 +0200
committerdzwdz2021-08-07 15:34:03 +0200
commitbd50355d96bb081394f01c7d8e89debd1c040cd4 (patch)
tree50a98524b707f31a43a70ca225a83a0e762cfad7 /Makefile
parente2b9d3d34b54767e01c8555e7e672e7ce2dc400c (diff)
build all parts of the toolchain to the same $PREFIX
If gcc is built with a different $PREFIX than binutils, it won't even attempt using them - it will use the system assembler instead, which fails for obvious reasons.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index efb04eb..959672e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-PATH := $(shell pwd)/toolchain/binutils-2.37/bin/:$(shell pwd)/toolchain/gcc-11.2.0/bin/:$(PATH)
+PATH := $(shell pwd)/toolchain/bin/:$(PATH)
AS = i686-elf-as
CC = i686-elf-gcc