Skip to content
Open
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
11 changes: 4 additions & 7 deletions L/libsemigroups/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ const YGGDRASIL_DIR = "../.."
include(joinpath(YGGDRASIL_DIR, "platforms", "macos_sdks.jl"))

name = "libsemigroups"
version = v"3.4.0"
version = v"3.5.1"

# Collection of sources required to complete build
sources = [
GitSource("https://github.com/libsemigroups/libsemigroups.git",
"6b63b74b37ad8d5fe0be82b3225e048d95b3eb2c"), # v3.4.0
"64b31f23d57ca36f613f2adc8525df36cd8bf2f2"), # v3.5.1
]

# Bash recipe for building across all platforms
Expand All @@ -20,11 +20,8 @@ cd $WORKSPACE/srcdir/libsemigroups
./autogen.sh
export CPPFLAGS="-I${prefix}/include"

# Disable HPCombi on 32-bit platforms (requires __int128)
HPCOMBI_FLAG=""
if [[ "${nbits}" == 32 ]] || [[ "${target}" == powerpc* ]]; then
HPCOMBI_FLAG="--disable-hpcombi"
fi
# Disable HPCombi on all platforms
HPCOMBI_FLAG="--disable-hpcombi"

./configure --prefix=${prefix} \
--build=${MACHTYPE} \
Expand Down