diff options
| author | ruki <[email protected]> | 2024-03-13 23:25:02 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-03-13 23:25:02 +0800 |
| commit | 487a1047fab0914b755ea7a87859203a971ce3f2 (patch) | |
| tree | 6dd017e3213318750b23faaeb0cd8536daad8b61 /xmake/toolchains/clang/xmake.lua | |
| parent | 5439a4a60f142cc5c238903972409c51341e6be7 (diff) | |
add objcopy
Diffstat (limited to 'xmake/toolchains/clang/xmake.lua')
| -rw-r--r-- | xmake/toolchains/clang/xmake.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/toolchains/clang/xmake.lua b/xmake/toolchains/clang/xmake.lua index 0a792ca40..cc8da1d26 100644 --- a/xmake/toolchains/clang/xmake.lua +++ b/xmake/toolchains/clang/xmake.lua @@ -36,6 +36,8 @@ toolchain("clang" .. suffix) set_toolset("sh", "clang++" .. suffix, "clang" .. suffix) set_toolset("ar", "ar", "llvm-ar") set_toolset("strip", "strip", "llvm-strip") + set_toolset("ranlib", "ranlib", "llvm-ranlib") + set_toolset("objcopy", "objcopy", "llvm-objcopy") set_toolset("mm", "clang" .. suffix) set_toolset("mxx", "clang" .. suffix, "clang++" .. suffix) set_toolset("as", "clang" .. suffix) |
