changeset 31839:f184279bd67f stable

GitHub-CI: Don't use weak symbols on Windows. * .github/workflows/make.yaml (mingw): Manually set gl_cv_have_weak=no to work around bug in binutils on Windows. See: https://cygwin.com/pipermail/cygwin/2023-February/253067.html or: https://octave.discourse.group/t/octave-8-release-tasks/3602/131
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 18 Feb 2023 15:01:10 +0100
parents c5fa6a6ba7af
children 3291f49ae696 0d77475a7507
files .github/workflows/make.yaml
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Thu Feb 16 09:30:32 2023 +0100
+++ b/.github/workflows/make.yaml	Sat Feb 18 15:01:10 2023 +0100
@@ -524,7 +524,8 @@
           mkdir .build
           cd .build && ../configure \
             JAVA_HOME="" \
-            --disable-docs
+            --disable-docs \
+            gl_cv_have_weak=no
 
       - name: build
         # Spawning processes seems to have a big overhead on this platform. Use a somewhat larger number of parallel processes to compensate for that.