mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
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
1 changed files with 8 additions and 0 deletions
|
@ -34,6 +34,14 @@ case "$XBPS_TARGET_MACHINE" in
|
||||||
;;
|
;;
|
||||||
esac
|
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() {
|
do_configure() {
|
||||||
if [ "$CROSS_BUILD" ]; then
|
if [ "$CROSS_BUILD" ]; then
|
||||||
mkdir -p /opt/vc/lib
|
mkdir -p /opt/vc/lib
|
||||||
|
|
Loading…
Add table
Reference in a new issue