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

Enable installing static library for MRI 2.4 and 2.5 #43

Open
wants to merge 2 commits into
base: build
Choose a base branch
from
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
8 changes: 6 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,12 @@ ruby-*)
if [[ $RUBY = *head* ]]; then
EXTRA_FLAGS="--rubygems ignore"
fi
announce rvm install $RUBY $EXTRA_FLAGS --verify-downloads 1 $MOVABLE_FLAG --disable-install-doc -C --without-tcl,--without-tk,--without-gmp;;
CONFIGURE_OPTS=( --without-tcl --without-tk --without-gmp )
case $RUBY in
ruby-2.4*|ruby-2.5*)

This comment was marked as spam.

CONFIGURE_OPTS+=( --enable-install-static-library );;
esac
announce rvm install $RUBY $EXTRA_FLAGS --verify-downloads 1 $MOVABLE_FLAG --disable-install-doc -- ${CONFIGURE_OPTS[@]};;
jruby-head)
update_mvn 3.3.9
announce rvm install $RUBY --verify-downloads 1;;
Expand Down Expand Up @@ -268,4 +273,3 @@ else
echo "This is a Pull Request, skipping."
fi
fold_end check.3