|
|
@@ -52,10 +52,11 @@ public class Gcj extends DefaultCompilerAdapter { |
|
|
|
|
|
|
|
// gcj doesn't support bootclasspath dir (-bootclasspath) |
|
|
|
// so we'll emulate it for compatibility and convenience. |
|
|
|
if (bootclasspath != null) { |
|
|
|
classpath.append(bootclasspath); |
|
|
|
Path p = getBootClassPath(); |
|
|
|
if (p.size() > 0) { |
|
|
|
classpath.append(p); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// gcj doesn't support an extension dir (-extdir) |
|
|
|
// so we'll emulate it for compatibility and convenience. |
|
|
|
classpath.addExtdirs(extdirs); |
|
|
|