Using RVM, I tried to install ree-1.8.7-2011.03 after installing Fedora 15 and I get the following error. Using rvm install ree-1.8.7-2011.03 on Ubuntu 11.04 works fine..

Same error (and solution) with MRI ruby-1.8.7-p334 on Fedora 15.

Any ideas as to how to fix this?

make[1]: Entering directory `/home/ryguy/.rvm/src/ree-1.8.7-2011.03/source/ext/dl'
gcc -I/opt/local/include -I. -I/opt/local/include -I../.. -I../../. -I../.././ext/dl -DHAVE_DLFCN_H -DHAVE_DLOPEN -DHAVE_DLCLOSE -DHAVE_DLSYM -DHAVE_DLERROR    -I. -fPIC -g -O2   -fno-defer-pop -fno-omit-frame-pointer  -c ptr.c
gcc -I/opt/local/include -I. -I/opt/local/include -I../.. -I../../. -I../.././ext/dl -DHAVE_DLFCN_H -DHAVE_DLOPEN -DHAVE_DLCLOSE -DHAVE_DLSYM -DHAVE_DLERROR    -I. -fPIC -g -O2   -fno-defer-pop -fno-omit-frame-pointer  -c handle.c
Generating callback.func
Generating cbtable.func
gcc -I/opt/local/include -I. -I/opt/local/include -I../.. -I../../. -I../.././ext/dl -DHAVE_DLFCN_H -DHAVE_DLOPEN -DHAVE_DLCLOSE -DHAVE_DLSYM -DHAVE_DLERROR    -I. -fPIC -g -O2   -fno-defer-pop -fno-omit-frame-pointer  -c dl.c
In file included from dl.c:104:0:
callback.func:1:1: warning: data definition has no type or storage class [enabled by default]
callback.func:1:7: error: expected identifier or ‘(’ before ‘long’
In file included from dl.c:104:0:
callback.func:78:33: error: expected ‘)’ before ‘(’ token
callback.func:79:3: warning: data definition has no type or storage class [enabled by default]
callback.func:79:24: error: ‘proc’ undeclared here (not in a function)
callback.func:79:39: error: ‘argc’ undeclared here (not in a function)
callback.func:79:45: error: ‘argv’ undeclared here (not in a function)
callback.func:82:1: error: expected identifier or ‘(’ before ‘}’ token
dl.c:106:1: error: expected ‘;’, ‘,’ or ‘)’ before ‘static’
make[1]: *** [dl.o] Error 1
make[1]: Leaving directory `/home/ryguy/.rvm/src/ree-1.8.7-2011.03/source/ext/dl'
make: *** [all] Error 1
link|improve this question

67% accept rate
What's the output of rvm notes? – Andy Gaskell May 26 '11 at 6:20
Why is it adding /opt/local/include to the include path? Did you do that? – noodl May 26 '11 at 6:20
@Andy gist.github.com/992640 @noodl All I did was rvm install ree-1.8.7-2011.03 – c00lryguy May 26 '11 at 6:23
I did install all packages required within rvm notes except yum couldn't find iconv-devel – c00lryguy May 26 '11 at 6:24
Small update: in callback.fun, the very last two lines is this: gist.github.com/992644 It is clear that somehow this code is getting cut off but I do not understand why. – c00lryguy May 26 '11 at 6:30
show 10 more comments
feedback

5 Answers

This also happens when installing ruby-1.8.7 with rvm in Fedora 15.

Reinier Balt's answer also works, in my case I had to install system wide ruby using yum.

Here's what I did:

cd ~/.rvm/src/ruby-1.8.7-p334/ext/dl
ruby mkcallback.rb > callback.func
ruby mkcbtable.rb > cbtable.func
link|improve this answer
I also needed: yum install gdbm.x86_64 gdbm-devel.x86_64, hope it helps someone. – grilix Jun 14 '11 at 17:54
This worked for me installing rvm as root. I did not need the gdbm* packages. – MarkD Jul 15 '11 at 22:20
1  
This worked for me, however I also had to yum install ruby-devel – Andrew Myers Aug 19 '11 at 12:53
This worked for me on Fedora 16 as well. – Saaraneth Jan 20 at 13:57
feedback

I saw this too

I went into the src/ext/dl directory and manually generated callback.func and cbtable.func which are both incomplete. I had to do

rm callback.func
touch callback.func
ruby mkcallback.rb >> callback.func

(repeat for cbtable)

Somehow the simple ruby mkcallback.rb > callback.func did not work

then rerun rvm install 1.8.7 which will not overwrite your changes.

link|improve this answer
It didn't worked on my setup (Fedora Core 15, rvm installed as root, installing ree). The ruby call kept failing with the message: mkcallback.rb:6:in 'require': no such file to load -- dlconfig (LoadError) from mkcallback.rb:6 – Fábio Batista Jul 13 '11 at 21:56
You may also encounter: mkmf.rb can't find header files for ruby at /usr/lib/ruby/ruby.h in which case you need to install the ruby-devel package – Derek Ekins Jul 17 '11 at 15:27
feedback

http://redmine.ruby-lang.org/issues/5108

[[tl;dr: see patch at bottom]]

link|improve this answer
This patch worked for me, thanks. – atomicules Aug 2 '11 at 9:47
1  
This is the root cause of it, and is the proper solution, unlike my hack :) – BeepDog Aug 7 '11 at 23:41
1  
I am on archlinux. I downloaded the patch mentioned in the answer and did $ rvm install 1.8.7-p352 --patch /path/to/downloaded/patch.patch. It worked w/o any issues. – Waseem Aug 29 '11 at 6:36
I can confirm that this patch works on Fedora 16. Make sure to run rvm cleanup all to remove any stale bad files before attempting to install with the patch. – Fotios Feb 2 at 19:25
feedback

I don't know why this happens, but it appears that the redirection to the file doesn't completely redirect the output. As a temporary hack/fix, that does get it working, you can pipe it through tee. It gets the job done, but is certainly not the proper solution.

Patch: https://gist.github.com/1083163

This patch when applied like so: rvm install --patch /path/to/Fedora-15-ruby-1.8.7-p352.patch%0 ruby-1.8.7 will work. I will test it with ree as well and update.

EDIT: This same patch also works with ree.

rvm install --patch /path/to/Fedora-15-ruby-1.8.76-p352.patch%0 ree successfully installed a working ree for me.

link|improve this answer
This answer looks promising, can anyone check its validity so I can award the bounty? I actually gave up on Fedora 15 and installed Ubuntu, which worked nicely. – Fábio Batista Jul 20 '11 at 15:02
Heh, I don't think it's going to make it in 1 hour, but thanks for the consideration ;) – BeepDog Jul 20 '11 at 19:56
The patch didn't work but I modified the ext/dl/depend file as the patch says and it now works fine, thanks – Mildred Aug 3 '11 at 9:50
feedback

patch from user865548 is now available in RVM (will be 1.9.1 or just rvm get head)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.