CompilerAdapter compilerAdapter;
String cc;
cc=project.getProperty("build.compiler.cc");
if( cc!=null ) {
if( "cc".equals( cc ) ) {
compilerAdapter=new CcCompiler();
compilerAdapter.setSoTask( this );
return compilerAdapter;
}
if( "gcj".equals( cc ) ) {
compilerAdapter=new GcjCompiler();