diff options
| author | ruki <[email protected]> | 2020-07-09 22:48:35 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-07-09 10:51:31 +0800 |
| commit | 4fe5f526d685978302ae2d5487a996b052931982 (patch) | |
| tree | c1058ad22955197d406fb66381e91b30cf19060c | |
| parent | 40610aec4087b6d86df8e633c905aa7208ea742f (diff) | |
fix link for macOS
| -rw-r--r-- | xmake/toolchains/zig/xmake.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/toolchains/zig/xmake.lua b/xmake/toolchains/zig/xmake.lua index cc2b927df..3c902352b 100644 --- a/xmake/toolchains/zig/xmake.lua +++ b/xmake/toolchains/zig/xmake.lua @@ -35,7 +35,8 @@ toolchain("zig") on_load(function (toolchain) local march if toolchain:is_plat("macosx") then - march = toolchain:is_arch("x86") and "i386-macosx-gnu" or "x86_64-macosx-gnu" + -- FIXME + --march = toolchain:is_arch("x86") and "i386-macosx-gnu" or "x86_64-macosx-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 |
