⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Ruby master
All Projects
Ruby
»
Ruby master
Overview
Activity
Roadmap
Issues
Repository
Like
Download (804 Bytes)
Bug #19585
» jemallocSucceeds-ruby3.1.2-20230407.sh
eviljoel (evil joel)
, 04/07/2023 11:27 PM
#!/bin/bash
set
-e
INSTALL_DIR
=
$(
mktemp
-d
)
echo
"Installing in
${
INSTALL_DIR
}
"
cd
"
${
INSTALL_DIR
}
"
curl
-LO
https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2
echo
'2db82d1e7119df3e71b7640219b6dfe84789bc0537983c3b7ac4f7189aecfeaa *jemalloc-5.3.0.tar.bz2'
| shasum
-a
256
-c
tar
-xf
jemalloc-5.3.0.tar.bz2
cd
jemalloc-5.3.0
./configure
--prefix
=
"
${
INSTALL_DIR
}
"
--with-rpath
=
"
${
INSTALL_DIR
}
/lib"
make
make
install
cd
"
${
INSTALL_DIR
}
"
curl
-LO
https://cache.ruby-lang.org/pub/ruby/3.1/ruby-3.1.2.tar.xz
echo
'ca10d017f8a1b6d247556622c841fc56b90c03b1803f87198da1e4fd3ec3bf2a *ruby-3.1.2.tar.xz'
| shasum
-a
256
-c
tar
-xf
ruby-3.1.2.tar.xz
cd
ruby-3.1.2
./configure
--enable-shared
--prefix
=
${
INSTALL_DIR
}
--with-opt-dir
=
${
INSTALL_DIR
}
--with-jemalloc
make
make
install
« Previous
1
2
3
…
5
Next »
(1-1/5)
Loading...