File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,8 @@ def find_objects():
195
195
args .cxx_compiler = "icpx"
196
196
args .compiler_root = None
197
197
icx_path = subprocess .check_output (["which" , "icx" ])
198
- bin_dir = os .path .dirname (os . path . dirname ( icx_path ) )
199
- args .bin_llvm = os .path .join (bin_dir .decode ("utf-8" ), "bin-llvm " )
198
+ bin_dir = os .path .dirname (icx_path )
199
+ args .bin_llvm = os .path .join (bin_dir .decode ("utf-8" ), "compiler " )
200
200
else :
201
201
args_to_validate = [
202
202
"c_compiler" ,
Original file line number Diff line number Diff line change @@ -134,8 +134,8 @@ def run(
134
134
args .cxx_compiler = "icpx"
135
135
args .compiler_root = None
136
136
icx_path = subprocess .check_output (["which" , "icx" ])
137
- bin_dir = os .path .dirname (os . path . dirname ( icx_path ) )
138
- args .bin_llvm = os .path .join (bin_dir .decode ("utf-8" ), "bin-llvm " )
137
+ bin_dir = os .path .dirname (icx_path )
138
+ args .bin_llvm = os .path .join (bin_dir .decode ("utf-8" ), "compiler " )
139
139
else :
140
140
args_to_validate = [
141
141
"c_compiler" ,
You can’t perform that action at this time.
0 commit comments