Ruby1.9-trunk make failed

on Mac OS X 10.4.11 the ruby1.9-trunk make failed with the following :

~/work/Ruby/ruby1.9-trunk%> make
gcc -g -O2 -pipe -fno-common -I. -I.ext/include/powerpc-darwin8.11.0
-I./include -I. -DRUBY_EXPORT -c main.c
[…]
gcc -g -O2 -pipe -fno-common -I. -I.ext/include/powerpc-darwin8.11.0
-I./include -I. -DRUBY_EXPORT -c pack.c
bison -o y.tab.c parse.y
parse.y:580: non reconnu: %parse_param #(not recognize %parse_para)
parse.y:580: Saut jusqu’au prochain % #(jump to next %)
make: *** [parse.c] Error 1
~

is it a known prob? I’d like to make a try of 1.9…

Hi
On Sun, 2007-12-09 at 22:10 +0900, Une Bévue wrote:

parse.y:580: Saut jusqu’au prochain % #(jump to next %)
make: *** [parse.c] Error 1
~

is it a known prob? I’d like to make a try of 1.9…

Probably should be reported to ruby-core since development of ruby1.9 is
tracked there.

hemant kumar [email protected] wrote:

Probably should be reported to ruby-core since development of ruby1.9 is
tracked there.

OK, done, thanks !

In article
[email protected],
Une Bév ue [email protected] wrote:

gcc -g -O2 -pipe -fno-common -I. -I.ext/include/powerpc-darwin8.11.0
-I./include -I. -DRUBY_EXPORT -c pack.c
bison -o y.tab.c parse.y
parse.y:580: non reconnu: %parse_param #(not recognize %parse_para)
parse.y:580: Saut jusqu’au prochain % #(jump to next %)
make: *** [parse.c] Error 1
~

is it a known prob? I’d like to make a try of 1.9…

Ruby 1.9/trunk requires you to have bison2, it is not compatible with
previous
1.x versions.

I build 1.9 almost every day and it has been working for a few months
now.

Ollivier R. [email protected] wrote:

Ruby 1.9/trunk requires you to have bison2, it is not compatible with previous
1.x versions.

I build 1.9 almost every day and it has been working for a few months now.

yes, thanks, i’ve updated bison in the meantime, Ruby 1.9 is running
now.