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 <[email protected]> Authored: Thu Jan 21 17:42:55 2016 +0100 Committer: Nick Wellnhofer <[email protected]> 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); }
