[#29911] [Bug #3231] Digest Does Not Build — Charlie Savage <redmine@...>

Bug #3231: Digest Does Not Build

19 messages 2010/05/01

[#29920] [Feature #3232] Loops (while/until) should return last statement value if any, like if/unless — Benoit Daloze <redmine@...>

Feature #3232: Loops (while/until) should return last statement value if any, like if/unless

9 messages 2010/05/01

[#29997] years in Time.utc — Xavier Noria <fxn@...>

Does anyone have a precise statement about the years supported by

13 messages 2010/05/04

[#30010] [Bug #3248] extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly — Luis Lavena <redmine@...>

Bug #3248: extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly

9 messages 2010/05/05

[#30226] [Bug #3288] Segmentation fault - activesupport-3.0.0.beta3/lib/active_support/callbacks.rb:88 — Szymon Jeż <redmine@...>

Bug #3288: Segmentation fault - activesupport-3.0.0.beta3/lib/active_support/callbacks.rb:88

10 messages 2010/05/13

[#30358] tk doesn't startup well in doze — Roger Pack <rogerdpack2@...>

Currently with 1.9.x and tk 8.5,the following occurs

12 messages 2010/05/22

[ruby-core:30117] Re: [Bug #3255] Trunk fail to build without explicit ./configure options (yaml.h not found)

From: Benoit Daloze <eregontp@...>
Date: 2010-05-09 12:39:30 UTC
List: ruby-core #30117
Hi,
On 8 May 2010 19:51, Aaron Patterson <aaron@tenderlovemaking.com> wrote:
>
> You're getting that result because ext/psych/extconf.rb doesn't know
> where to find your installation of libyaml. ou need to provide
> configure with the location of your libyaml installation.
>
> For example, if you've installed libyaml via macports, you should build
> like this:
>
>  ./configure --with-libyaml-dir=/opt/local
>  make
>
> Hope that helps!
>
> --
> Aaron Patterson

Yes, thanks for the hint.
I searched a bit for which configure option is with libyaml, but
completing option did not work.

So this method, as the first one works.

But, it seems the problem is even bigger.

I'm currently using rvm, and so I did: "rvm install ruby-head -C
--with-libyaml-dir=/opt/local"

Which apparently works, seeing the first line of config.log:
$ ./configure --prefix=/Users/benoitdaloze/.rvm/rubies/ruby-head
--with-libyaml-dir=/opt/local

But I still get:
Error running 'make -j 3', please check
/Users/benoitdaloze/.rvm/log/ruby-head/make*.log

The make error log just complains about libyaml, and not finding miniruby.

So I went myself in the src (.rvm/src/ruby-head)

And using 'make' it works.
But using 'make -j 3' I get the error.
(before each 'make' command I did a 'make clean')

I don't know much about the syntax of make,
but as far as I know '-j 3' was just to specify the number of
threads/processes gcc can use.

So here is the output of 'make' and the one of 'make -j 3':
https://gist.github.com/c8034f83cc9afbf79e6b

Regards,
B.D.

In This Thread