Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,11 @@ jobs:
export FC=gfortran-14
../../configure --with-system-gc --with-fplll

- name: Build libraries using Make
if: matrix.build-system == 'autotools'
run: |
make -j$(nproc 2>/dev/null || sysctl -n hw.logicalcpu) -C libraries

- name: Build Macaulay2 using Make
if: matrix.build-system == 'autotools'
run: |
Expand Down
4 changes: 2 additions & 2 deletions M2/cmake/build-libraries.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,8 @@ endif()

# https://github.com/algebraic-solving/msolve
ExternalProject_Add(build-msolve
URL https://github.com/algebraic-solving/msolve/archive/refs/tags/v0.9.1.tar.gz
URL_HASH SHA256=65e5108fa9ef0628c57c3d74737b27582f8deb49a716fbec39d40f4faeb76d4f
URL https://github.com/algebraic-solving/msolve/archive/refs/tags/v0.9.2.tar.gz
URL_HASH SHA256=9ba8b290fee048e49615015c43a7a1f2c05ac7e7fb277a964105d51c082f7d9f
PREFIX libraries/msolve
SOURCE_DIR libraries/msolve/build
DOWNLOAD_DIR ${CMAKE_SOURCE_DIR}/BUILD/tarfiles
Expand Down
2 changes: 1 addition & 1 deletion M2/libraries/msolve/Makefile.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
HOMEPAGE = https://msolve.lip6.fr/
VERSION = 0.9.1
VERSION = 0.9.2
URL = https://github.com/algebraic-solving/msolve/archive/refs/tags
TARFILE = v$(VERSION).tar.gz
LICENSEFILES = README.md COPYING
Expand Down