From: jwang36 Date: Sun, 9 Jul 2006 11:09:11 +0000 (+0000) Subject: Added code to print out file name in GCC building because GCC doesn't output its... X-Git-Tag: edk2-stable201903~25005 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=9e63db5eb689c9a262d7d00f15ee4e4323892bcb Added code to print out file name in GCC building because GCC doesn't output its input file name in its stdout git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@844 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/Tools/Source/Cpptasks/net/sf/antcontrib/cpptasks/userdefine/CommandLineUserDefine.java b/Tools/Source/Cpptasks/net/sf/antcontrib/cpptasks/userdefine/CommandLineUserDefine.java index 1e4c0ce2b7..682c9ac702 100644 --- a/Tools/Source/Cpptasks/net/sf/antcontrib/cpptasks/userdefine/CommandLineUserDefine.java +++ b/Tools/Source/Cpptasks/net/sf/antcontrib/cpptasks/userdefine/CommandLineUserDefine.java @@ -157,6 +157,9 @@ public class CommandLineUserDefine { for (int j = 0; j < fileNames.length; j++){ // execute the command allSrcFiles.add(scanner.getBasedir() + "/" + fileNames[j]); + if (isGccCommand) { + System.out.println("[" + userdefine.getType() + "] " + fileNames[j]); + } } } }