From 35f4b9ee51c9bb1234ed83d846c5671e566acce2 Mon Sep 17 00:00:00 2001 From: a-turtle9302 <105884277+a-turtle9302@users.noreply.github.com> Date: Sat, 6 Dec 2025 14:10:54 -0500 Subject: [PATCH] build(linux): add support for self-compiling on ubuntu 25.10 (#4471) --- scripts/linux_build.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scripts/linux_build.sh b/scripts/linux_build.sh index 2c10065fc..7e2c77300 100755 --- a/scripts/linux_build.sh +++ b/scripts/linux_build.sh @@ -733,6 +733,15 @@ elif grep -q "Ubuntu 25.04" /etc/os-release; then cuda_build="575.57.08" gcc_version="14" nvm_node=0 +elif grep -q "Ubuntu 25.10" /etc/os-release; then + distro="ubuntu" + version="25.10" + package_update_command="${sudo_cmd} apt-get update" + package_install_command="${sudo_cmd} apt-get install -y" + cuda_version="12.9.1" + cuda_build="575.57.08" + gcc_version="14" + nvm_node=0 else echo "Unsupported Distro or Version" exit 1