Skip to content

Commit a945aeb

Browse files
authored
fix: export USE_CXX11_ABI=1 for cuda12.6 (#3319)
1 parent e3ec185 commit a945aeb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packaging/env_vars.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
export CI_BUILD="1"
2-
export RELEASE="1"
2+
export RELEASE="1"
3+
if [ $CU_VERSION == "cu126" ]; then
4+
export USE_CXX11_ABI="1"
5+
else
6+
export USE_CXX11_ABI="0"
7+
fi

0 commit comments

Comments
 (0)