Commit 44822c06 authored by nanahira's avatar nanahira

fix arm build

parent 307ad5df
Pipeline #15233 failed with stages
in 20 minutes and 35 seconds
......@@ -196,8 +196,9 @@ BUILD_IKPMP3 = USE_IRRKLANG
if GetParam("winxp-support") and os.istarget("windows") then
WINXP_SUPPORT = true
end
if GetParam("mac-arm") and os.istarget("macosx") then
if os.istarget("macosx") then
MAC_ARM = true
ON_MAC_ARM = MAC_ARM or io.popen('arch'):read('*l') == "arm64"
end
workspace "YGOPro"
......@@ -257,7 +258,7 @@ workspace "YGOPro"
filter { "configurations:Release", "not action:vs*" }
symbols "On"
defines "NDEBUG"
if not MAC_ARM then
if not ON_MAC_ARM then
buildoptions "-march=native"
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment