Re: java.lang.StackOverflowError with GWT

2009-04-28 Thread Arpintim
-compile] Compiling module com.qualogy.qafe.gwt.QAFEGWTWeb [gwt-compile]    [ERROR] Unexpected internal compiler error [gwt-compile] java.lang.StackOverflowError I tried to use sysproperty key=-Dgwt.compiler.jvmargs value=-Xmx1G -Xss1024k/ and this sysproperty key=gwt.compiler.jvmargs

Re: java.lang.StackOverflowError with GWT

2009-04-22 Thread Alex Moffat
I also had this problem but worked around it by setting the localWorkers parameter to com.google.gwt.dev.Compiler to at least the number of permutations I'm compiling. Why this should work I have no idea, but it does, at least for me. I'm only building 5 permutations so this is a reasonable

Re: java.lang.StackOverflowError with GWT

2009-04-17 Thread Gleb
Hi, I have pretty the same problem. My project successfully works in Host- mode, can be compiled and opened in Web-mode (from Host mode or by ant), but when I try to deploy it to Google App Engines by Eclipse plugin, I always get during complication time the following error: [ERROR]

Re: java.lang.StackOverflowError with GWT

2009-04-17 Thread Vitali Lovich
There's a patch on the issue that was opened up. There's another thread that discusses it. On Fri, Apr 17, 2009 at 10:57 AM, Gleb iambookmas...@gmail.com wrote: Hi, I have pretty the same problem. My project successfully works in Host- mode, can be compiled and opened in Web-mode (from

Re: java.lang.StackOverflowError with GWT

2009-04-16 Thread Vitali Lovich
Umm... I'm pretty sure there's an upper-limit to how big you can make your stack (at least on Linux there definitely is). Are you sure that Xss64M -Xss32M actually give you a different stack size? On Thu, Apr 16, 2009 at 10:36 AM, Rockster rjan...@gmail.com wrote: Oke, I finally got it to

Re: java.lang.StackOverflowError with GWT

2009-04-14 Thread Rockster
So upgrading to java 1.6 is the only solution for this ? On Apr 13, 6:50 pm, Andy antonvonpil...@gmail.com wrote: Well, Alex is right - I just upgraded to Java 1.6 and everything works. ...plus the JavaScript now compiles lightning fast!!!

Re: java.lang.StackOverflowError with GWT

2009-04-13 Thread Rockster
[gwt-compile]    [ERROR] Unexpected internal compiler error [gwt-compile] java.lang.StackOverflowError I tried to use sysproperty key=-Dgwt.compiler.jvmargs value=-Xmx1G -Xss1024k/ and this sysproperty key=gwt.compiler.jvmargs value=-Xmx1G -Xss1024k/ But no success

Re: java.lang.StackOverflowError with GWT

2009-04-13 Thread Shawn Brown
What about using something like: java fork=true maxmemory=1024m classname=com.google.gwt.dev.GWTCompiler jvmarg line=-XstartOnFirstThread / ... Shawn --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: java.lang.StackOverflowError with GWT

2009-04-13 Thread Rockster
This is what I do and it fails The sysproperty doesn't have any effect. Hope to hear from you guys soon (again, I'm using jdk1.5/winxp). target name=GWTCompile depends=compile java classname=com.google.gwt.dev.Compiler taskname=gwt-compile

Re: java.lang.StackOverflowError with GWT

2009-04-10 Thread Rockster
/ /classpath arg value=com.xx.MyModule / /java /target And still I get GWTCompile: [gwt-compile] Compiling module com.qualogy.qafe.gwt.QAFEGWTWeb [gwt-compile][ERROR] Unexpected internal compiler error [gwt-compile

Re: java.lang.StackOverflowError with GWT

2009-04-10 Thread Alex
/                         /classpath                         arg value=com.xx.MyModule /                 /java    /target And still I get GWTCompile: [gwt-compile] Compiling module com.qualogy.qafe.gwt.QAFEGWTWeb [gwt-compile]    [ERROR] Unexpected internal compiler error [gwt-compile] java.lang.StackOverflowError

Re: java.lang.StackOverflowError with GWT

2009-04-10 Thread Alex
   /target And still I get GWTCompile: [gwt-compile] Compiling module com.qualogy.qafe.gwt.QAFEGWTWeb [gwt-compile]    [ERROR] Unexpected internal compiler error [gwt-compile] java.lang.StackOverflowError I tried to use sysproperty key=-Dgwt.compiler.jvmargs value=-Xmx1G -Xss1024k

Re: java.lang.StackOverflowError with GWT

2009-04-10 Thread Vitali Lovich
: [gwt-compile] Compiling module com.qualogy.qafe.gwt.QAFEGWTWeb [gwt-compile][ERROR] Unexpected internal compiler error [gwt-compile] java.lang.StackOverflowError I tried to use sysproperty key=-Dgwt.compiler.jvmargs value=-Xmx1G -Xss1024k/ and this sysproperty key

Re: java.lang.StackOverflowError with GWT

2009-04-09 Thread MMM
Hi, I have an error whitch is the same than yours, or I think so. Where must I write this specification for the compiler??? I have a project made with the Google Plugin fo Eclipse and gwt 1.6.4. I don't know where specify it. Thank you. --~--~-~--~~~---~--~~

Re: java.lang.StackOverflowError with GWT

2009-04-09 Thread Jason Essington
in the arguments tab of the debug configuration you add the -Xss switch -jason On Apr 9, 2009, at 12:07 PM, MMM wrote: Hi, I have an error whitch is the same than yours, or I think so. Where must I write this specification for the compiler??? I have a project made with the Google Plugin

Re: java.lang.StackOverflowError with GWT

2009-04-09 Thread MMM
Sorry again, but if I specify gwt.compiler.jvmargs=-Xmx1G -Xss1024k in the advanced portion in the compiler dialog, it rises: Unknown argument: -Xss1024k and if just specify gwt.compiler.jvmargs=-Xmx1G the compiler rises: Loading module 'gwt.compiler.jvmargs=-Xmx1G' [ERROR] Invalid module

Re: java.lang.StackOverflowError with GWT

2009-04-09 Thread Jason Essington
Yup looks that way ... that is just for compiler arguments and not for JVM args you may be stuck creating your own launcher that allows you to call the compiler and supply the args you need you'd think that the next iteration of the plugin should address this since there are others that

Re: java.lang.StackOverflowError with GWT

2009-04-09 Thread Andy
I've been trying to upgrade to 1.6.4, but am also getting this error. I use Ant to build my WAR, so I added the JVM arg to my script, but no matter what value I specify, it doesn't make any difference. ...and I get an OutOfMemoryException is I set it too high! Will using the Eclipse plug-in

Re: java.lang.StackOverflowError with GWT

2009-04-03 Thread bond
Thanks very much!! Sorry but I had not noticed that post! For me is working with: gwt.compiler.jvmargs=-Xmx1G -Xss1024k Regards On 3 Apr, 19:58, Jason Essington jason.essing...@gmail.com wrote: have you tried increasing the stack size? -Xss -jason On Apr 3, 2009, at 11:46 AM, bond wrote: