Skip to content
This repository has been archived by the owner on Jan 14, 2023. It is now read-only.

setup: update distros that need internal libint #5

Merged
merged 1 commit into from
Sep 27, 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
5 changes: 3 additions & 2 deletions setup/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@ if [[ ${INPUT_DISTRO} = "gentoo:latest" ]]; then
cmake_args+=( -DBUILD_CSG_MANUAL=OFF )
fi

# Gentoo has no libint yet
if [[ ${INPUT_DISTRO} = "opensuse:latest" ]]; then
# Some distros don't have new enough libint yet
# fedora:latest = F32 only has libint2-2.1.0
if [[ ${INPUT_DISTRO} = "fedora:latest" ]]; then
cmake_args+=( -DBUILD_OWN_LIBINT=ON )
fi

Expand Down