diff options
| author | ruki <[email protected]> | 2023-09-27 23:53:21 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-09-27 23:53:21 +0800 |
| commit | 6ffb48dd54c6d2d4e6168fac56943481d58e29c4 (patch) | |
| tree | 7a463c358d683d9a9ad047ed0e1a052c488ee8fa /xmake/languages/asm | |
| parent | d53b673e631873b21b07665498a142cc31059c81 (diff) | |
add groups for interpreter
Diffstat (limited to 'xmake/languages/asm')
| -rw-r--r-- | xmake/languages/asm/load.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xmake/languages/asm/load.lua b/xmake/languages/asm/load.lua index 4cf15a3d6..94eaa2c51 100644 --- a/xmake/languages/asm/load.lua +++ b/xmake/languages/asm/load.lua @@ -31,8 +31,6 @@ function _get_apis() , "target.add_defines" , "target.add_undefines" , "target.add_rpathdirs" -- @note do not translate path, it's usually an absolute path or contains $ORIGIN/@loader_path - , "target.add_linkorders" - , "target.add_linkgroups" -- option.add_xxx , "option.add_links" , "option.add_syslinks" @@ -70,6 +68,11 @@ function _get_apis() , "toolchain.add_includedirs" , "toolchain.add_sysincludedirs" } + apis.groups = { + -- target.add_xxx + "target.add_linkorders" + , "target.add_linkgroups" + } apis.paths = { -- target.add_xxx "target.add_headerfiles" |
