You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2016/01/21 17:54:35 UTC

lucy-charmonizer git commit: Print compiler command if verbosity >= 2

Repository: lucy-charmonizer
Updated Branches:
  refs/heads/master 4cb27bbbd -> bdc7a9882


Print compiler command if verbosity >= 2


Project: http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/commit/bdc7a988
Tree: http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/tree/bdc7a988
Diff: http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/diff/bdc7a988

Branch: refs/heads/master
Commit: bdc7a9882a7227759c87a35a9f5a3340934686e2
Parents: 4cb27bb
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Thu Jan 21 17:42:55 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Thu Jan 21 17:42:55 2016 +0100

----------------------------------------------------------------------
 src/Charmonizer/Core/Compiler.c | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-charmonizer/blob/bdc7a988/src/Charmonizer/Core/Compiler.c
----------------------------------------------------------------------
diff --git a/src/Charmonizer/Core/Compiler.c b/src/Charmonizer/Core/Compiler.c
index 75ff6b0..32a6d43 100644
--- a/src/Charmonizer/Core/Compiler.c
+++ b/src/Charmonizer/Core/Compiler.c
@@ -208,6 +208,7 @@ chaz_CC_compile_exe(const char *source_path, const char *exe_name,
         chaz_OS_run_quietly(command);
     }
     else {
+        printf("%s\n", command);
         system(command);
     }
 
@@ -266,6 +267,7 @@ chaz_CC_compile_obj(const char *source_path, const char *obj_name,
         chaz_OS_run_quietly(command);
     }
     else {
+        printf("%s\n", command);
         system(command);
     }