-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update BGFX, BX and BIMG #10789
Update BGFX, BX and BIMG #10789
Conversation
Mingw64/GCC with latest updates from pacman fails: |
It gives the same error. |
@happppp looks like msse4.2 is needed, but need to upgrade my env in order to try |
I cherry picked the change to 3rdparty.lua, that fixes the compile issue here. |
I still get build errors unless I make this change: diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua
index 491450f60a3..a2194107813 100644
--- a/scripts/src/3rdparty.lua
+++ b/scripts/src/3rdparty.lua
@@ -1251,7 +1251,7 @@ project "bimg"
configuration { "mingw*" }
defines {
"ASTCENC_AVX=0",
- "ASTCENC_SSE=2",
+ "ASTCENC_SSE=20",
}
configuration { } From the code it looks to me like "2" is not a valid value for ASTCENC_SSE. |
I think you're right. |
Weirdly it worked fine before you did that, now it's broken. |
In my case it was probably the ASTCENC_AVX=0 that fixed the compile. |
Update libraries (as of 26th of December 2022):