retroarch: disable NEON support for arm*

Even though armv7l* may support NEON retroarch can be built
only with or w/o NEON support; it's not a runtime option.

Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
This commit is contained in:
Jürgen Buchmüller 2019-08-02 17:52:18 +02:00
parent 9b3203401d
commit 7def870b41
No known key found for this signature in database
GPG Key ID: DE55AD8DBEBB4EE8

View File

@ -34,6 +34,14 @@ case "$XBPS_TARGET_MACHINE" in
;;
esac
case "$XBPS_TARGET_MACHINE" in
aarch64*) configure_args+=" --enable-neon"
;;
arm*) # Disable NEON even if armv7l may have support
configure_args+=" --disable-neon"
;;
esac
do_configure() {
if [ "$CROSS_BUILD" ]; then
mkdir -p /opt/vc/lib