I am still waiting to hear back about QB64's dependencies
From setup_lnx.sh, per distribution:
if [ "$DISTRO" == "arch" ]; then
pkg_list="gcc $GET_WGET"
elif [ "$DISTRO" == "linuxmint" ] || [ "$DISTRO" == "ubuntu" ] || [ "$DISTRO" == "debian" ] || [ "$DISTRO" == "zorin" ]; then
pkg_list="g++ mesa-common-dev libglu1-mesa-dev libasound2-dev $GET_WGET"
elif [ "$DISTRO" == "fedora" ] || [ "$DISTRO" == "redhat" ] || [ "$DISTRO" == "centos" ]; then
pkg_list="gcc-c++ mesa-libGLU-devel alsa-lib-devel $GET_WGET"
In summary:
OpenGL development libraries
ALSA development libraries
GNU C++ Compiler (g++)