diff options
| author | ruki <[email protected]> | 2025-12-15 06:59:18 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-15 06:59:18 +0800 |
| commit | 777fdde191dc443aba4b987c07247446e10bb5d9 (patch) | |
| tree | 0a655c0f866b956847c5960dbf9fca1d0663577a /core/src/xmake/engine.c | |
| parent | 85f1ef3e70620b3919f4e980eb442025f74d1bdd (diff) | |
| parent | 722a8f23bf29d07b5db27eeeb30e2afe8d8defc5 (diff) | |
Merge pull request #7127 from xmake-io/deplibs
Add deplibs in binutils
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 8e1878499..b7d071b65 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_deplibs(lua_State *lua); tb_int_t xm_binutils_extractlib(lua_State *lua); #ifdef XM_CONFIG_API_HAVE_CURSES @@ -664,6 +665,7 @@ static luaL_Reg const g_binutils_functions[] = { { "bin2macho", xm_binutils_bin2macho }, { "bin2elf", xm_binutils_bin2elf }, { "readsyms", xm_binutils_readsyms }, + { "deplibs", xm_binutils_deplibs }, { "extractlib", xm_binutils_extractlib }, { tb_null, tb_null }, }; |
