diff options
| author | ruki <[email protected]> | 2021-01-20 23:53:27 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-01-20 23:53:27 +0800 |
| commit | 69e30c48dd9f1a916670d5c90935ad40ce26ac8b (patch) | |
| tree | a9be35e15a02a7cd3ff81a8cab5aed4e1a267b17 | |
| parent | 1d241363f5657b204d95f219e7ed394e3cb9f96d (diff) | |
remove archs for silicon
| -rw-r--r-- | xmake/platforms/iphoneos/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/platforms/iphoneos/xmake.lua b/xmake/platforms/iphoneos/xmake.lua index 838b1b873..8677218fa 100644 --- a/xmake/platforms/iphoneos/xmake.lua +++ b/xmake/platforms/iphoneos/xmake.lua @@ -29,7 +29,7 @@ platform("iphoneos") -- set archs if os.arch() == "arm64" then -- on apple m1 device - set_archs("arm64", "i386", "x86_64") + set_archs("arm64", "x86_64") else set_archs("arm64", "armv7", "armv7s", "i386", "x86_64") end |
