[multiple changes]
2003-09-18 Dalibor Topic <robilad@kaffe.org> * gnu/java/rmi/rmic/Compile_gcj.java (COMPILER_ARGS): New private constant. (computeArguments): use computeTypicalArguments. * gnu/java/rmi/rmic/Makefile.am (EXTRA_DIST): Add Compile_kjc.java, Compile_jikes.java and RMICException.java. * gnu/java/rmi/rmic/Compile_kjc.java: New file. * gnu/java/rmi/rmic/Compile_jikes.java: Likewise. * gnu/java/rmi/rmic/RMICException.java: Likewise. * gnu/java/rmi/rmic/Compiler.java (getDestination): New method. * gnu/java/rmi/rmic/CompilerProcess.java: Import java.io.InputStream. (computeTypicalArguments): New method. (compile): Print compiler output to System.out. Collect compiler error output and use it in exception message. * gnu/java/rmi/rmic/RMIC.java: Import java.util.Set. (destination): Initialize to null. (run): Replace file separator with '.' when processing class. (processClass): Replace '.' with file separator when compiling classes. (findClass): Use SystemClassLoader to load class. (generateStub): Use full class name for generated stub, that puts it in right path. Replace '.' with file separator when generating stub file name. Write just the stub class name without package information as class name, and constructor name. Write only interface names for interfaces extending java.rmi.Remote as implemented. (generateSkel): Use full class name for generated skel, that puts it in right path. Replace '.' with file separator when generating stub file name. Write just the stub class name without package information as class name. 2003-09-18 Michael Koch <konqueror@gmx.de> * Makefile.am (rmi_java_source_files): Added gnu/java/rmi/rmic/Compile_kjc.java, gnu/java/rmi/rmic/Compile_jikes.java and gnu/java/rmi/rmic/RMICException.java * Makefile.in: Regenerated. From-SVN: r71506
This commit is contained in:
parent
feb297fe3b
commit
1216e03b30
10 changed files with 419 additions and 64 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2001 Free Software Foundation, Inc.
|
||||
Copyright (c) 2001, 2003 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
|
@ -40,21 +40,16 @@ package gnu.java.rmi.rmic;
|
|||
/** Subclass of Compiler that can be used to invoke gcj. */
|
||||
public class Compile_gcj extends CompilerProcess
|
||||
{
|
||||
private static final String [] COMPILER_ARGS =
|
||||
{
|
||||
"gcj",
|
||||
"-C"
|
||||
};
|
||||
|
||||
public String[] computeArguments (String filename)
|
||||
{
|
||||
int len = 3 + (dest == null ? 0 : 2);
|
||||
String[] result = new String[len];
|
||||
int i = 0;
|
||||
|
||||
result[i++] = "gcj";
|
||||
result[i++] = "-C";
|
||||
if (dest != null)
|
||||
{
|
||||
result[i++] = "-d";
|
||||
result[i++] = dest;
|
||||
}
|
||||
result[i++] = filename;
|
||||
|
||||
return result;
|
||||
return computeTypicalArguments(COMPILER_ARGS,
|
||||
getDestination(),
|
||||
filename);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue