diff options
author | 2018-10-02 21:04:28 -0400 | |
---|---|---|
committer | 2018-10-02 21:04:28 -0400 | |
commit | 4148447f3af189595e6344e134a724311fa23063 (patch) | |
tree | ac7b39159b7f6d9958eb6ae7ac95caf1d6e65cab /scripts/toolchain.lua | |
parent | a543c08767119e1fb983ce11d60c56b3d435003a (diff) |
Fix compiling with SDL 2.0.8 and later on macOS [R. Belmont]
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r-- | scripts/toolchain.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index 7a8a5c43a19..f270d3f69b8 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -1077,7 +1077,7 @@ function toolchain(_buildDir, _subDir) configuration { "osx*", "x64" } objdir (_buildDir .. "osx_clang" .. "/obj") buildoptions { - "-m64", + "-m64", "-DHAVE_IMMINTRIN_H=1", } configuration { "osx*", "x64", "Release" } |