[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Problem building Ruby from sources

Kurt Usen

7/2/2008 3:07:00 PM

Hello,

I am having a problem building Ruby from sources (checked out latest
version with Subversion from repository). I tried it for Ubunty 8.04 and
Cygwin. In both cases I got an error while running make:

echo executable host ruby is required. use --with-baseruby option.;
false -Ks ./tool/insns2vm.rb --srcdir="." opt_sc.inc
executable host ruby is required. use --with-baseruby option.
make: *** [opt_sc.inc] Error 1

What does it mean?

Thank you,

Kurt
--
Posted via http://www.ruby-....

3 Answers

Eric Hodel

7/3/2008 12:37:00 AM

0

On Jul 2, 2008, at 08:06 AM, Kurt Usen wrote:
> I am having a problem building Ruby from sources (checked out latest
> version with Subversion from repository). I tried it for Ubunty 8.04
> and
> Cygwin. In both cases I got an error while running make:
>
> echo executable host ruby is required. use --with-baseruby option.;
> false -Ks ./tool/insns2vm.rb --srcdir="." opt_sc.inc
> executable host ruby is required. use --with-baseruby option.
> make: *** [opt_sc.inc] Error 1
>
> What does it mean?

You don't have ruby installed, or it is not in your path.

If it is not in your path, use ./configure --with-baseruby (I think).

If it is not installed, try 1.8 before building 1.9.

M. Edward (Ed) Borasky

7/3/2008 3:29:00 AM

0

Kurt Usen wrote:
> Hello,
>
> I am having a problem building Ruby from sources (checked out latest
> version with Subversion from repository). I tried it for Ubunty 8.04 and
> Cygwin. In both cases I got an error while running make:
>
> echo executable host ruby is required. use --with-baseruby option.;
> false -Ks ./tool/insns2vm.rb --srcdir="." opt_sc.inc
> executable host ruby is required. use --with-baseruby option.
> make: *** [opt_sc.inc] Error 1
>
> What does it mean?
>
> Thank you,
>
> Kurt

Does it now need a running Ruby interpreter to build?


Kurt Usen

7/3/2008 9:09:00 AM

0

Eric Hodel wrote:
> On Jul 2, 2008, at 08:06 AM, Kurt Usen wrote:
>> What does it mean?
> You don't have ruby installed, or it is not in your path.
>
> If it is not in your path, use ./configure --with-baseruby (I think).
>
> If it is not installed, try 1.8 before building 1.9.

I tried to install 1.8 (and tested that it is working) before build
(although it seemed to me strange enough not to be able to build Ruby
from scratch) and configure --with-baseruby with approximately the same
result...
--
Posted via http://www.ruby-....