diff options
author | dzwdz | 2021-08-07 15:34:03 +0200 |
---|---|---|
committer | dzwdz | 2021-08-07 15:34:03 +0200 |
commit | bd50355d96bb081394f01c7d8e89debd1c040cd4 (patch) | |
tree | 50a98524b707f31a43a70ca225a83a0e762cfad7 /Makefile | |
parent | e2b9d3d34b54767e01c8555e7e672e7ce2dc400c (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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |