This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
I have OpenBSD 3.2 box and I try to compile there and run RMI server. I use gcj-3.2 to compile my .java files. I got next problems:
1) Trying to egcj -c Class.java I get Error: Alignment not a power of 2
I found source of that problem, one skipped.
everything written in Java, without problems using object files and bytecode files (.class). But,.. when I enter to RMI server constructor
public RMIserver() throws RemoteException { super(); ^^^^ I see SIGSEGV there and it fails to continue
I guess the error took place in UnicastRemoteObject constructor, isn't it?
It wasn't RemoteException, because I use catch( RemoteException ) and the exception wasn't caught.
I see it was caught in catch(Exception e) and e.getMessage() returns null.
Any suggestions??
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |