notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
564156d
)
make: don't enable neon for all ARMs
author
notaz
<notasas@gmail.com>
Mon, 20 Nov 2023 21:03:59 +0000
(23:03 +0200)
committer
notaz
<notasas@gmail.com>
Mon, 20 Nov 2023 21:10:16 +0000
(23:10 +0200)
joolswills commented on
4b2392bb
:
This breaks building on armv6 where ARCH_DETECTED is set to "arm"
(which is a substring of arm64) so it matches, and BUILTIN_GPU is
set to neon.
Makefile.libretro
patch
|
blob
|
blame
|
history
diff --git
a/Makefile.libretro
b/Makefile.libretro
index
9fe5365
..
1169d89
100644
(file)
--- a/
Makefile.libretro
+++ b/
Makefile.libretro
@@
-111,7
+111,7
@@
ifneq (,$(shell $(CC) -E -dD $(CFLAGS) include/arm_features.h | grep 'HAVE_NEON3
BUILTIN_GPU = neon
endif
endif
-ifneq (,$(fi
ndstring
$(ARCH_DETECTED),i686 x86_64 arm64 aarch64))
+ifneq (,$(fi
lter
$(ARCH_DETECTED),i686 x86_64 arm64 aarch64))
BUILTIN_GPU = neon
endif