You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, thanks for sharing this cool stuff on GitHub.
I have Inform 6.30 but rake dies part way through trying to build the z3 files:
cd test/dorothy/programs/v3 && inform -v3 array.inf
Inform 6.30 (27th Feb 2004)
cd test/dorothy/programs/v3 && inform -v3 call.inf
Inform 6.30 (27th Feb 2004)
cd test/dorothy/programs/v3 && inform -v3 hello_world.inf
Inform 6.30 (27th Feb 2004)
cd test/dorothy/programs/v3 && inform -v3 jump.inf
Inform 6.30 (27th Feb 2004)
cd test/dorothy/programs/v3 && inform -v3 math.inf
Inform 6.30 (27th Feb 2004)
cd test/dorothy/programs/v3 && inform -v3 nop.inf
Inform 6.30 (27th Feb 2004)
cd test/dorothy/programs/v3 && inform -v3 object_attr.inf
Inform 6.30 (27th Feb 2004)
cd test/dorothy/programs/v3 && inform -v3 object_prop.inf
Inform 6.30 (27th Feb 2004)
line 13: Error: Opcode unavailable in this Z-machine version "call_vs"
> print Foo.bar;
line 17: Error: Opcode unavailable in this Z-machine version "call_vs"
> print Foo.bar;
line 19: Error: Opcode unavailable in this Z-machine version "call_vs"
> print (string) Foo.baz;
"<veneer routine 'RT__ChPR'>", line 1: Error: A function may be called with at most 3 arguments
> T__Err("read", obj, prop, size);
Compiled with 4 errors (no output)
rake aborted!
Geoff
The text was updated successfully, but these errors were encountered:
Now that I think of it maybe this has to do with some changes I had to make to get 'rake compile' to work. I have to admit that I have not done an C programming in about 13 years so I'm at a great disadvantage.
I was getting 'ld: duplicate symbol' errors so I added 'extern' declarations to machine.h
basically I compiled, saw error, added extern decl to symbol complained about and repeated as required until the compile ran clean.
reading my last comment again. sheesh. the test files are being processed by the inform compiler - not dorothy. so, my changes to the header file are irrelavent. still, would be nice to get everything built. G.
First, thanks for sharing this cool stuff on GitHub.
I have Inform 6.30 but rake dies part way through trying to build the z3 files:
Geoff
The text was updated successfully, but these errors were encountered: