From c3c28dacf04d2d8601815a3854fb3b504bece42d Mon Sep 17 00:00:00 2001 From: nop90 Date: Mon, 18 Sep 2017 10:05:38 +0200 Subject: [PATCH] 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