diff options
| author | ruki <[email protected]> | 2025-12-10 00:48:15 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-12-12 09:00:43 +0800 |
| commit | 094b9b26786db5960947819680ccc49985f5ed55 (patch) | |
| tree | d980e4bb569b5ac8b6b0c482b09aaabd4eb63b01 /core/src/xmake/engine.c | |
| parent | 245d472158edc782c4ee7ddb6d47be65270c5451 (diff) | |
add binutils extractlib
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 4f2702f52..8e1878499 100644 --- a/core/src/xmake/engine.c +++ b/core/src/xmake/engine.c @@ -340,6 +340,7 @@ 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); +tb_int_t xm_binutils_extractlib(lua_State *lua); #ifdef XM_CONFIG_API_HAVE_CURSES // register curses functions @@ -663,6 +664,7 @@ static luaL_Reg const g_binutils_functions[] = { { "bin2macho", xm_binutils_bin2macho }, { "bin2elf", xm_binutils_bin2elf }, { "readsyms", xm_binutils_readsyms }, + { "extractlib", xm_binutils_extractlib }, { tb_null, tb_null }, }; |
