1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-09-15 18:57:08 +00:00

Refresh win32 toolchain and libraries (#15890)

This commit is contained in:
sfan5 2025-03-11 19:59:03 +01:00 committed by GitHub
parent b9ed4793ea
commit 287880aa27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 24 additions and 24 deletions

View file

@ -3,19 +3,19 @@ CORE_BRANCH=master
CORE_NAME=minetest
ogg_version=1.3.5
openal_version=1.23.1
openal_version=1.24.2
vorbis_version=1.3.7
curl_version=8.9.1
curl_version=8.12.1
gettext_version=0.20.2
freetype_version=2.13.3
sqlite3_version=3.46.1
luajit_version=20240905
luajit_version=20250113
leveldb_version=1.23
zlib_version=1.3.1
zstd_version=1.5.6
zstd_version=1.5.7
libjpeg_version=3.0.1
libpng_version=1.6.43
sdl2_version=2.30.7
libpng_version=1.6.47
sdl2_version=2.32.2
download () {
local url=$1
@ -51,10 +51,10 @@ get_sources () {
# sets $runtime_dlls
find_runtime_dlls () {
local triple=$1
# Try to find runtime DLLs in various paths
# Try to find runtime DLLs in various paths (fun)
local tmp=$(dirname "$(command -v $compiler)")/..
runtime_dlls=
for name in lib{clang_rt,c++,unwind,winpthread-}'*'.dll; do
for name in lib{c++,unwind,winpthread-}'*'.dll; do
for dir in $tmp/$triple/{bin,lib}; do
[ -d "$dir" ] || continue
local file=$(echo $dir/$name)