Skip to content

Commit 55ef4ab

Browse files
committed
fix
1 parent f1f783a commit 55ef4ab

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

crates/pecos-quest/build_quest.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,8 @@ fn build_gpu_shared_library(cuda_path: &str, quest_dir: &Path, out_dir: &Path) -
177177
// Target compute capability 7.5 (Turing) which supports atomicAdd(double*, double)
178178
// sm_75 is the minimum supported by both CUDA 12.x and 13.x
179179
.arg("-arch=sm_75")
180+
// Allow newer GCC versions (e.g., GCC 14 in manylinux_2_28)
181+
.arg("-allow-unsupported-compiler")
180182
.arg("-Xcompiler")
181183
.arg("-fPIC")
182184
.output()

0 commit comments

Comments
 (0)