String[] args, String[] endArgs, boolean relentless,
CommandLineCompilerConfiguration config, ProgressMonitor monitor)
throws BuildException {
try {
GccCCompiler clone = (GccCCompiler) this.clone();
CompilerParam param = config.getParam("target");
if (param != null)
clone.setCommand(param.getValue() + "-" + this.getCommand());
clone.supercompile(task, outputDir, sourceFiles, args, endArgs,
relentless, config, monitor);
} catch (CloneNotSupportedException e) {
supercompile(task, outputDir, sourceFiles, args, endArgs,
relentless, config, monitor);