]> git.lizzy.rs Git - metalua.git/commitdiff
fix in the unix make script, useless trace removed from match, added win32 binaries...
authorunknown <Fabien@.(none)>
Mon, 19 Jan 2009 19:33:04 +0000 (20:33 +0100)
committerunknown <Fabien@.(none)>
Mon, 19 Jan 2009 19:33:04 +0000 (20:33 +0100)
.gitignore
src/bin/lua.exe [new file with mode: 0644]
src/bin/luac.exe [new file with mode: 0644]
src/lib/metalua/extension/match.mlua
src/make.sh

index 9216ea7ba8fdab08f4b0f6080591005a608f65a4..135852f9c7a6a4d8eee4033b63f94aebe42f9899 100644 (file)
@@ -16,6 +16,7 @@ src/lua/luac
 src/lua/lua
 src/compiler/bootstrap
 src/compiler/metalua
+distrib
 junk
 patches
 ran
diff --git a/src/bin/lua.exe b/src/bin/lua.exe
new file mode 100644 (file)
index 0000000..dc1c2c3
Binary files /dev/null and b/src/bin/lua.exe differ
diff --git a/src/bin/luac.exe b/src/bin/luac.exe
new file mode 100644 (file)
index 0000000..6f87524
Binary files /dev/null and b/src/bin/luac.exe differ
index 72e5f7130aeba29e73d9355b3ca3c8c9a01c115f..2e747efa963079a36f45b2c13a0bd218406afd98 100644 (file)
@@ -278,7 +278,6 @@ function case_builder (case, term_seq, cfg)
    acc_stat (`Label{on_success}, cfg)
    if guard then acc_test (+{not -{guard}}, cfg) end
    if cfg.dots_replacement then
-      eprintf ("Dots replacement required in a match")
       replace_dots (block, cfg.dots_replacement)
    end
    block.tag = 'Do'
index 740202d89b18ecca97c66e2fa9120e822d3cfbeb..5cb78c524855d06073f59a8416a33f336af42b8a 100755 (executable)
@@ -33,7 +33,7 @@ echo '*** Create the distribution directories, populate them with lib sources **
 mkdir -p ${BUILD_BIN}
 mkdir -p ${BUILD_LIB}
 cp -R lib/* ${BUILD_LIB}/
-cp -R bin/* ${BUILD_BIN}/
+# cp -R bin/* ${BUILD_BIN}/ # No binaries provided for unix (for now)
 
 echo '*** Generate a callable metalua shell script ***'