mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
kodi: do not set ENABLE_NEON for target x86_64
If ENABLE_NEON is set whilst building x86_64 with cmake. cmake warnings that the variable is not been used.
This commit is contained in:
parent
13bf97c5fa
commit
053dc98d50
@ -173,11 +173,15 @@ configure_package() {
|
||||
KODI_UPNP="-DENABLE_UPNP=OFF"
|
||||
fi
|
||||
|
||||
if [ "${TARGET_ARCH}" = "aarch64" -o "${TARGET_ARCH}" = "arm" ]; then
|
||||
if target_has_feature neon; then
|
||||
KODI_NEON="-DENABLE_NEON=ON"
|
||||
else
|
||||
KODI_NEON="-DENABLE_NEON=OFF"
|
||||
fi
|
||||
else
|
||||
KODI_NEON=""
|
||||
fi
|
||||
|
||||
if [ "${VDPAU_SUPPORT}" = "yes" -a "${DISPLAYSERVER}" = "x11" ]; then
|
||||
PKG_DEPENDS_TARGET+=" libvdpau"
|
||||
|
Loading…
x
Reference in New Issue
Block a user