Skip to content

Commit 1dd9c8e

Browse files
committed
Fix Generic 32-bit
1 parent d99e66e commit 1dd9c8e

4 files changed

Lines changed: 8 additions & 11 deletions

File tree

build_all.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ targets="\
8484
Allwinner|R40|arm|image \
8585
Amlogic|AMLGX|aarch64|image \
8686
Ayn|Odin|aarch64|image \
87+
Generic||i386|image \
8788
Generic||x86_64|image \
8889
L4T|Switch|aarch64|image \
8990
NXP|iMX6|arm|image \

distributions/Lakka/options

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
# Xorg Graphic drivers to use (all / i915,r300,r600,nvidia)
150150
# Space separated list is supported,
151151
# e.g. GRAPHIC_DRIVERS="i915 r300 r600 radeonsi nvidia"
152-
GRAPHIC_DRIVERS="crocus r300 r600 radeonsi iris i915 nouveau freedreno lima panfrost"
152+
GRAPHIC_DRIVERS="crocus r300 r600 radeonsi iris i915 nouveau"
153153

154154
# build and install Joystick support (yes / no)
155155
JOYSTICK_SUPPORT="yes"
@@ -379,7 +379,7 @@
379379
elif [ "${PROJECT}" = "Amlogic" -o "${PROJECT}" = "Rockchip" -o "${PROJECT}" = "Allwinner" ]; then
380380
EXCLUDE_LIBRETRO_CORES+=" yabasanshiro"
381381
elif [ "${PROJECT}" = "Generic" -a "${ARCH}" = "i386" ]; then
382-
EXCLUDE_LIBRETRO_CORES+=" lr_moonlight openlara"
382+
EXCLUDE_LIBRETRO_CORES+=" fake_08 lr_moonlight openlara"
383383
elif [ "${PROJECT}" = "Ayn" -a "${DEVICE}" = "Odin" ]; then
384384
EXCLUDE_LIBRETRO_CORES+=" same_cdi lr_moonlight kronos"
385385
elif [ "${PROJECT}" = "L4T" -a "${DEVICE}" = "Switch" ]; then

packages/lakka/libretro_cores/picodrive/package.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ make_target() {
2323
arm)
2424
R= make -f Makefile.libretro platform=armv
2525
;;
26-
x86_64)
26+
i386|x86_64)
2727
R= make -f Makefile.libretro
2828
;;
2929
esac

projects/Generic/options

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
#
1313
TARGET_CPU="x86-64"
1414
TARGET_FEATURES="64bit"
15+
# Vulkan implementation to use (vulkan-loader / no)
16+
VULKAN="vulkan-loader"
1517
;;
1618
i386)
1719
if [ "${DISTRO}" != "Lakka" ]; then
@@ -20,6 +22,8 @@
2022
else
2123
TARGET_CPU="i686"
2224
TARGET_FEATURES="32bit"
25+
# Vulkan implementation to use (vulkan-loader / no)
26+
VULKAN="no"
2327
fi
2428
;;
2529
esac
@@ -97,11 +101,3 @@
97101

98102
# Default size of the ova image, in MB, eg. 4096
99103
OVA_SIZE="4096"
100-
101-
# Vulkan implementation to use (vulkan-loader / no)
102-
VULKAN="vulkan-loader"
103-
104-
# Mesa 3D Graphic drivers to use (all / crocus,i915,iris,r300,r600,radeonsi,vmware,virtio)
105-
# Space separated list is supported,
106-
# e.g. GRAPHIC_DRIVERS="crocus i915 iris r300 r600 radeonsi vmware virtio"
107-
GRAPHIC_DRIVERS="crocus i915 iris r300 r600 radeonsi nouveau vmware virtio"

0 commit comments

Comments
 (0)