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
This commit is contained in:
jwang36 2006-07-09 11:09:11 +00:00
parent 1cda74acbf
commit 9e63db5eb6
1 changed files with 3 additions and 0 deletions

View File

@ -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]);
}
}
}
}