Another build bites the dust

This commit is contained in:
mpeterv 2016-02-27 18:44:13 +03:00
parent 20cd7081e7
commit 875276d3f5

View File

@ -546,7 +546,7 @@ class RioLua(Lua):
run_command(cc + " -shared -o", self.dll_file, *lib_objs) run_command(cc + " -shared -o", self.dll_file, *lib_objs)
run_command("strip --strip-unneeded", self.dll_file) run_command("strip --strip-unneeded", self.dll_file)
run_command(cc, "-o -s", self.lua_file, "lua.o", self.dll_file) run_command(cc, "-o", self.lua_file, "-s lua.o", self.dll_file)
else: else:
run_command(cc, "-o", self.lua_file, "lua.o", self.arch_file, lflags) run_command(cc, "-o", self.lua_file, "lua.o", self.arch_file, lflags)