diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2015-05-01 14:20:31 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-05-11 10:27:29 +0200 |
commit | 41e45a16f61b59f54d5408bcd861fff1caa62d7d (patch) | |
tree | 4989c6275e834486a11b66bded1ec640a51448c1 /meta-ruby/recipes-devtools | |
parent | 86835b4ac5ee593e8bd5b142504194370df71728 (diff) | |
download | meta-openembedded-41e45a16f61b59f54d5408bcd861fff1caa62d7d.tar.gz |
ruby: explicitly disable dtrace support
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>
Diffstat (limited to 'meta-ruby/recipes-devtools')
-rw-r--r-- | meta-ruby/recipes-devtools/ruby/ruby_2.2.2.bb | 1 |
1 files changed, 1 insertions, 0 deletions
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 c463525c2..78c943cc6 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," | |||
18 | EXTRA_OECONF = "\ | 18 | EXTRA_OECONF = "\ |
19 | --disable-versioned-paths \ | 19 | --disable-versioned-paths \ |
20 | --disable-rpath \ | 20 | --disable-rpath \ |
21 | --disable-dtrace \ | ||
21 | --enable-shared \ | 22 | --enable-shared \ |
22 | --enable-load-relative \ | 23 | --enable-load-relative \ |
23 | " | 24 | " |