From bbb5a7f352f968326c2c1d836536290a3535b25c Mon Sep 17 00:00:00 2001 From: ruki Date: Sat, 18 Mar 2017 15:42:08 +0800 Subject: remove arm64 for windows --- xmake/platforms/windows/xmake.lua | 4 ++-- 1 file 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 "" } -- cgit v1.3.1