[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Gm2] Some bugs in 1.0
From: |
john o goyo |
Subject: |
Re: [Gm2] Some bugs in 1.0 |
Date: |
Sun, 19 Dec 2010 17:25:40 -0500 |
Greetings:
On 19-Dec-10, at 3:28 PM, Dmitry Shatrov wrote:
John,
It is all in the same module just for the testcase. In my setup,
gm2 segfaults with aliases from imported modules as well.
Very interesting, On Solaris 10/sparc, I have no problem.
johng: 516 [tmp]=> cat test.mod
MODULE test;
IMPORT STextIO;
CONST
WS = STextIO.WriteString;
WL = STextIO.WriteLn;
BEGIN
WS("Hello?"); WL
END test.
johng: 517 [tmp]=> gm2 -c -fiso test.mod
johng: 518 [tmp]=> gm2 -fiso test.mod
johng: 519 [tmp]=> ./a.out
Hello?
john