summaryrefslogtreecommitdiff
path: root/xmake/toolchains
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/toolchains')
-rw-r--r--xmake/toolchains/zig/xmake.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/xmake/toolchains/zig/xmake.lua b/xmake/toolchains/zig/xmake.lua
index 94a21518a..00e5d4ca8 100644
--- a/xmake/toolchains/zig/xmake.lua
+++ b/xmake/toolchains/zig/xmake.lua
@@ -31,8 +31,7 @@ toolchain("zig")
-- init march
local march
if toolchain:is_plat("macosx") then
- -- FIXME
- --march = toolchain:is_arch("x86") and "i386-macosx-gnu" or "x86_64-macosx-gnu"
+ march = toolchain:is_arch("x86") and "i386-macos-gnu" or "x86_64-macos-gnu"
elseif toolchain:is_plat("linux") then
march = toolchain:is_arch("x86") and "i386-linux-gnu" or "x86_64-linux-gnu"
elseif toolchain:is_plat("windows") then