summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xxmake/platforms/windows/xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/platforms/windows/xmake.lua b/xmake/platforms/windows/xmake.lua
index 4f5325069..8c90aa9df 100755
--- a/xmake/platforms/windows/xmake.lua
+++ b/xmake/platforms/windows/xmake.lua
@@ -32,7 +32,7 @@ platform("windows")
set_hosts("windows")
-- set archs
- set_archs("x86", "x64", "amd64", "x86_amd64")
+ set_archs("x86", "x64")
-- set environment
set_environment("environment")
@@ -52,7 +52,7 @@ platform("windows")
_g.formats.symbol = {"", ".pdb"}
-- init flags for dlang
- local dc_archs = { x86 = "-m32", x64 = "-m64", amd64 = "-m64", x86_amd64 = "-m64" }
+ local dc_archs = { x86 = "-m32", x64 = "-m64" }
_g.dcflags = { dc_archs[arch] or "" }
_g["dc-shflags"] = { dc_archs[arch] or "" }
_g["dc-ldflags"] = { dc_archs[arch] or "" }