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