diff options
author | 2023-02-20 03:08:50 +1100 | |
---|---|---|
committer | 2023-02-20 03:08:50 +1100 | |
commit | 63ea39369544e25efff9bfcb0b20db52688562f8 (patch) | |
tree | b1e51da4e5008d1e33d5272df528d6f808d3aafa /scripts/src/3rdparty.lua | |
parent | e60f05fdfd6c15289a4655cadbbc9fd89c4ad045 (diff) |
3rdpary/bimg: Just disable SSE on all 32-bit builds to be safe.
Diffstat (limited to 'scripts/src/3rdparty.lua')
-rw-r--r-- | scripts/src/3rdparty.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 53e4045b446..fb79e05a44d 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -1257,10 +1257,10 @@ project "bimg" } configuration { } - configuration { "x32", "mingw*" } + configuration { "x32" } defines { "ASTCENC_AVX=0", - "ASTCENC_SSE=0", + "ASTCENC_SSE=0", -- assumes x86-64 ALU is present when using SSE } configuration { } |