From c3c28dacf04d2d8601815a3854fb3b504bece42d Mon Sep 17 00:00:00 2001 From: nop90 Date: Mon, 18 Sep 2017 10:05:38 +0200 Subject: [PATCH 1/2] Added bin folder to path --- crt0/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crt0/Makefile b/crt0/Makefile index 0cc5e8f8..7b2a951b 100644 --- a/crt0/Makefile +++ b/crt0/Makefile @@ -1,8 +1,10 @@ +export PATH := $(DEVKITA64)/bin:$(PATH) + switch_crt0.o: *.s aarch64-none-elf-gcc -march=armv8-a -x assembler-with-cpp -c $^ -o $@ install: switch_crt0.o - cp $^ $(DEVKITA64)/aarch64-none-elf/lib/$^ + cp $^ $(DEVKITA64)/bin/aarch64-none-elf/lib/$^ clean: rm -f switch_crt0.o From bdaf22ca2650ef64dd5a608ec70bbfd436c57779 Mon Sep 17 00:00:00 2001 From: nop90 Date: Mon, 18 Sep 2017 12:49:03 +0200 Subject: [PATCH 2/2] Added bin folder to path --- crt0/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crt0/Makefile b/crt0/Makefile index 7b2a951b..26cb11da 100644 --- a/crt0/Makefile +++ b/crt0/Makefile @@ -4,7 +4,7 @@ switch_crt0.o: *.s aarch64-none-elf-gcc -march=armv8-a -x assembler-with-cpp -c $^ -o $@ install: switch_crt0.o - cp $^ $(DEVKITA64)/bin/aarch64-none-elf/lib/$^ + cp $^ $(DEVKITA64)/aarch64-none-elf/lib/$^ clean: rm -f switch_crt0.o