Подтвердить что ты не робот

Проблемы с установкой Ruby on Mountain Lion - ruby ​​1.9.3 wont 'compile

Я видел несколько сообщений по этому поводу и выполнял их инструкции, но ничего не работает. Я опишу ниже, что я сделал, и инструкции, которые я привел, были бы благодарны за любой совет!

Я выполнил следующие инструкции по установке: http://pragmaticstudio.com/blog/2010/9/23/install-rails-ruby-mac

Я загрузил X-код для OSX Mountain Lion и установил gcc-компилятор:

$ gcc --version
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Затем я выполнил инструкции и установил последнюю версию git

$ git --version
git version 1.7.10.2 (Apple Git-33)

и аналогичным образом сделал то же самое с rvm через командную строку:

$ rvm --version
rvm 1.16.13 (stable) by Wayne E. Seguin <[email protected]>, Michal Papis <[email protected]> [https://rvm.io/]

Когда я пытаюсь установить ruby ​​с помощью RVM, я получаю следующее:

$ rvm install 1.9.3
No binary rubies available for: osx/10.8/x86_64/ruby-1.9.3-p286.
Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies.
Installing Ruby from source to: /Users/mondemoo/.rvm/rubies/ruby-1.9.3-p286, this may take a while depending on your cpu(s)...
ruby-1.9.3-p286 - #downloading ruby-1.9.3-p286, this may take a while depending on your connection...
ruby-1.9.3-p286 - #extracted to /Users/mondemoo/.rvm/src/ruby-1.9.3-p286 (already extracted)
ruby-1.9.3-p286 - #configuring
Error running 'env LDFLAGS=-L/opt/sm/pkg/active/lib CFLAGS=-I/opt/sm/pkg/active/include CPATH=/opt/sm/pkg/active/include -L/Users/mondemoo/.rvm/usr/lib ./configure --enable-shared --disable-install-doc --prefix=/Users/mondemoo/.rvm/rubies/ruby-1.9.3-p286', please read /Users/mondemoo/.rvm/log/ruby-1.9.3-p286/configure.log
There has been an error while running configure. Halting the installation.

Используя альтернативную командную строку, я получаю аналогичный вывод, хотя с некоторыми дополнительными битами:

$ rvm install 1.9.3 --with-gcc=clang
-bash: -dumpversion: command not found
-bash: --version: command not found
-bash: --version: command not found
Installing Ruby from source to: /Users/mondemoo/.rvm/rubies/ruby-1.9.3-p286, this may take a while depending on your cpu(s)...
ruby-1.9.3-p286 - #downloading ruby-1.9.3-p286, this may take a while depending on your connection...
ruby-1.9.3-p286 - #extracted to /Users/mondemoo/.rvm/src/ruby-1.9.3-p286 (already extracted)
ruby-1.9.3-p286 - #configuring
Error running 'env LDFLAGS=-L/opt/sm/pkg/active/lib CFLAGS=-I/opt/sm/pkg/active/include CPATH=/opt/sm/pkg/active/include -L/Users/mondemoo/.rvm/usr/lib ./configure --enable-shared --disable-install-doc --prefix=/Users/mondemoo/.rvm/rubies/ruby-1.9.3-p286 --with-gcc=clang', please read /Users/mondemoo/.rvm/log/ruby-1.9.3-p286/configure.log
There has been an error while running configure. Halting the installation.
-bash: --version: command not found

Заглядывая в configure.logs, я получаю следующее:

$ less /Users/mondemoo/.rvm/log/ruby-1.9.3-p286/configure.log
[2012-10-17 07:39:15] env LDFLAGS=-L/opt/sm/pkg/active/lib CFLAGS=-I/opt/sm/pkg/active/include CPATH=/opt/sm/pkg/active/include -L/Users/mondemoo/.rvm/usr/lib ./configure --enable-shared --disable-install-doc --prefix=/Users/mondemoo/.rvm/rubies/ruby-1.9.3-p286 --with-gcc=clang
checking build system type... x86_64-apple-darwin12.2.0
checking host system type... x86_64-apple-darwin12.2.0
checking target system type... x86_64-apple-darwin12.2.0
checking whether the C compiler works... no
configure: error: in `/Users/mondemoo/.rvm/src/ruby-1.9.3-p286':
configure: error: C compiler cannot create executables
See `config.log' for more details

Теперь я совершенно смущен, что я сделал не так - кто-нибудь может помочь? Похоже, что существует проблема с c-компилятором (gcc?), Правильно ли я его интерпретирую? Если да, то как мне это исправить? Также как мне добраться до этого "config.log", который указан в файле configure.log выше?

Спасибо!

4b9b3361

Ответ 1

Это ошибка в RailsInstaller OSX 1.0.3 - https://github.com/railsinstaller/railsinstaller-nix/issues/10

вам нужно изменить /etc/rvmrc, чтобы скрыть это:

umask g+w
export -a rvm_configure_env
rvm_configure_env=('LDFLAGS=-L/opt/sm/pkg/active/lib' 'CFLAGS=-I/opt/sm/pkg/active/include' 'CPATH=/opt/sm/pkg/active/include')

Я подготовлю новую версию установщика, когда двоичный рубин доступен для 2.0.0.

UPDATE: для новой версии RVM 1.19+ /etc/rvmrc следует изменить на:

umask g+w
export rvm_autolibs_flag=smf

И запустите rvm get stabel #OR: head

Ответ 2

Не уверен, что я сделал это правильно, но я просто удалил RVM (rvm implode), а затем переустановил его (\ curl -L https://get.rvm.io | bash -s stable --ruby), и он установил и теперь запускает последнюю версию ruby ​​1.9.3-p327 без проблем.