Skip to content
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 Singular, fix GMP dependency #1718

Merged
merged 1 commit into from
Oct 4, 2020
Merged
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
6 changes: 3 additions & 3 deletions S/Singular/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version = v"4.1.3" # this is actually 4.1.3p5 with some extra patches

# Collection of sources required to build normaliz
sources = [
GitSource("https://github.com/Singular/Sources.git", "eca06c1bccc0f72a9c3147f058fd8aad961ad7ee"),
GitSource("https://github.com/Singular/Sources.git", "17f0567a82824601e71ff151ecb63d656719b866"),
]

# Bash recipe for building across all platforms
Expand All @@ -34,7 +34,7 @@ make install
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms()
platforms = filter!(p -> !(p isa Windows), platforms)
platforms = filter!(p -> !Sys.iswindows(p), platforms)
platforms = expand_cxxstring_abis(platforms)

# The products that we will ensure are always built
Expand All @@ -56,7 +56,7 @@ products = [
dependencies = [
Dependency("cddlib_jll"),
Dependency("FLINT_jll"),
Dependency("GMP_jll"),
Dependency("GMP_jll", v"6.1.2"),
giordano marked this conversation as resolved.
Show resolved Hide resolved
Dependency("MPFR_jll"),
]

Expand Down