There were misplaced parentheses in src/mtypes/std.neko:
../bin/nekovm neko mtypes/std.neko
mtypes/std.neko(191): Unclosed (
Called from tools/install.neko line 221
Called from tools/install.neko line 140
Called from tools/install.neko line 230
Uncaught exception - Error 65280 : aborted
make: *** [libs] Error 1
But after I fixed that it built OK.
Nicolas Cannasse wrote:
>
> I made the changes to the Makefile and install.neko
> Could you check that everything is building correctly ?
>
> Nicolas
>
> ---
> Neko : One VM to run them all
>
Lauri Hyvärinen wrote:
You're welcome,
And while I'm at it, I decided make the mod_neko build in OS X too.
The patch is as an attachment and includes changes to the Makefile and
src/tools/install.neko.
Lauri
--- neko-CVS/src/mtypes/std.neko.~1.24.~ 2005-12-29 11:10:48.000000000
+0200
+++ neko-CVS/src/mtypes/std.neko 2005-12-29 17:08:57.000000000 +0200
@@ -188,15 +188,15 @@
var count = 0;
l.h = null;
while( cur != null ) {
- if( f(cur[0]) {
+ if( f(cur[0])) {
if( last == null ) {
last = $array(cur[0],null);
l.h = last;
} else {
- var tmp = $array(cur[0])null);
+ var tmp = $array(cur[0],null);
last[1] = tmp;
last = tmp;
- }
+ }
count += 1;
}
cur = cur[1];
---
Neko : One VM to run them all