summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-01-26 13:40:31 +0800
committerruki <[email protected]>2025-01-26 13:40:31 +0800
commit75cb9eac4912373b3bcd5006aadb6c92824c4612 (patch)
tree6071b4d449d39ed7f8c039f24d34797afddff8ff
parentfdd1ea316ae32434c88e55c0244f194b0602500d (diff)
improve ilinkarm
-rw-r--r--xmake/modules/core/tools/ilinkarm.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/xmake/modules/core/tools/ilinkarm.lua b/xmake/modules/core/tools/ilinkarm.lua
index 3bf6b012c..9fbb03639 100644
--- a/xmake/modules/core/tools/ilinkarm.lua
+++ b/xmake/modules/core/tools/ilinkarm.lua
@@ -36,9 +36,6 @@ end
-- make the link flag
function nf_link(self, lib)
- if not lib:endswith(".a") and not lib:endswith(".so") then
- lib = "lib" .. lib .. ".a"
- end
return "-l" .. lib
end