Ruby on Rails(Arch Linux) 설치 중 오류 발생

Ruby on Rails(Arch Linux) 설치 중 오류 발생

현재 Arch Linux ARM 시스템에 Ruby on Rails를 설치하는 데 문제가 있습니다. 하지만 제가 사용하려고 하는 것은 설치에 실패한 Rails뿐만이 아닙니다 gem. 다음은 몇 가지 추가 정보입니다.

일반 시스템 정보: [alarm@alarm ~]$ uname -a Linux alarm 3.8.11-4-ARCH #1 SMP Sat Oct 22 11:59:55 MDT 2016 armv7l GNU/Linux

보석 출력:

[alarm@alarm ~]$ gem install rails
WARNING:  You don't have /home/alarm/.gem/ruby/2.4.0/bin in your PATH,
      gem executables will not run.
Building native extensions.  This could take a while...
ERROR:  Error installing rails:
    ERROR: Failed to build gem native extension.

    current directory: /home/alarm/.gem/ruby/2.4.0/gems/nokogiri-1.8.0/ext/nokogiri
/usr/bin/ruby -r ./siteconf20170828-1999-1wpxia.rb extconf.rb
checking if the C compiler accepts ... *** extconf.rb failed ***
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_BASE_NAME)
    --help
    --clean
/usr/lib/ruby/2.4.0/mkmf.rb:457:in `try_do': The compiler failed to generate an executable file. (RuntimeError)
You have to install development tools first.
    from /usr/lib/ruby/2.4.0/mkmf.rb:572:in `block in try_compile'
    from /usr/lib/ruby/2.4.0/mkmf.rb:523:in `with_werror'
    from /usr/lib/ruby/2.4.0/mkmf.rb:572:in `try_compile'
    from extconf.rb:138:in `nokogiri_try_compile'
    from extconf.rb:162:in `block in add_cflags'
    from /usr/lib/ruby/2.4.0/mkmf.rb:630:in `with_cflags'
    from extconf.rb:161:in `add_cflags'
    from extconf.rb:407:in `<main>'

To see why this extension failed to compile, please check the mkmf.log which can be found here:

  /home/alarm/.gem/ruby/2.4.0/extensions/armv7l-linux/2.4.0/nokogiri-1.8.0/mkmf.log

extconf failed, exit code 1

Gem files will remain installed in /home/alarm/.gem/ruby/2.4.0/gems/nokogiri-1.8.0 for inspection.
Results logged to /home/alarm/.gem/ruby/2.4.0/extensions/armv7l-linux/2.4.0/nokogiri-1.8.0/gem_make.out

mkmf.log 파일 내용:

[alarm@alarm ~]$ cat /home/alarm/.gem/ruby/2.4.0/extensions/armv7l-linux/2.4.0/nokogiri-1.8.0/mkmf.log
"gcc -o conftest -I/usr/include/ruby-2.4.0/armv7l-linux-eabihf -I/usr/include/ruby-2.4.0/ruby/backward -I/usr/include/ruby-2.4.0 -I. -D_FORTIFY_SOURCE=2 -D_FILE_OFFSET_BITS=64  -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -fPIC  conftest.c  -L. -L/usr/lib -L. -Wl,-O1,--sort-common,--as-needed,-z,relro -fstack-protector -rdynamic -Wl,-export-dynamic     -lruby  -lpthread -lgmp -ldl -lcrypt -lm   -lc "
checked program was:
/* begin */
1: #include "ruby.h"
2: 
3: int main(int argc, char **argv)
4: {
5:   return 0;
6: }
/* end */

답변1

오류 메시지에서 단서를 확인하세요.

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 have to install development tools first.

그리고:

To see why this extension failed to compile, please check the mkmf.log which can be found here:

  /home/alarm/.gem/ruby/2.4.0/extensions/armv7l-linux/2.4.0/nokogiri-1.8.0/mkmf.log

따라서 일반적으로 Arch Linux의 라이브러리와 함께 번들로 제공되는 일부 헤더 파일(예: "개발 도구")이 누락된 것 같습니다. 오류 메시지에서 언급했듯이 이 파일을 보면 /home/alarm/.gem/ruby/2.4.0/extensions/armv7l-linux/2.4.0/nokogiri-1.8.0/mkmf.log빌드 프로세스가 찾고 있는 헤더 파일이 무엇인지 알 수 있으며 이를 통해 설치해야 하는 라이브러리 패키지를 찾을 수 있습니다.

답변2

Arch Linux에서도 똑같은 문제가 있었고 로그 파일은 위와 동일했습니다.

기반으로 https://bbs.archlinux.org/viewtopic.php?id=114837 내가 해냈어

pacman -S base-devel

이것은 내 문제를 해결했고 나중에 레일이 잘 설치되었습니다. 해당 스레드의 의견에 따르면 "pkg-config"가 제가 누락한 패키지인 것 같지만 base-devel을 모두 설치해도 괜찮습니다.

관련 정보