From bce38d2a220eb9218ff8490f2080e41b727ae71d Mon Sep 17 00:00:00 2001 From: andrigamerita <37557992+andrigamerita@users.noreply.github.com> Date: Tue, 28 Nov 2023 21:25:47 +0100 Subject: [PATCH] Update package list for switch-libnx.md Trying to follow switch-libnx build instructions with an up-to-date devkitpro toolchain resulted in the linker failing to find many libraries. Whereas the Makefile is correct and up-to-date relative to the SDK, this documentation page apparently still reported an old list of required packages, which would be now incomplete. Simply installing 3 additional packages fixes the build issue. --- docs/development/retroarch/compilation/switch-libnx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development/retroarch/compilation/switch-libnx.md b/docs/development/retroarch/compilation/switch-libnx.md index 6ca9a920b4..e508dc98e5 100644 --- a/docs/development/retroarch/compilation/switch-libnx.md +++ b/docs/development/retroarch/compilation/switch-libnx.md @@ -9,7 +9,7 @@ Then, install all the required libraries: - replace `dkp-pacman` by `pacman` on Linux and Mac OS ``` -dkp-pacman -Sy devkit-env devkitA64 libnx switch-tools switch-mesa switch-zlib switch-bzip2 switch-freetype switch-libpng +dkp-pacman -Sy devkit-env devkitA64 libnx switch-tools switch-mesa switch-zlib switch-bzip2 switch-liblzma switch-freetype switch-libpng switch-libvpx switch-ffmpeg ``` ## RetroArch Compilation