Skip to content

Commit 4e95b07

Browse files
committed
update bee
1 parent af6f9e1 commit 4e95b07

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

3rd/bee.lua

Submodule bee.lua updated 65 files

compile/common/bee.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local lm = require "luamake"
33
lm.rootdir = "../../3rd/bee.lua"
44

55
lm:lua_src "source_bee" {
6-
sources = "3rd/lua-seri/lua-seri.c",
6+
sources = "3rd/lua-seri/lua-seri.cpp",
77
msvc = {
88
flags = "/wd4244"
99
}

src/launcher/util/bee_inline.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
#endif
44

55
#include <3rd/fmt/format.cc>
6-
#include <bee/error.cpp>
6+
#include <bee/lua/error.cpp>
77
#include <bee/net/endpoint.cpp>
88
#include <bee/net/socket.cpp>
99
#include <bee/sys/file_handle.cpp>
1010

1111
#if defined(_WIN32)
12+
# include <bee/net/uds_win.cpp>
1213
# include <bee/sys/file_handle_win.cpp>
1314
# include <bee/sys/path_win.cpp>
1415
# include <bee/win/wtf8.cpp>

src/luadebug/luadbg/bee_inline.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#endif
44

55
#include <3rd/fmt/format.cc>
6-
#include <bee/error.cpp>
6+
#include <bee/lua/error.cpp>
77
#include <bee/net/endpoint.cpp>
88
#include <bee/net/event.cpp>
99
#include <bee/net/socket.cpp>
@@ -14,6 +14,7 @@
1414

1515
#if defined(_WIN32)
1616
# include <bee/net/bpoll_win.cpp>
17+
# include <bee/net/uds_win.cpp>
1718
# include <bee/sys/file_handle_win.cpp>
1819
# include <bee/sys/path_win.cpp>
1920
# include <bee/thread/simplethread_win.cpp>

src/luadebug/luadbg/bee_module.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
#include <bee/lua/module.h>
2222

23+
#include <3rd/lua-seri/lua-seri.cpp>
24+
#include <bee/lua/error.cpp>
2325
#include <bee/lua/file.cpp>
2426
#include <bee/lua/luaref.cpp>
2527
#include <binding/lua_channel.cpp>

src/luadebug/luadbg/onelua.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@
8282
#include "lutf8lib.c"
8383
#include "linit.c"
8484

85-
#include "../lua-seri/lua-seri.c"
86-
8785
LClosure* luaU_undump(lua_State* L, ZIO* Z, const char* name) {
8886
luaO_pushfstring(L, "%s: binary loader not available", name);
8987
luaD_throw(L, LUA_ERRSYNTAX);

0 commit comments

Comments
 (0)