build(linux): Add Fedora 43 support to the build script (#4532)

This commit is contained in:
Craimasjien
2026-01-16 22:28:40 +01:00
committed by GitHub
parent 8294ab23c1
commit 89e79969be

View File

@ -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"