1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
/*
*
* Copyright 2002-2004 The Ant-Contrib project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.sf.antcontrib.cpptasks.openwatcom;
import java.io.File;
import java.util.Vector;
import net.sf.antcontrib.cpptasks.CUtil;
import net.sf.antcontrib.cpptasks.OptimizationEnum;
import net.sf.antcontrib.cpptasks.compiler.CommandLineCompiler;
import net.sf.antcontrib.cpptasks.compiler.LinkType;
import net.sf.antcontrib.cpptasks.compiler.Processor;
import org.apache.tools.ant.types.Environment;
/**
* An abstract base class for the OpenWatcom C and Fortran compilers.
*
* @author Curt Arnold
*/
public abstract class OpenWatcomCompiler
extends CommandLineCompiler {
/**
* Constructor.
* @param command String command
* @param identifierArg String identifier
* @param sourceExtensions String[] source extension
* @param headerExtensions String[] header extension
* @param newEnvironment boolean use new enviroment
* @param env Environment environment
*/
protected OpenWatcomCompiler(final String command,
final String identifierArg,
final String[] sourceExtensions,
final String[] headerExtensions,
final boolean newEnvironment,
final Environment env) {
super(command, identifierArg, sourceExtensions,
headerExtensions, ".obj", false,
null, newEnvironment, env);
}
/**
* Add implied arguments.
* @param args Vector command line arguments
* @param debug boolean is debug
* @param multithreaded boolean multithreaderd
* @param exceptions boolean support exceptions
* @param linkType LinkType link type
* @param rtti Boolean run time type information
* @param optimization OptimizationEnum
*/
protected final void addImpliedArgs(final Vector args,
final boolean debug,
final boolean multithreaded,
final boolean exceptions,
final LinkType linkType,
final Boolean rtti,
final OptimizationEnum optimization) {
args.addElement("/c");
if (exceptions) {
args.addElement("/xs");
}
if (multithreaded) {
args.addElement("/bm");
}
if (debug) {
args.addElement("/d2");
args.addElement("/od");
args.addElement("/d_DEBUG");
} else {
if (optimization != null) {
if (optimization.isSize()) {
args.addElement("/os");
}
if (optimization.isSpeed()) {
args.addElement("/ot");
}
}
args.addElement("/dNDEBUG");
}
if (rtti != null && rtti.booleanValue()) {
args.addElement("/xr");
}
}
/**
* Add warning switch.
* @param args Vector command line arguments
* @param level int warning level
*/
protected final void addWarningSwitch(final Vector args, final int level) {
OpenWatcomProcessor.addWarningSwitch(args, level);
}
/**
* Change enviroment.
* @param newEnvironment boolean use new enviroment
* @param env Environment environment
* @return Processor modified processor
*/
public final Processor changeEnvironment(final boolean newEnvironment,
final Environment env) {
return this;
}
/**
* Get define switch.
* @param buffer StringBuffer buffer
* @param define String preprocessor macro
* @param value String value, may be null.
*/
protected final void getDefineSwitch(final StringBuffer buffer,
final String define,
final String value) {
OpenWatcomProcessor.getDefineSwitch(buffer, define, value);
}
/**
* Get include path from environment.
* @return File[]
*/
protected final File[] getEnvironmentIncludePath() {
return CUtil.getPathFromEnvironment("INCLUDE", ";");
}
/**
* Get include directory switch.
* @param includeDir String include directory
* @return String command line argument
*/
protected final String getIncludeDirSwitch(final String includeDir) {
return OpenWatcomProcessor.getIncludeDirSwitch(includeDir);
}
/**
* Get maximum command line length.
* @return int maximum command line length
*/
public final int getMaximumCommandLength() {
return 4096;
}
/**
* Get undefine switch.
* @param buffer StringBuffer argument destination
* @param define String preprocessor macro
*/
protected final void getUndefineSwitch(final StringBuffer buffer,
final String define) {
OpenWatcomProcessor.getUndefineSwitch(buffer, define);
}
}
|