summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorruki <[email protected]>2022-09-29 23:36:52 +0800
committerruki <[email protected]>2022-09-29 23:36:52 +0800
commitb8ac066cbd3156d68eca8fd9486acf465146f095 (patch)
tree38b1cc0e8eb1a4f26c0625982adb3cba13648cda /tests
parent7257d1f3aae8eae6cb00c99d92973dfeeceb2f84 (diff)
remove atomic from muslcc
Diffstat (limited to 'tests')
-rw-r--r--tests/projects/package/toolchain_muslcc/xmake.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/projects/package/toolchain_muslcc/xmake.lua b/tests/projects/package/toolchain_muslcc/xmake.lua
index 829ca8b9e..8fdd99b9f 100644
--- a/tests/projects/package/toolchain_muslcc/xmake.lua
+++ b/tests/projects/package/toolchain_muslcc/xmake.lua
@@ -17,7 +17,6 @@ toolchain("my_muslcc")
if toolchain:is_arch("arm") then
toolchain:add("cxflags", "-march=armv7-a", "-msoft-float", {force = true})
toolchain:add("ldflags", "-march=armv7-a", "-msoft-float", {force = true})
- toolchain:add("syslinks", "atomic") -- fix undefined reference to `__atomic_fetch_add_8'
end
toolchain:add("syslinks", "gcc", "c")
end)