Skip to content

Commit a9af7bc

Browse files
committed
Ruby 2.5.9
1 parent 0204fe4 commit a9af7bc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

2.5.9

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
install_bundler() {
2+
"$PREFIX_PATH"/bin/gem install bundler:2.3.27
3+
}
4+
5+
export RUBY_CFLAGS="-O3 -march=native"
6+
7+
package_option ruby configure --with-out-ext=tcl --with-out-ext=tk --disable-install-doc
8+
9+
# GCC will complain about unrecognized warnings
10+
if cc -v 2>&1 | grep clang >/dev/null; then
11+
export RUBY_CFLAGS="$RUBY_CFLAGS -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=compound-token-split-by-macro -Wno-error=implicit-function-declaration"
12+
fi
13+
14+
install_package "openssl-1.1.1w" "https://www.openssl.org/source/openssl-1.1.1w.tar.gz#cf3098950cb4d853ad95c0841f1f9c6d3dc102dccfcacd521d93925208b76ac8" openssl
15+
install_package "ruby-2.5.9" "https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.9.tar.bz2#bebbe3fe7899acd3ca2f213de38158709555e88a13f85ba5dc95239654bcfeeb" enable_shared standard
16+
install_bundler

0 commit comments

Comments
 (0)