mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
DS: Remove references to DEVKITARM
In some places we used $DEVKITARM, but in others we hardcode the path $DEVKITPRO/devkitARM. To ensure consistent behavior, I changed it to the latter everywhere for now. Should it turn out that we really want to have this flexible, we can reintroduce $DEVKITARM in a proper way. In that case, we could augment configure to set DEVKITARM to $DEVKITPRO/devkitARM, if it has not been set yet.
This commit is contained in:
parent
f62fd4f25f
commit
4dd4cf8bc0
@ -170,10 +170,10 @@ dsclean:
|
||||
|
||||
# HACK/FIXME: C compiler, for cartreset.c -- we should switch this to use CXX
|
||||
# as soon as possible.
|
||||
CC := $(DEVKITARM)/bin/arm-eabi-gcc
|
||||
CC := $(DEVKITPRO)/devkitARM/bin/arm-eabi-gcc
|
||||
|
||||
# HACK/TODO: Pointer to objcopy. This should really be set by configure
|
||||
OBJCOPY := $(DEVKITARM)/bin/arm-eabi-objcopy
|
||||
OBJCOPY := $(DEVKITPRO)/devkitARM/bin/arm-eabi-objcopy
|
||||
|
||||
#
|
||||
# Set various flags
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
|
||||
|
||||
export PATH := $(DEVKITARM)/bin:$(PATH)
|
||||
export PATH := $(DEVKITPRO)/devkitARM/bin:$(PATH)
|
||||
|
||||
export portdir = $(CURDIR)/arm9
|
||||
export srcdir = $(CURDIR)/../../..
|
||||
|
Loading…
Reference in New Issue
Block a user