File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def do_check(args):
30
30
args .test_suite ,
31
31
"-j" , str (cpu_count )]
32
32
33
- print (cmake_cmd )
33
+ print ("[Cmake Command]: {}" . format ( " " . join ( cmake_cmd )) )
34
34
35
35
env_tmp = os .environ
36
36
env_tmp ["LIT_ARGS" ]= "\" {}\" " .format ("-v" )
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def do_compile(args):
32
32
"deploy-opencl-aot" ,
33
33
"-j" , str (cpu_count )]
34
34
35
- print (cmake_cmd )
35
+ print ("[Cmake Command]: {}" . format ( " " . join ( cmake_cmd )) )
36
36
37
37
subprocess .check_call (cmake_cmd , cwd = abs_obj_dir )
38
38
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ def do_configure(args):
97
97
# Add path to root CMakeLists.txt
98
98
cmake_cmd .append (llvm_dir )
99
99
100
- print (cmake_cmd )
100
+ print ("[Cmake Command]: {}" . format ( " " . join ( cmake_cmd )) )
101
101
102
102
try :
103
103
subprocess .check_call (cmake_cmd , cwd = abs_obj_dir )
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ def do_dependency(args):
73
73
"-DCMAKE_INSTALL_PREFIX={}" .format (install_dir ),
74
74
"-DOPENCL_ICD_LOADER_HEADERS_DIR={}" .format (ocl_header_dir ),
75
75
".." ]
76
+
77
+ print ("[Cmake Command]: {}" .format (" " .join (cmake_cmd )))
78
+
76
79
subprocess .check_call (cmake_cmd , cwd = icd_build_dir )
77
80
78
81
env_tmp = os .environ
You can’t perform that action at this time.
0 commit comments