[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Buiulding multiple versions of Ruby

John Maclean

3/24/2009 10:26:00 AM

This is the way that I build ruby from the latest svn sources. This
allows me to have multiple versions and to compare the
performance/behaviour of my builds against the stable version provided
by my distro.

cd ~/path/to/source
/configure --prefix=/home/jayeola/installs --program-suffix=191
make -j2 && make -j2 install


How do you guys do it?

--
John Maclean
07739 171 531
MSc (DIC)

Timezone: GMT

1 Answer

Brian Candler

3/24/2009 4:08:00 PM

0

john maclean wrote:
> cd ~/path/to/source
> ./configure --prefix=/home/jayeola/installs --program-suffix=191
> make -j2 && make -j2 install
>
>
> How do you guys do it?

This is correct, except ruby 1.8.6 and 1.8.7 clash, so if you want both
of those give them a different --prefix
--
Posted via http://www.ruby-....