vote up 1 vote down star

I am trying to install a ruby gem. I am getting this error.

C:\>gem install racc
Building native extensions.  This could take a while...
ERROR:  Error installing racc:
        ERROR: Failed to build gem native extension.

c:/ruby/bin/ruby.exe extconf.rb install racc
extconf.rb:3:in ``': No such file or directory - uname -p (Errno::ENOENT)
        from extconf.rb:3


Gem files will remain installed in c:/ruby/lib/ruby/gems/1.8/gems/racc-1.4.6 for inspection.
Results logged to c:/ruby/lib/ruby/gems/1.8/gems/racc-1.4.6/ext/racc/cparse/gem_make.out

I have searched this site, but found nothing about it. I have googled too, and found only that updating ruby gems should solve the problem, but it did not.

I have ruby gems 1.2.0 and ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32], Windows 2003.

flag

1  
Is "uname -p" a valid command on your system? – Inshallah Jul 16 at 10:13
No. Looks like that is unix command. en.wikipedia.org/wiki/Uname – Željko Filipin Jul 16 at 10:57
I was thinking about how "uname -p" shows up in the error message and that perhaps it not being present on your system could have caused the error. – Inshallah Jul 16 at 11:02
I understood your comment. :) It gave me an idea to install msys and cygwin to see if it will work then, but no luck. – Željko Filipin Jul 16 at 13:02

1 Answer

vote up 2 vote down check

The offending line in the extconf.rb file in the racc gem is this:

ENV["ARCHFLAGS"] = "-arch #{`uname -p` =~ /powerpc/ ? 'ppc' : 'i386'}"

Since you are not using a PowerPC (unless your setup is exceptionally unusual :) ), you can replace this line with:

ENV["ARCHFLAGS"] = "-arch i386"

I don't know if it will compile successfully now, but at least you'll be past this error.

link|flag
Thanks. That fixed the error, but I get another one this time. :) – Željko Filipin Jul 16 at 14:45
More info: Download racc-1.4.6.tgz from rubyforge.org/frs/?group_id=7299. Extract. Change ENV["ARCHFLAGS"] line in racc-1.4.6\ext\racc\cparse\extconf.rb. Open command prompt at racc-1.4.6 folder. Execute rake gem. in command prompt go to racc-1.4.6\pkg. Execute gem install racc. – Željko Filipin Jul 16 at 14:49
The next error was that nmake is not installed. After I installed it, I got error that cl is not installed. I give up. – Željko Filipin Jul 16 at 14:57

Your Answer

Get an OpenID
or

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