diff options
| author | ruki <[email protected]> | 2025-12-19 22:55:22 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-12-19 22:55:22 +0800 |
| commit | 2c497bc57fc27af645afbf3de2e4e6068ea853dc (patch) | |
| tree | def81c9e79c644381502f0bfe7c0ee7547536241 /core/src/xmake/engine.c | |
| parent | bbe585b9b8927d71f79f8c723110224e31348381 (diff) | |
add rpath list 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 ea9dc2af1..069e3af1a 100644 --- a/core/src/xmake/engine.c +++ b/core/src/xmake/engine.c @@ -342,6 +342,7 @@ 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_rpath_list(lua_State *lua); tb_int_t xm_binutils_extractlib(lua_State *lua); #ifdef XM_CONFIG_API_HAVE_CURSES @@ -668,6 +669,7 @@ static luaL_Reg const g_binutils_functions[] = { { "bin2elf", xm_binutils_bin2elf }, { "readsyms", xm_binutils_readsyms }, { "deplibs", xm_binutils_deplibs }, + { "rpath_list", xm_binutils_rpath_list }, { "extractlib", xm_binutils_extractlib }, { tb_null, tb_null }, }; |
