Enable systemd binfmt, package updates for possible future use.
This commit is contained in:
parent
47d7842f0a
commit
d7462f186a
3 changed files with 8 additions and 4 deletions
|
@ -40,7 +40,7 @@ pre_configure_target() {
|
|||
-DUSE_OPENMP=ON"
|
||||
}
|
||||
makeinstall_target() {
|
||||
mkdir -p ${INSTALL}/usr/lib/libretro
|
||||
mkdir -p ${INSTALL}/usr/lib/libretro
|
||||
case ${TARGET_ARCH} in
|
||||
aarch64)
|
||||
cp -vP ${ROOT}/build.${DISTRO}-${DEVICE}.arm/flycast-*/.install_pkg/usr/lib/libretro/flycast32_libretro.so ${INSTALL}/usr/lib/libretro
|
||||
|
@ -49,8 +49,12 @@ mkdir -p ${INSTALL}/usr/lib/libretro
|
|||
arm)
|
||||
cp flycast_libretro.so ${INSTALL}/usr/lib/libretro/flycast32_libretro.so
|
||||
;;
|
||||
*)
|
||||
x86_64)
|
||||
cp -vP ${ROOT}/build.${DISTRO}-${DEVICE}.i686/flycast-*/.install_pkg/usr/lib/libretro/flycast32_libretro.so ${INSTALL}/usr/lib/libretro
|
||||
cp flycast_libretro.so ${INSTALL}/usr/lib/libretro/flycast_libretro.so
|
||||
;;
|
||||
i686)
|
||||
cp flycast_libretro.so ${INSTALL}/usr/lib/libretro/flycast32_libretro.so
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
|
|
@ -56,7 +56,7 @@ pre_configure_target() {
|
|||
fi
|
||||
|
||||
if [ "${OPENGLES_SUPPORT}" = yes ] && \
|
||||
[ ! "${ARCH}" = "x86_64" ]; then
|
||||
[[ ! "${ARCH}" =~ i*86|x86_64 ]]; then
|
||||
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
|
||||
PKG_CONFIGURE_OPTS_TARGET+=" --enable-opengles --enable-opengles3 --enable-opengles3_2 --enable-kms"
|
||||
else
|
||||
|
|
|
@ -54,7 +54,7 @@ PKG_MESON_OPTS_TARGET="--libdir=/usr/lib \
|
|||
-Dutmp=true \
|
||||
-Dhibernate=false \
|
||||
-Denvironment-d=false \
|
||||
-Dbinfmt=false \
|
||||
-Dbinfmt=true \
|
||||
-Drepart=false \
|
||||
-Dcoredump=false \
|
||||
-Dresolve=false \
|
||||
|
|
Loading…
Reference in a new issue