Edited verbose output flag

This commit is contained in:
saisoma123 2022-06-10 13:59:10 -04:00 committed by jenkins
parent 3bd9d02ab1
commit cabadcf6f4

View File

@ -518,8 +518,8 @@ class Build(object):
exec_subprocess_call('%s --build . --target %s %s'
% (CMAKE, target, flags), LLVM_OBJ_ROOT)
else:
if args['verbose']: flags += ' VERBOSE=1'
exec_subprocess_call('make -j%d %s %s' % (self.cores, targets, flags),
if args['verbose']: exec_subprocess_call('cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON', LLVM_OBJ_ROOT)
exec_subprocess_call('make -j %d %s %s' % (self.cores, targets, flags),
LLVM_OBJ_ROOT)
def compile(arg):