diff options
author | 2020-12-30 12:53:32 +1100 | |
---|---|---|
committer | 2020-12-30 12:53:32 +1100 | |
commit | ca19c18de2e943f1a7947e8167533b92cb5259a7 (patch) | |
tree | 690198469b804e8ce2eb9791cf17ff9f655cf1e6 /docs/release/scripts/toolchain.lua | |
parent | 6c75c1ae77eec4c7350aed7e824fe19d6b38e8bc (diff) |
Release files for 0.227tag227
Diffstat (limited to 'docs/release/scripts/toolchain.lua')
-rw-r--r-- | docs/release/scripts/toolchain.lua | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/docs/release/scripts/toolchain.lua b/docs/release/scripts/toolchain.lua index 3eb2acf0e0b..e8f1c3caa31 100644 --- a/docs/release/scripts/toolchain.lua +++ b/docs/release/scripts/toolchain.lua @@ -1054,27 +1054,39 @@ function toolchain(_buildDir, _subDir) configuration { "pnacl", "Release" } libdirs { "$(NACL_SDK_ROOT)/lib/pnacl/Release" } - configuration { "osx*", "x32" } + configuration { "osx*", "x32", "not arm64" } objdir (_buildDir .. "osx_clang" .. "/obj") buildoptions { "-m32", } - configuration { "osx*", "x32", "Release" } + configuration { "osx*", "x32", "not arm64", "Release" } targetdir (_buildDir .. "osx_clang" .. "/bin/x32/Release") - configuration { "osx*", "x32", "Debug" } + configuration { "osx*", "x32", "not arm64", "Debug" } targetdir (_buildDir .. "osx_clang" .. "/bin/x32/Debug") - configuration { "osx*", "x64" } + configuration { "osx*", "x64", "not arm64" } objdir (_buildDir .. "osx_clang" .. "/obj") buildoptions { "-m64", "-DHAVE_IMMINTRIN_H=1", } - configuration { "osx*", "x64", "Release" } + configuration { "osx*", "x64", "not arm64", "Release" } targetdir (_buildDir .. "osx_clang" .. "/bin/x64/Release") - configuration { "osx*", "x64", "Debug" } + configuration { "osx*", "x64", "not arm64", "Debug" } + targetdir (_buildDir .. "osx_clang" .. "/bin/x64/Debug") + + configuration { "osx*", "arm64" } + objdir (_buildDir .. "osx_clang" .. "/obj") + buildoptions { + "-m64", "-DHAVE_IMMINTRIN_H=0", "-DSDL_DISABLE_IMMINTRIN_H=1", "-DHAVE_SSE=0" + } + + configuration { "osx*", "arm64", "Release" } + targetdir (_buildDir .. "osx_clang" .. "/bin/x64/Release") + + configuration { "osx*", "arm64", "Debug" } targetdir (_buildDir .. "osx_clang" .. "/bin/x64/Debug") configuration { "ios-arm" } |