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:
parent
9b3203401d
commit
7def870b41
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user