From cabadcf6f46508e742bc94e3cad27f2d98c3c090 Mon Sep 17 00:00:00 2001 From: saisoma123 Date: Fri, 10 Jun 2022 13:59:10 -0400 Subject: [PATCH] Edited verbose output flag --- tools/packaging/cpt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/packaging/cpt.py b/tools/packaging/cpt.py index f6094527..7c7cb987 100755 --- a/tools/packaging/cpt.py +++ b/tools/packaging/cpt.py @@ -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):