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 @@ -92,7 +92,7 @@ def main():
92
92
source_dir = None
93
93
# find the repo directory
94
94
try :
95
- CMCacheFilename = f"{ args .build_dir } /CMakeCache.txt"
95
+ CMCacheFilename = f"{ args .build_dir } /CMakeCache.txt"
96
96
with open (CMCacheFilename ) as f :
97
97
for line in f :
98
98
m = re .match (r"LLVM_SOURCE_DIR:STATIC=(.*)" , line )
@@ -104,6 +104,7 @@ def main():
104
104
sys .exit (e )
105
105
106
106
# build the current commit
107
+ print ("NFC-Setup: Building current revision.." )
107
108
subprocess .run (
108
109
shlex .split ("cmake --build . --target llvm-bolt" ), cwd = args .build_dir
109
110
)
@@ -143,6 +144,7 @@ def main():
143
144
new_ref = get_git_ref_or_rev (source_dir )
144
145
145
146
# build the previous commit
147
+ print ("NFC-Setup: Building previous revision.." )
146
148
subprocess .run (
147
149
shlex .split ("cmake --build . --target llvm-bolt" ), cwd = args .build_dir
148
150
)
You can’t perform that action at this time.
0 commit comments