From ef19465c05b7248e7febfd50c04d3d08e168fe1a Mon Sep 17 00:00:00 2001 From: Jack Greiner Date: Wed, 10 Jan 2024 12:01:44 -0500 Subject: [PATCH] Housekeeping: Update OpenBLAS in naev-windows. --- CHANGELOG.md | 3 +++ naev-windows/Dockerfile | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f00947b..eb4c8e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ - `naev-steamruntime` (Used for testing linux steam builds in the steamruntime (sniper) environment with extra dependencies installed.) - `naev-windows` (Used to cross compile for Windows.) +### v1.9.1 +- Update OpenBLAS to v0.3.26 in `naev-windows`. + ### v1.9.0 - `naev-macos`: Update SDK, merge aarch64 and x86_64 images. - Pass $BUILD_ARCH when starting this image to configure the correct macports packages. diff --git a/naev-windows/Dockerfile b/naev-windows/Dockerfile index 4dccbf2..00701b4 100644 --- a/naev-windows/Dockerfile +++ b/naev-windows/Dockerfile @@ -18,9 +18,9 @@ RUN microdnf --nodocs --setopt=install_weak_deps=0 -y install gcc gettext git me mingw64-SDL2 mingw64-SDL2_image mingw64-libpng mingw32-nsis mingw64-pcre2 mingw64-physfs && \ microdnf clean all && \ # Install openblas for mingw (building this from source is an option but probably painful) - curl -L -O https://github.com/xianyi/OpenBLAS/releases/download/v0.3.20/OpenBLAS-0.3.20-x64.zip && \ - unzip OpenBLAS-0.3.20-x64.zip -d /usr/x86_64-w64-mingw32/sys-root/mingw && \ - rm -rf OpenBLAS-0.3.20-x64.zip && \ + curl -L -O https://github.com/OpenMathLib/OpenBLAS/releases/download/v0.3.26/OpenBLAS-0.3.26-x64.zip && \ + unzip OpenBLAS-0.3.26-x64.zip -d /usr/x86_64-w64-mingw32/sys-root/mingw && \ + rm -rf OpenBLAS-0.3.26-x64.zip && \ # Install cross-build of enet curl -L -O http://enet.bespin.org/download/enet-1.3.17.tar.gz && \ tar zxf enet-1.3.17.tar.gz && \