From 8e22938413ebb2a93b2035bf25677b4c72714c78 Mon Sep 17 00:00:00 2001 From: cobalt2727 <60624944+cobalt2727@users.noreply.github.com> Date: Wed, 1 May 2024 12:43:24 -0500 Subject: [PATCH] Xemu: add libglu1-mesa-dev Should fix '/usr/bin/ld: cannot find -lGLU: No such file or directory' --- scripts/games_and_emulators/xemu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/games_and_emulators/xemu.sh b/scripts/games_and_emulators/xemu.sh index 8ee7dfde8..ef3eb3821 100755 --- a/scripts/games_and_emulators/xemu.sh +++ b/scripts/games_and_emulators/xemu.sh @@ -12,7 +12,7 @@ bionic) esac case "$__os_id" in Raspbian | Debian | Ubuntu) - sudo apt install -y build-essential libsdl2-dev libepoxy-dev libpixman-1-dev libgtk-3-dev libssl-dev libsamplerate0-dev libpcap-dev ninja-build python3 build-essential libaio-dev libslirp-dev || error "Could not install dependencies!" + sudo apt install -y build-essential libsdl2-dev libepoxy-dev libpixman-1-dev libgtk-3-dev libssl-dev libsamplerate0-dev libpcap-dev ninja-build python3 build-essential libaio-dev libslirp-dev libglu1-mesa-dev || error "Could not install dependencies!" #this script updates SDL2 for aarch64 devices and does nothing for others bash -c "$(curl -s https://raw.githubusercontent.com/$repository_username/L4T-Megascript/$repository_branch/scripts/sdl2_install_helper.sh)" ;;