From ca2fd3194c101c82250d40edaf5b02d03f80a15d Mon Sep 17 00:00:00 2001 From: Peter Melnichenko Date: Wed, 11 Jul 2018 21:28:54 +0300 Subject: [PATCH] Revert incorrect fix for the Lua 5.4.0-work2 VS problem --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index 7df7935..328078a 100755 --- a/hererocks.py +++ b/hererocks.py @@ -1437,7 +1437,7 @@ class RioLua(Lua): # from a git repo that does not have them, like the default one. if len(built_luac_objs) > 0: if using_cl(): - run("link", "/nologo", "/out:luac.exe", built_luac_objs, [lib_obj for lib_obj in lib_objs if lib_obj != "lopcodes.obj"]) + run("link", "/nologo", "/out:luac.exe", built_luac_objs, lib_objs) if os.path.exists("luac.exe.manifest"): run("mt", "/nologo", "-manifest", "luac.exe.manifest", "-outputresource:luac.exe")