diff options
author | 2023-09-01 09:06:21 -0700 | |
---|---|---|
committer | 2023-09-02 02:06:21 +1000 | |
commit | 20a8b896abf71a831a245f835e8fdc7d916b9fea (patch) | |
tree | b1749b5003649218655a7fb97b3e955c57c4da04 /scripts/src | |
parent | 39b639d058275990289db08a159752d9c4f5d11f (diff) |
Fixed MinGW AArch64 issues: (#11521)
* 3rdparty/bimg: Don't enable SSE on MinGW arm64 targets.
* diagnostics/diagnostics_win32.cpp: Added Windows arm64 support.
Diffstat (limited to 'scripts/src')
-rwxr-xr-x | scripts/src/3rdparty.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index e7a7010acb1..af84db53384 100755 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -1285,7 +1285,7 @@ project "bimg" "BX_CONFIG_DEBUG=0", } - configuration { "x64", "mingw*" } + configuration { "x64", "mingw*", "not arm64" } defines { "ASTCENC_AVX=0", "ASTCENC_SSE=20", |