Skip to content

Commit 89e7996

Browse files
authored
build(linux): Add Fedora 43 support to the build script (#4532)
1 parent 8294ab2 commit 89e7996

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

scripts/linux_build.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,16 @@ elif grep -q "PLATFORM_ID=\"platform:f42\"" /etc/os-release; then
706706
gcc_version="14"
707707
nvm_node=0
708708
dev_tools_group="development-tools"
709+
elif grep -q '^ID=fedora$' /etc/os-release && grep -q '^VERSION_ID=43$' /etc/os-release; then
710+
distro="fedora"
711+
version="43"
712+
package_update_command="${sudo_cmd} dnf update -y"
713+
package_install_command="${sudo_cmd} dnf install -y"
714+
cuda_version="12.9.1"
715+
cuda_build="575.57.08"
716+
gcc_version="14"
717+
nvm_node=0
718+
dev_tools_group="development-tools"
709719
elif grep -q "Ubuntu 22.04" /etc/os-release; then
710720
distro="ubuntu"
711721
version="22.04"

0 commit comments

Comments
 (0)