summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-09 11:09:11 +0000
committerjwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-09 11:09:11 +0000
commit9e63db5eb689c9a262d7d00f15ee4e4323892bcb (patch)
tree1e996b722bc74b335a02d12e00ded43441a10e56 /Tools
parent1cda74acbf8554882be74536c421fa860e337ed7 (diff)
downloadedk2-platforms-9e63db5eb689c9a262d7d00f15ee4e4323892bcb.tar.xz
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
Diffstat (limited to 'Tools')
-rw-r--r--Tools/Source/Cpptasks/net/sf/antcontrib/cpptasks/userdefine/CommandLineUserDefine.java3
1 files changed, 3 insertions, 0 deletions
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]);
+ }
}
}
}