From 9e63db5eb689c9a262d7d00f15ee4e4323892bcb Mon Sep 17 00:00:00 2001 From: jwang36 Date: Sun, 9 Jul 2006 11:09:11 +0000 Subject: [PATCH] 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 --- .../antcontrib/cpptasks/userdefine/CommandLineUserDefine.java | 3 +++ 1 file changed, 3 insertions(+) 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]); + } } } } -- 2.39.2