File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ def main():
81
81
source_dir = None
82
82
# find the repo directory
83
83
try :
84
- CMCacheFilename = f"{ args .build_dir } /CMakeCache.txt"
84
+ CMCacheFilename = f"{ args .build_dir } /CMakeCache.txt"
85
85
with open (CMCacheFilename ) as f :
86
86
for line in f :
87
87
m = re .match (r"LLVM_SOURCE_DIR:STATIC=(.*)" , line )
@@ -93,6 +93,7 @@ def main():
93
93
sys .exit (e )
94
94
95
95
# build the current commit
96
+ print ("NFC-Setup: Building current revision.." )
96
97
subprocess .run (
97
98
shlex .split ("cmake --build . --target llvm-bolt" ), cwd = args .build_dir
98
99
)
@@ -132,6 +133,7 @@ def main():
132
133
new_ref = get_git_ref_or_rev (source_dir )
133
134
134
135
# build the previous commit
136
+ print ("NFC-Setup: Building previous revision.." )
135
137
subprocess .run (
136
138
shlex .split ("cmake --build . --target llvm-bolt" ), cwd = args .build_dir
137
139
)
You can’t perform that action at this time.
0 commit comments