This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libgcj/10920] Too many roots is reported for program, which shouldn't run out of memory
- From: "oyvind dot harboe at zylin dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 24 Nov 2003 19:26:51 -0000
- Subject: [Bug libgcj/10920] Too many roots is reported for program, which shouldn't run out of memory
- References: <20030521215324.10920.oyvind.harboe@zylin.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From oyvind dot harboe at zylin dot com 2003-11-24 19:26 -------
Hmmm.... I get compilation errors when I try to compile the TestSerial.java
class...
\thisiscool-gcc\gcc-3.4\bin\gcj -c TestSerial.java --classpath
modifed_swt.jar;comm.jar
TestSerial.java:11: error: Class or interface
`org.eclipse.swt.layout.RowLayout' not found in import.
import org.eclipse.swt.layout.RowLayout;
^
TestSerial.java:22: error: Type `Display' not found in the declaration of the
local variable `display'.
Display display = new Display();
^
TestSerial.java:23: error: Type `Shell' not found in the declaration of the
local variable `shell'.
final Shell shell = new Shell(display);
^
TestSerial.java:24: error: Type `RowLayout' not found in the declaration of the
local variable `layout'.
RowLayout layout = new RowLayout();
^
TestSerial.java:29: error: Type `Label' not found in the declaration of the
local variable `label'.
Label label = new Label(shell, SWT.CENTER);
^
TestSerial.java:31: error: Type `Button' not found in the declaration of the
local variable `button'.
Button button=new Button(shell, SWT.NONE);
^
6 errors
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=10920