2016-02-11 6 views
6

Właśnie zmieniłem format mojego MacBooka i próbuję sklonować mój projekt Rails. Kiedy wykonuję bundle install, gem Puma nie powiódł się.Nie można zainstalować Puma gem na OSX 10.11.3

Kiedy biegnę gem install puma -v '2.13.4', otrzymuję ten błąd:

Fetching: puma-2.13.4.gem (100%) 
Building native extensions. This could take a while... 
ERROR: Error installing puma: 
    ERROR: Failed to build gem native extension. 

    /Users/zulhilmi/.rvm/rubies/ruby-2.2.0/bin/ruby -r ./siteconf20160211-95547-1pdaoaq.rb extconf.rb 
checking for BIO_read() in -lcrypto... yes 
checking for SSL_CTX_new() in -lssl... yes 
creating Makefile 

make "DESTDIR=" clean 

make "DESTDIR=" 
compiling http11_parser.c 
compiling io_buffer.c 
io_buffer.c:119:10: warning: passing 'uint8_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign] 
    return rb_str_new(b->top, b->cur - b->top); 
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
/Users/zulhilmi/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/intern.h:796:20: note: expanded from macro 'rb_str_new' 
     rb_str_new_static((str), (len)) : \ 
          ^~~~~ 
/Users/zulhilmi/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/intern.h:727:37: note: passing argument to parameter here 
VALUE rb_str_new_static(const char *, long); 
            ^
io_buffer.c:119:10: warning: passing 'uint8_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types with different sign [-Wpointer-sign] 
    return rb_str_new(b->top, b->cur - b->top); 
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
/Users/zulhilmi/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/intern.h:797:13: note: expanded from macro 'rb_str_new' 
     rb_str_new((str), (len));   \ 
        ^~~~~ 
/Users/zulhilmi/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/intern.h:706:29: note: passing argument to parameter here 
VALUE rb_str_new(const char*, long); 
          ^
2 warnings generated. 
compiling mini_ssl.c 
In file included from mini_ssl.c:3: 
/Users/zulhilmi/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/ruby/backward/rubyio.h:2:2: warning: use "ruby/io.h" instead of "rubyio.h" [-W#warnings] 
#warning use "ruby/io.h" instead of "rubyio.h" 
^ 
mini_ssl.c:4:10: fatal error: 'openssl/bio.h' file not found 
#include <openssl/bio.h> 
     ^
1 warning and 1 error generated. 
make: *** [mini_ssl.o] Error 1 

make failed, exit code 2 

Gem files will remain installed in /Users/zulhilmi/.rvm/rubies/ruby-2.2.0/lib/ruby/gems/2.2.0/gems/puma-2.13.4 for inspection. 

co mam zrobić?

O moim projekcie i mojego środowiska:

  • Ruby 2.2.0 (używam RVM)
  • Rails 4.2.0
  • OSX: 10.11.3
+0

Wygląda na to trzeba zainstalować zależności jak OpenSSL: [Link] (http://stackoverflow.com/questions/ 30143180/puma-gem-nie powiodło się-build-gem-native-rozszerzenie) – Vincent

Odpowiedz

4

This solution roboty dla mnie:

brew install openssl 
brew link --force openssl 
18

Zamiast force linking openssl (który jest NOT zalecany zgodnie z tym Github Opened issue) zgodnie z propozycją Zulhilmi Zainudin, Polecam następujące rozwiązanie oparte na numerze 783 kodu źródłowego Puma (odnośnik poniżej).
Używam El Capitan (10.11) z zainstalowanym poprzez Homebrew OpenSSL:

$ gem install puma -v 2.13.4 -- --with-opt-dir=/usr/local/opt/openssl

referencyjny: https://github.com/puma/puma/issues/783

Ale jeśli chcesz, aby pracować dla wszystkich Gemfiles nadal można:

$ bundle config build.puma --with-opt-dir=/usr/local/opt/openssl

i potwierdź:
$ grep PUMA ~/.bundle/config

wyjście powinno być:

BUNDLE_BUILD__PUMA: "--with-opt-dir=/usr/local/opt/openssl"

referencyjny: https://github.com/puma/puma/issues/718

+1

to właśnie uratowało mi życie, dziękuję – yuval

Powiązane problemy