A simple test case would be great (ie. one class, if possible).
jikes exhibits the same segfault compiling the attached TestAction.java
Also, there is no jikes package like this made by me. Try to reproduce the error with jikes in Debian.
I reproduced this problem with -
jikes 1.22-2 libsablevm-classlib1-java 1.11.3-2 libstruts1.1-java 1.1-2
myhost:~> jikes -bootclasspath /usr/share/sablevm-classpath/libclasspath.jar -classpath /usr/share/java/servlet-2.3.jar:/usr/share/java/struts-1.1.jar TestAction.java
Segmentation fault
Exit 139
myhost:~>
Many thanks for your help with this!
Jack
import javax.servlet.http.*; import org.apache.struts.action.*;
public class TestAction extends Action { public ActionForward execute(ActionMapping mapping, DynaActionForm form, HttpServletRequest request, HttpServletResponse response) { } }