Fixed arm_helper would not get included for all RPI1 targets (SDL2, SDL2-Dispmanx)
This commit is contained in:
parent
13dfef71ce
commit
9ea6e9535a
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -432,7 +432,7 @@ ifdef AARCH64
|
|||
OBJS += src/osdep/aarch64_helper.o
|
||||
src/osdep/aarch64_helper.o: src/osdep/aarch64_helper.s
|
||||
$(AS) $(ASFLAGS) -o src/osdep/aarch64_helper.o -c src/osdep/aarch64_helper.s
|
||||
else ifeq ($(PLATFORM),rpi1)
|
||||
else ifeq ($(PLATFORM),$(filter $(PLATFORM),rpi1 rpi1-sdl2 rpi1-sdl2-dispmanx))
|
||||
OBJS += src/osdep/arm_helper.o
|
||||
src/osdep/arm_helper.o: src/osdep/arm_helper.s
|
||||
$(AS) $(ASFLAGS) -o src/osdep/arm_helper.o -c src/osdep/arm_helper.s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue