File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
export CI_BUILD="1"
2
2
export RELEASE="1"
3
- export CXX11_ABI="1"
3
+ export CXX11_ABI="1"
4
+ export USE_CXX11_ABI="1"
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ def load_dep_info():
78
78
79
79
dir_path = os .path .join (str (get_root_dir ()), "py" )
80
80
81
- CXX11_ABI = IS_WINDOWS
81
+ CXX11_ABI = True # IS_WINDOWS
82
82
JETPACK_VERSION = None
83
83
PY_ONLY = False
84
84
NO_TS = False
@@ -136,9 +136,9 @@ def load_dep_info():
136
136
if ci_env_var == "1" :
137
137
CI_BUILD = True
138
138
139
- if "--use-cxx11-abi" in sys .argv :
140
- sys .argv .remove ("--use-cxx11-abi" )
141
- CXX11_ABI = True
139
+ # if "--use-cxx11-abi" in sys.argv:
140
+ # sys.argv.remove("--use-cxx11-abi")
141
+ CXX11_ABI = True
142
142
143
143
if (cxx11_abi_env_var := os .environ .get ("USE_CXX11_ABI" )) is not None :
144
144
if cxx11_abi_env_var == "1" :
You can’t perform that action at this time.
0 commit comments