summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2017-03-18 15:42:08 +0800
committerruki <[email protected]>2017-03-18 15:42:08 +0800
commitbbb5a7f352f968326c2c1d836536290a3535b25c (patch)
treed1f8fc92e193b4a634bbd2955752c96c03d149b6
parentab30f318f4b2622f4c8535cdcec9eccd2a58f461 (diff)
remove arm64 for windows
-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 "" }