diff options
| author | ruki <[email protected]> | 2024-01-06 23:53:13 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-01-06 23:53:13 +0800 |
| commit | a8f112733c84e88573dacd08fce97fda0f83b906 (patch) | |
| tree | 1a23ce6c677fc09f962734f73b09746c4e7217ab | |
| parent | 30276f1602c0d6b1a6281df76fc7b437b2013528 (diff) | |
improve ar and strip
| -rw-r--r-- | xmake/toolchains/clang/xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/toolchains/clang/xmake.lua b/xmake/toolchains/clang/xmake.lua index c6789c890..0f9662cee 100644 --- a/xmake/toolchains/clang/xmake.lua +++ b/xmake/toolchains/clang/xmake.lua @@ -35,8 +35,8 @@ toolchain("clang" .. suffix) set_toolset("cxx", "clang" .. suffix, "clang++" .. suffix) set_toolset("ld", "clang++" .. suffix, "clang" .. suffix) set_toolset("sh", "clang++" .. suffix, "clang" .. suffix) - set_toolset("ar", "ar") - set_toolset("strip", "strip") + set_toolset("ar", "ar", "llvm-ar") + set_toolset("strip", "strip", "llvm-strip") set_toolset("mm", "clang" .. suffix) set_toolset("mxx", "clang" .. suffix, "clang++" .. suffix) set_toolset("as", "clang" .. suffix) |
