]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Tools/Java/Source/Cpptasks/net/sf/antcontrib/cpptasks/userdefine/UserDefineCompiler.java
Added code to check if "cmd" attribute is valid or not. This is to make error report...
[mirror_edk2.git] / Tools / Java / Source / Cpptasks / net / sf / antcontrib / cpptasks / userdefine / UserDefineCompiler.java
... / ...
CommitLineData
1/*\r
2 * \r
3 * Copyright 2002-2006 The Ant-Contrib project\r
4 *\r
5 * Licensed under the Apache License, Version 2.0 (the "License");\r
6 * you may not use this file except in compliance with the License.\r
7 * You may obtain a copy of the License at\r
8 *\r
9 * http://www.apache.org/licenses/LICENSE-2.0\r
10 *\r
11 * Unless required by applicable law or agreed to in writing, software\r
12 * distributed under the License is distributed on an "AS IS" BASIS,\r
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
14 * See the License for the specific language governing permissions and\r
15 * limitations under the License.\r
16 */\r
17package net.sf.antcontrib.cpptasks.userdefine;\r
18\r
19import net.sf.antcontrib.cpptasks.CCTask;\r
20\r
21/**\r
22 * Adapter for the User-Defined Compiler\r
23 */\r
24public class UserDefineCompiler extends CommandLineUserDefine {\r
25\r
26 public UserDefineCompiler (CCTask cctask, UserDefineDef userdefineDef) {\r
27 String cmdType = userdefineDef.getType();\r
28 String toolchainFamily = userdefineDef.getFamily();\r
29\r
30 if (userdefineDef.getIncludePathDelimiter() == null) {\r
31 includePathDelimiter = UserDefineMapping.getIncludePathDelimiter(\r
32 toolchainFamily, cmdType);\r
33 } else {\r
34 includePathDelimiter = userdefineDef.getIncludePathDelimiter();\r
35 }\r
36\r
37 if (userdefineDef.getOutputDelimiter() == null) {\r
38 outputDelimiter = UserDefineMapping.getOutputFileFlag(\r
39 toolchainFamily, cmdType);\r
40 } else {\r
41 outputDelimiter = userdefineDef.getOutputDelimiter();\r
42 }\r
43\r
44 }\r
45}\r