From 6d67f0d46aa386dd62e72df6ec20e4a255575bec Mon Sep 17 00:00:00 2001
From: Marko Grönroos
#1155: Uncompressing the installation package fails in Windows if using the default Zip uncompression. Uncompression gives (in Windows Vista) an error message about too long filenames, and a more obscure message in other versions of Windows. Workaround: use 7-Zip or some other good unzip - program for Windows.
#2299: The Hosted Mode Browser does not work in Linux for debugging client-side GWT code. You need to install the experimental OOPHM package instead (see above) for development. For production, you should use the regular - package for Linux.
#2891 As there is a bug in J2SE - 5.0 that prevents setting the stack size for the main thread, widgetsets cannot be - compiled using the standard GWT compiler of GWT 1.6 and JDK 1.5.0 (see #2656 for - more details on the JDK bug). This bug primarily affects Windows users as other - operating systems have a larger default stack size.
- -Before that fix is available in a published GWT version, we provide a wrapper for - the GWT compiler that runs the compiler in a separate thread, thus using the - user-specified stack size settings also on JDK 1.5.0. Use - com.itmill.toolkit.launcher.WidgetsetCompiler instead of - com.google.gwt.dev.Compiler. You need the wrapper if you use a build script - to compile custom widget sets; the Eclipse plugin uses the wrapper - automatically. You can also avoid the problem by using JDK 1.6.
-#2523: GWT Compiler 1.6 uses more + stack space than 1.5 and can result in stack overflow errors. You can prevent the + problem by giving the Java process more stack space with the -Xss + parameter, such as: -Xss1024k. You can give the parameter in your widgetset + build script with a <jvmarg value="-Xss1024k"/> parameter for the + <java> task.
+ +#2891: As there is a bug in + J2SE 5.0 that prevents setting the stack size for the main thread, widgetsets + cannot be compiled using the standard GWT compiler of GWT 1.6 and JDK 1.5.0 (see + #2656 for more details on the JDK bug). This bug primarily affects Windows users + as other operating systems have a larger default stack size.
+ +Before that fix is available in a published GWT version, we provide a wrapper + for the GWT compiler that runs the compiler in a separate thread, thus using the + user-specified stack size settings also on JDK 1.5.0. Use + com.itmill.toolkit.launcher.WidgetsetCompiler instead of + com.google.gwt.dev.Compiler. You need the wrapper if you use a build + script to compile custom widget sets; the Eclipse plugin uses the wrapper + automatically. You can also avoid the problem by using JDK 1.6.
+For other known problems, see open tickets at developer site