diff options
| author | ruki <[email protected]> | 2025-12-09 22:09:11 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-09 22:09:11 +0800 |
| commit | f2dcbc2e1450c84ed192e57c7f8b03e51717d71e (patch) | |
| tree | 6abc959ce5b5ea6a19823021bb00ae364eb8e66b /core/src/xmake/engine.c | |
| parent | 35d91e1636263028b8431cea85b0fd7854392a8a (diff) | |
| parent | 19859fd57908ea9b08b8b6baa426051d2e7c7814 (diff) | |
Merge pull request #7109 from xmake-io/binutils
Improve binutils to readsyms from binary file
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 }, }; |
