diff options
| author | ruki <[email protected]> | 2025-12-19 13:48:46 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-19 13:48:46 +0800 |
| commit | 5df20ea1dafb3c19e95b8bcd2df6cbbbf03fde81 (patch) | |
| tree | d7554bec8522d1be9eb6e7e45953b1d8010bf522 /core/src/xmake/engine.c | |
| parent | bbe585b9b8927d71f79f8c723110224e31348381 (diff) | |
| parent | 68be1c62a74322993a6b21f74476a716cb3a6963 (diff) | |
Merge pull request #7149 from xmake-io/rpath
Add rpath 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 }, }; |
