From bd50355d96bb081394f01c7d8e89debd1c040cd4 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Sat, 7 Aug 2021 15:34:03 +0200 Subject: 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.3