Fix asmdiff.sh to work without DKP, also improve the makefile command for recognizing a toolchain.

The new command requires the toolchain binary path to exist in the file system before building using a toolchain (to handle the case where gba-dev is uninstalled but $(DEVKITARM) still exists))
This commit is contained in:
luckytyphlosion
2020-12-16 13:15:54 -05:00
parent 4ecbb91ccb
commit aad94c3433
5 changed files with 10 additions and 5 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ COMPARE ?= 0
# files, or use arm-none-eabi binaries on the system
# if dkP is not installed on tihs system
ifneq ($(TOOLCHAIN),)
ifneq ($(wildcard $(TOOLCHAIN)/bin),)
export PATH := $(TOOLCHAIN)/bin:$(PATH)
endif