All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-ruby][PATCH] ruby: explicitly disable dtrace support
@ 2015-05-01 12:30 Martin Jansa
  2015-05-02  0:08 ` akuster808
  2015-05-05 12:12 ` Steffen Sledz
  0 siblings, 2 replies; 5+ messages in thread
From: Martin Jansa @ 2015-05-01 12:30 UTC (permalink / raw)
  To: openembedded-devel

both 2.2.1 and 2.2.2 are failing on some hosts native builds with:
| linking miniruby
| load.o: In function `rb_f_load':
| load.c:(.text+0x3af): undefined reference to `RUBY_DTRACE_LOAD_ENTRY_ENABLED'
| load.c:(.text+0x428): undefined reference to `RUBY_DTRACE_LOAD_RETURN_ENABLED'
| load.c:(.text+0x452): undefined reference to `RUBY_DTRACE_LOAD_RETURN'
| load.c:(.text+0x492): undefined reference to `RUBY_DTRACE_LOAD_ENTRY'
| load.o: In function `rb_require_internal':

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
index c463525..78c943c 100644
--- a/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
+++ b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
@@ -18,6 +18,7 @@ PACKAGECONFIG[ipv6] = ",--enable-wide-getaddrinfo,"
 EXTRA_OECONF = "\
     --disable-versioned-paths \
     --disable-rpath \
+    --disable-dtrace \
     --enable-shared \
     --enable-load-relative \
 "
-- 
2.3.5



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [meta-ruby][PATCH] ruby: explicitly disable dtrace support
  2015-05-01 12:30 [meta-ruby][PATCH] ruby: explicitly disable dtrace support Martin Jansa
@ 2015-05-02  0:08 ` akuster808
  2015-05-02  8:11   ` Martin Jansa
  2015-05-05 12:12 ` Steffen Sledz
  1 sibling, 1 reply; 5+ messages in thread
From: akuster808 @ 2015-05-02  0:08 UTC (permalink / raw)
  To: openembedded-devel

Martin,

Are you pushing in that change. As far as I know, I don't have write 
access for that layer. Let me know what process you want me to follow.

- armin

On 05/01/2015 05:30 AM, Martin Jansa wrote:
> both 2.2.1 and 2.2.2 are failing on some hosts native builds with:
> | linking miniruby
> | load.o: In function `rb_f_load':
> | load.c:(.text+0x3af): undefined reference to `RUBY_DTRACE_LOAD_ENTRY_ENABLED'
> | load.c:(.text+0x428): undefined reference to `RUBY_DTRACE_LOAD_RETURN_ENABLED'
> | load.c:(.text+0x452): undefined reference to `RUBY_DTRACE_LOAD_RETURN'
> | load.c:(.text+0x492): undefined reference to `RUBY_DTRACE_LOAD_ENTRY'
> | load.o: In function `rb_require_internal':
>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>   meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
> index c463525..78c943c 100644
> --- a/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
> +++ b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
> @@ -18,6 +18,7 @@ PACKAGECONFIG[ipv6] = ",--enable-wide-getaddrinfo,"
>   EXTRA_OECONF = "\
>       --disable-versioned-paths \
>       --disable-rpath \
> +    --disable-dtrace \
>       --enable-shared \
>       --enable-load-relative \
>   "
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [meta-ruby][PATCH] ruby: explicitly disable dtrace support
  2015-05-02  0:08 ` akuster808
@ 2015-05-02  8:11   ` Martin Jansa
  0 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2015-05-02  8:11 UTC (permalink / raw)
  To: openembedded-devel

On Fri, May 01, 2015 at 05:08:35PM -0700, akuster808 wrote:
> Martin,
> 
> Are you pushing in that change. As far as I know, I don't have write 
> access for that layer. Let me know what process you want me to follow.

You mean for jansa/master or master-next, just sending v2 to list would
work for me, but if the only difference is this dtrace, then don't send
anything and I'll apply both as they are.

> 
> - armin
> 
> On 05/01/2015 05:30 AM, Martin Jansa wrote:
> > both 2.2.1 and 2.2.2 are failing on some hosts native builds with:
> > | linking miniruby
> > | load.o: In function `rb_f_load':
> > | load.c:(.text+0x3af): undefined reference to `RUBY_DTRACE_LOAD_ENTRY_ENABLED'
> > | load.c:(.text+0x428): undefined reference to `RUBY_DTRACE_LOAD_RETURN_ENABLED'
> > | load.c:(.text+0x452): undefined reference to `RUBY_DTRACE_LOAD_RETURN'
> > | load.c:(.text+0x492): undefined reference to `RUBY_DTRACE_LOAD_ENTRY'
> > | load.o: In function `rb_require_internal':
> >
> > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> > ---
> >   meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb | 1 +
> >   1 file changed, 1 insertion(+)
> >
> > diff --git a/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
> > index c463525..78c943c 100644
> > --- a/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
> > +++ b/meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb
> > @@ -18,6 +18,7 @@ PACKAGECONFIG[ipv6] = ",--enable-wide-getaddrinfo,"
> >   EXTRA_OECONF = "\
> >       --disable-versioned-paths \
> >       --disable-rpath \
> > +    --disable-dtrace \
> >       --enable-shared \
> >       --enable-load-relative \
> >   "
> >
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [meta-ruby][PATCH] ruby: explicitly disable dtrace support
  2015-05-01 12:30 [meta-ruby][PATCH] ruby: explicitly disable dtrace support Martin Jansa
  2015-05-02  0:08 ` akuster808
@ 2015-05-05 12:12 ` Steffen Sledz
  2015-05-05 15:25   ` akuster808
  1 sibling, 1 reply; 5+ messages in thread
From: Steffen Sledz @ 2015-05-05 12:12 UTC (permalink / raw)
  To: openembedded-devel, Armin Kuster, Otavio Salvador

On 01.05.2015 14:30, Martin Jansa wrote:
> both 2.2.1 and 2.2.2 are failing on some hosts native builds with:
> ...

It would be really great if this patch could make it to the fido branch!

We are some of the mourners and cannot build fido at the moment. :(

-- 
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [meta-ruby][PATCH] ruby: explicitly disable dtrace support
  2015-05-05 12:12 ` Steffen Sledz
@ 2015-05-05 15:25   ` akuster808
  0 siblings, 0 replies; 5+ messages in thread
From: akuster808 @ 2015-05-05 15:25 UTC (permalink / raw)
  To: Steffen Sledz, openembedded-devel, Otavio Salvador

on my list.

thanks

On 05/05/2015 05:12 AM, Steffen Sledz wrote:
> On 01.05.2015 14:30, Martin Jansa wrote:
>> both 2.2.1 and 2.2.2 are failing on some hosts native builds with:
>> ...
>
> It would be really great if this patch could make it to the fido branch!
>
> We are some of the mourners and cannot build fido at the moment. :(
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-05-05 15:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-01 12:30 [meta-ruby][PATCH] ruby: explicitly disable dtrace support Martin Jansa
2015-05-02  0:08 ` akuster808
2015-05-02  8:11   ` Martin Jansa
2015-05-05 12:12 ` Steffen Sledz
2015-05-05 15:25   ` akuster808

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.