mirror of
https://github.com/LizardByte/Sunshine.git
synced 2026-02-04 09:15:42 +00:00
build(linux): Add Fedora 43 support to the build script (#4532)
This commit is contained in:
@ -706,6 +706,16 @@ elif grep -q "PLATFORM_ID=\"platform:f42\"" /etc/os-release; then
|
|||||||
gcc_version="14"
|
gcc_version="14"
|
||||||
nvm_node=0
|
nvm_node=0
|
||||||
dev_tools_group="development-tools"
|
dev_tools_group="development-tools"
|
||||||
|
elif grep -q '^ID=fedora$' /etc/os-release && grep -q '^VERSION_ID=43$' /etc/os-release; then
|
||||||
|
distro="fedora"
|
||||||
|
version="43"
|
||||||
|
package_update_command="${sudo_cmd} dnf update -y"
|
||||||
|
package_install_command="${sudo_cmd} dnf install -y"
|
||||||
|
cuda_version="12.9.1"
|
||||||
|
cuda_build="575.57.08"
|
||||||
|
gcc_version="14"
|
||||||
|
nvm_node=0
|
||||||
|
dev_tools_group="development-tools"
|
||||||
elif grep -q "Ubuntu 22.04" /etc/os-release; then
|
elif grep -q "Ubuntu 22.04" /etc/os-release; then
|
||||||
distro="ubuntu"
|
distro="ubuntu"
|
||||||
version="22.04"
|
version="22.04"
|
||||||
|
|||||||
Reference in New Issue
Block a user