ruby – 无法安装指南针

前端之家收集整理的这篇文章主要介绍了ruby – 无法安装指南针前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
上周我在cygwin上发布了一个更新,因为这是一个“脆弱的问题”.
之后,我不能编译sass了.
我尝试重新安装 ruby,一些安装失败并重新安装cygwin我安装它并更新了“宝石更新 – 系统”
它运行,但是当我试图安装指南针我得到以下消息:
> /usr/bin/ruby.exe -r ./siteconf20141006-7856-1td7wzb.rb extconf.rb 
> checking for ffi.h... *** extconf.rb @R_404_159@ ***  Could not create
> Makefile due to some reason,probably lack of necessary  libraries
> and/or headers. Check the mkmf.log file for more details. You may 
> need configuration options.
> 
> Provided configuration options: 
> --with-opt-dir 
> --without-opt-dir 
> --with-opt-include 
> --without-opt-include=${opt-dir}/include 
> --with-opt-lib 
> --without-opt-lib=${opt-dir}/lib 
> --with-make-prog 
> --without-make-prog 
> --srcdir=. 
> --curdir 
> --ruby=/usr/bin/ruby 
> --with-ffi_c-dir 
> --without-ffi_c-dir 
> --with-ffi_c-include 
> --without-ffi_c-include=${ffi_c-dir}/include 
> --with-ffi_c-lib 
> --without-ffi_c-lib=${ffi_c-dir}/ 
> --with-libffi-config 
> --without-libffi-config 
> --with-pkg-config 
> --without-pkg-config  /usr/share/ruby/2.0.0/mkmf.rb:434:in `try_do': The compiler @R_404_159@ to generate an executable file. (RuntimeError) 
> You have to install development tools first.  from
> /usr/share/ruby/2.0.0/mkmf.rb:565:in `try_cpp'  from
> /usr/share/ruby/2.0.0/mkmf.rb:1044:in `block in have_header'  from
> /usr/share/ruby/2.0.0/mkmf.rb:895:in `block in checking_for'  from
> /usr/share/ruby/2.0.0/mkmf.rb:340:in `block (2 levels) in postpone' 
> from /usr/share/ruby/2.0.0/mkmf.rb:310:in `open'  from
> /usr/share/ruby/2.0.0/mkmf.rb:340:in `block in postpone'  from
> /usr/share/ruby/2.0.0/mkmf.rb:310:in `open'  from
> /usr/share/ruby/2.0.0/mkmf.rb:336:in `postpone'  from
> /usr/share/ruby/2.0.0/mkmf.rb:894:in `checking_for'  from
> /usr/share/ruby/2.0.0/mkmf.rb:1043:in `have_header'  from
> extconf.rb:16:in `<main>'
> 
> extconf @R_404_159@,exit code 1

我试图安装ffi(“gem install ffi”和“gem install ffi –pre”),我得到了相同的消息

这里是log(.gem / ruby​​ / extensions / x86_64-cygwin / ffi-1.9.5 / gem_make.out)

package configuration for libffi is not found 
"gcc -o conftest.exe -I/usr/include/ruby-2.0.0 -I/usr/include/ruby-2.0.0/ruby/backward -I/usr/include/ruby-2.0.0 -I. -ggdb -O2 -pipe -Wimplicit-function-declaration conftest.c -L. -L/usr/lib -L. -fstack-protector -lruby200 -lpthread -lrt -ldl -lcrypt " 
checked program was: 
/* begin */ 
1: #include "ruby.h" 
2: 
3: int main(int argc,char **argv) 
4: { 
5: return 0; 
6: } 
/* end */

我真的很沮丧!!

系统Windows 7 64位
Cygwin的

解决方法

是的,对我来说只是gcc环境,所以你可以试试
sudo apt-get install gcc

这对我在ubuntu 原文链接:https://www.f2er.com/ruby/266714.html

猜你在找的Ruby相关文章