diff options
| author | ruki <[email protected]> | 2025-12-09 00:29:51 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-12-09 00:29:51 +0800 |
| commit | ba293bc4b8840da34220e1f54313d531d18dde8e (patch) | |
| tree | e6b6325ccf446b845b26a3a21f06f0bd84914170 /core/src/xmake/engine.c | |
| parent | f1726a8f0f63160ae2185f28b38a740caf6d1ab1 (diff) | |
add binary readsyms
Diffstat (limited to 'core/src/xmake/engine.c')
| -rw-r--r-- | core/src/xmake/engine.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/xmake/engine.c b/core/src/xmake/engine.c index 13e8747e0..4f2702f52 100644 --- a/core/src/xmake/engine.c +++ b/core/src/xmake/engine.c @@ -339,6 +339,7 @@ tb_int_t xm_binutils_bin2c(lua_State *lua); tb_int_t xm_binutils_bin2coff(lua_State *lua); tb_int_t xm_binutils_bin2macho(lua_State *lua); tb_int_t xm_binutils_bin2elf(lua_State *lua); +tb_int_t xm_binutils_readsyms(lua_State *lua); #ifdef XM_CONFIG_API_HAVE_CURSES // register curses functions @@ -661,6 +662,7 @@ static luaL_Reg const g_binutils_functions[] = { { "bin2coff", xm_binutils_bin2coff }, { "bin2macho", xm_binutils_bin2macho }, { "bin2elf", xm_binutils_bin2elf }, + { "readsyms", xm_binutils_readsyms }, { tb_null, tb_null }, }; |
