好きなときに好きなことをしたいブログ

好きなときに好きなことをしたい性格です。

CentOS7にRuby on Rails環境を構築する

Rails環境を導入するには、大きく4つのことをしなくてはなりません。

  1. Gitをインストールする
  2. rbenvをインストールする
  3. rubyをインストールする
  4. Railsをインストールする

ここでは、Gitとrbenvとrubyのインストール手順を記載します。

Gitクライアントをインストールする

まず、Gitを使えるようにする。Gitコマンドを使えないと、rbenvをインストールしようとしてもこうなる。(↓)
rbenvがGitHubに公開されているため、Gitクライアントを先に入れないとrbenvを取得できない。

# git clone https://github.com/sstephenson/rbenv.git /usr/local/rbenv
bash: git: コマンドが見つかりませんでした...
#

Gitの最新版を入れるには少しステップを踏まないといけないが、今回はrbenvやruby-buildをインストールしたいだけなので、最新版には拘らず、一番楽な、次のコマンドでGitをインストールする。
(スーパーユーザーで行うこと。)

# yum install git
読み込んだプラグイン:fastestmirror, langpacks
base                                                                                               | 3.6 kB  00:00:00     
extras                                                                                             | 3.4 kB  00:00:00     
updates                                                                                            | 3.4 kB  00:00:00     
extras/7/x86_64/primary_db                                                                         | 191 kB  00:00:00     
Loading mirror speeds from cached hostfile
 * base: mirror.fairway.ne.jp
 * extras: mirror.fairway.ne.jp
 * updates: mirror.fairway.ne.jp
依存性の解決をしています
--> トランザクションの確認を実行しています。
---> パッケージ git.x86_64 0:1.8.3.1-6.el7_2.1 を インストール
--> 依存性の処理をしています: perl-Git = 1.8.3.1-6.el7_2.1 のパッケージ: git-1.8.3.1-6.el7_2.1.x86_64
--> 依存性の処理をしています: perl(Term::ReadKey) のパッケージ: git-1.8.3.1-6.el7_2.1.x86_64
--> 依存性の処理をしています: perl(Git) のパッケージ: git-1.8.3.1-6.el7_2.1.x86_64
--> 依存性の処理をしています: perl(Error) のパッケージ: git-1.8.3.1-6.el7_2.1.x86_64
--> トランザクションの確認を実行しています。
---> パッケージ perl-Error.noarch 1:0.17020-2.el7 を インストール
---> パッケージ perl-Git.noarch 0:1.8.3.1-6.el7_2.1 を インストール
---> パッケージ perl-TermReadKey.x86_64 0:2.30-20.el7 を インストール
--> 依存性解決を終了しました。

依存性を解決しました

==========================================================================================================================
 Package                           アーキテクチャー        バージョン                         リポジトリー           容量
==========================================================================================================================
インストール中:
 git                               x86_64                  1.8.3.1-6.el7_2.1                  base                  4.4 M
依存性関連でのインストールをします:
 perl-Error                        noarch                  1:0.17020-2.el7                    base                   32 k
 perl-Git                          noarch                  1.8.3.1-6.el7_2.1                  base                   53 k
 perl-TermReadKey                  x86_64                  2.30-20.el7                        base                   31 k

トランザクションの要約
==========================================================================================================================
インストール  1 パッケージ (+3 個の依存関係のパッケージ)

総ダウンロード容量: 4.5 M
インストール容量: 22 M
Is this ok [y/d/N]: y
Downloading packages:
(1/4): perl-Error-0.17020-2.el7.noarch.rpm                                                         |  32 kB  00:00:00     
(2/4): perl-TermReadKey-2.30-20.el7.x86_64.rpm                                                     |  31 kB  00:00:00     
(3/4): perl-Git-1.8.3.1-6.el7_2.1.noarch.rpm                                                       |  53 kB  00:00:00     
(4/4): git-1.8.3.1-6.el7_2.1.x86_64.rpm                                                            | 4.4 MB  00:00:04     
--------------------------------------------------------------------------------------------------------------------------
合計                                                                                      1.0 MB/s | 4.5 MB  00:00:04     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  インストール中          : 1:perl-Error-0.17020-2.el7.noarch                                                         1/4 
  インストール中          : perl-TermReadKey-2.30-20.el7.x86_64                                                       2/4 
  インストール中          : git-1.8.3.1-6.el7_2.1.x86_64                                                              3/4 
  インストール中          : perl-Git-1.8.3.1-6.el7_2.1.noarch                                                         4/4 
  検証中                  : perl-Git-1.8.3.1-6.el7_2.1.noarch                                                         1/4 
  検証中                  : perl-TermReadKey-2.30-20.el7.x86_64                                                       2/4 
  検証中                  : 1:perl-Error-0.17020-2.el7.noarch                                                         3/4 
  検証中                  : git-1.8.3.1-6.el7_2.1.x86_64                                                              4/4 

インストール:
  git.x86_64 0:1.8.3.1-6.el7_2.1                                                                                          

依存性関連をインストールしました:
  perl-Error.noarch 1:0.17020-2.el7     perl-Git.noarch 0:1.8.3.1-6.el7_2.1     perl-TermReadKey.x86_64 0:2.30-20.el7    

完了しました!
# 

rbenvをインストールする

rbenvコマンドは、37signalsRuby on Railsを開発したアメリカ企業)のプログラマーであるSam Stephenson氏が、GitHubに公開している(sstephenson (Sam Stephenson) · GitHub)。
rubyのバージョンを管理するライブラリ(?)

rbenvをインストールする

インストール先ディレクトリに/usr/local/rbenvを指定してインストールする。
(インストール先は、rbrnvをどう使いたいかによって変える必要がある。
 システム全体で(CentOS全体で)rbenvを使いたい場合は/usr/local/rbenvに、ユーザー個別で使いたい場合(自分だけが使いたくて、他のログインユーザーが使えるようにする必要がない場合)は、$HOME/.rbenvにインストールする。)
まずは、インストール前の/usr/local/を確認する。

# ls /usr/local/
bin  etc  games  include  lib  lib64  libexec  sbin  share  src
#

GitHubからrbenvをインストール。(スーパーユーザーで行うこと。)

# git clone https://github.com/sstephenson/rbenv.git /usr/local/rbenv
Cloning into '/usr/local/rbenv'...
remote: Counting objects: 2625, done.
remote: Total 2625 (delta 0), reused 1 (delta 0), pack-reused 2624
Receiving objects: 100% (2625/2625), 485.78 KiB | 294.00 KiB/s, done.
Resolving deltas: 100% (1644/1644), done.
#

/usr/local/にrbenvディレクトリができている。

# ls /usr/local/
bin  etc  games  include  lib  lib64  libexec  rbenv  sbin  share  src

環境変数を設定する

/etc/profile に追記する

/etc/profile は、全ユーザー共通の環境変数の設定ファイル。
ここに新たに3行書き加える。

元々の/etc/profile の末尾はこんな感じ。

# tail -7 /etc/profile
            . "$i" >/dev/null
        fi
    fi
done

unset i
# 

echoコマンドを用いて/etv/profile に3行書き足す。(スーパーユーザーで行うこと。)

# echo 'export RBENV_ROOT="/usr/local/rbenv"' >> /etc/profile
# echo 'export PATH="${RBENV_ROOT}/bin:${PATH}"' >> /etc/profile
# echo 'eval "$(rbenv init -)"' >> /etc/profile
# 

追記後の/etc/profile の末尾は次の通り。

# tail /etc/profile
            . "$i" >/dev/null
        fi
    fi
done

unset i
unset -f pathmunge
export RBENV_ROOT="/usr/local/rbenv"
export PATH="${RBENV_ROOT}/bin:${PATH}"
eval "$(rbenv init -)"
# 
/etc/profile の変更を反映する

/etc/profileはログイン時に読み込まれるので、端末を再起動してログインし直すことで変更を反映する。
(スーパーユーザーで行うこと。)(再起動せず、「# source /etc/profile」でも可能かも。)

# reboot
Connection to 192.168.56.11 closed by remote host.
Connection to 192.168.56.11 closed.

なお、再起動後、一般ユーザーでログインし直すと次にようにmkdirのエラーが出るかもしれない。
なので、再起動後のログインは、rootで行なっておくのが無難
(理由は、/usr/local/書き込み権限を持っているのがスーパーユーザーのみのため。)
(rbenvのバージョン確認はできるので、rbenvのインストールはできている。)

Last login: Sat Aug 26 15:41:23 2017 from 192.168.56.1
mkdir: ディレクトリ `/usr/local/rbenv/shims' を作成できません: 許可がありません
mkdir: ディレクトリ `/usr/local/rbenv/versions' を作成できません: 許可がありません
$ ls -ld /usr/local/
drwxr-xr-x. 13 root root 144  8月 26 17:50 /usr/local/
$ rbenv --version
rbenv 1.1.1-4-g4ebd1bd
$ 

Rubyをインストール

rbenvのプラグインruby-build」をセットアップする

ruby-build」は、rbenvのプラグインで、これによって「rbenv install」コマンドを使えるようになる。
「rbenv install」コマンドはrbenvでRubyをインストールするためのコマンドなので、
ruby-build」を入れないとRubyを入れれないってこと。
ruby-build」も「rbenv」と同様、Sam Stephenson氏が、GitHub公開している(sstephenson (Sam Stephenson) · GitHub)。
次のコマンドでインストールする。(スーパーユーザーで行うこと。)

# git clone https://github.com/sstephenson/ruby-build.git /usr/local/rbenv/plugins/ruby-build
Cloning into '/usr/local/rbenv/plugins/ruby-build'...
remote: Counting objects: 7892, done.
remote: Compressing objects: 100% (13/13), done.
remote: Total 7892 (delta 4), reused 14 (delta 3), pack-reused 7874
Receiving objects: 100% (7892/7892), 1.66 MiB | 425.00 KiB/s, done.
Resolving deltas: 100% (4848/4848), done.
#

インストール可能なRubyのバージョンを確認する

# rbenv install -l
Available versions:
  1.8.5-p52
  1.8.5-p113
  1.8.5-p114
  1.8.5-p115
  1.8.5-p231
…略…
  2.4.0-dev
  2.4.0-preview1
  2.4.0-preview2
  2.4.0-preview3
  2.4.0-rc1
  2.4.0
  2.4.1
  2.5.0-dev
…略…
#

今回、私は2.4.1を入れることにしました。

Ver.2.4.1のRubyをインストールする(ただし、Cコンパイラgcc)がなくて失敗する)

# rbenv install -v 2.4.1
/tmp/ruby-build.20170826220154.3571 /usr/local/rbenv/completions
Downloading ruby-2.4.1.tar.bz2...
-> https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.1.tar.bz2
Installing ruby-2.4.1...
/tmp/ruby-build.20170826220154.3571/ruby-2.4.1 /tmp/ruby-build.20170826220154.3571 /usr/local/rbenv/completions
checking for ruby... false
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/tmp/ruby-build.20170826220154.3571/ruby-2.4.1':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details

BUILD FAILED (CentOS Linux 7 using ruby-build 20170726-9-g86909bf)

Inspect or clean up the working tree at /tmp/ruby-build.20170826220154.3571
Results logged to /tmp/ruby-build.20170826220154.3571.log

Last 10 log lines:
checking for ruby... false
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/tmp/ruby-build.20170826220154.3571/ruby-2.4.1':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details
# 

Cコンパイラgcc)を入れる

# yum -y install gcc
読み込んだプラグイン:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirror.fairway.ne.jp
 * extras: mirror.fairway.ne.jp
 * updates: mirror.fairway.ne.jp
依存性の解決をしています
--> トランザクションの確認を実行しています。
---> パッケージ gcc.x86_64 0:4.8.5-11.el7 を インストール
--> 依存性の処理をしています: cpp = 4.8.5-11.el7 のパッケージ: gcc-4.8.5-11.el7.x86_64
--> 依存性の処理をしています: glibc-devel >= 2.2.90-12 のパッケージ: gcc-4.8.5-11.el7.x86_64
--> 依存性の処理をしています: libmpc.so.3()(64bit) のパッケージ: gcc-4.8.5-11.el7.x86_64
--> トランザクションの確認を実行しています。
---> パッケージ cpp.x86_64 0:4.8.5-11.el7 を インストール
---> パッケージ glibc-devel.x86_64 0:2.17-157.el7_3.5 を インストール
--> 依存性の処理をしています: glibc-headers = 2.17-157.el7_3.5 のパッケージ: glibc-devel-2.17-157.el7_3.5.x86_64
--> 依存性の処理をしています: glibc-headers のパッケージ: glibc-devel-2.17-157.el7_3.5.x86_64
---> パッケージ libmpc.x86_64 0:1.0.1-3.el7 を インストール
--> トランザクションの確認を実行しています。
---> パッケージ glibc-headers.x86_64 0:2.17-157.el7_3.5 を インストール
--> 依存性の処理をしています: kernel-headers >= 2.2.1 のパッケージ: glibc-headers-2.17-157.el7_3.5.x86_64
--> 依存性の処理をしています: kernel-headers のパッケージ: glibc-headers-2.17-157.el7_3.5.x86_64
--> トランザクションの確認を実行しています。
---> パッケージ kernel-headers.x86_64 0:3.10.0-514.26.2.el7 を インストール
--> 依存性解決を終了しました。

依存性を解決しました

==========================================================================================================================
 Package                        アーキテクチャー       バージョン                           リポジトリー             容量
==========================================================================================================================
インストール中:
 gcc                            x86_64                 4.8.5-11.el7                         base                     16 M
依存性関連でのインストールをします:
 cpp                            x86_64                 4.8.5-11.el7                         base                    5.9 M
 glibc-devel                    x86_64                 2.17-157.el7_3.5                     updates                 1.1 M
 glibc-headers                  x86_64                 2.17-157.el7_3.5                     updates                 669 k
 kernel-headers                 x86_64                 3.10.0-514.26.2.el7                  updates                 4.8 M
 libmpc                         x86_64                 1.0.1-3.el7                          base                     51 k

トランザクションの要約
==========================================================================================================================
インストール  1 パッケージ (+5 個の依存関係のパッケージ)

総ダウンロード容量: 29 M
インストール容量: 59 M
Downloading packages:
glibc-devel-2.17-157.el7_3.5.x FAILED                                                   ]  0.0 B/s |  86 kB  --:--:-- ETA 
http://mirror.nus.edu.sg/centos/7.3.1611/updates/x86_64/Packages/glibc-devel-2.17-157.el7_3.5.x86_64.rpm: [Errno 14] curl#18 - "transfer closed with 1098645 bytes remaining to read"
他のミラーを試します。
(1/6): libmpc-1.0.1-3.el7.x86_64.rpm                                                               |  51 kB  00:00:02     
(2/6): glibc-headers-2.17-157.el7_3.5.x86_64.rpm                                                   | 669 kB  00:00:03     
(3/6): kernel-headers-3.10.0-514.26.2.el7.x86_64.rpm                                               | 4.8 MB  00:00:22     
glibc-devel-2.17-157.el7_3.5.x FAILED                                                   ] 1.2 MB/s |  20 MB  00:00:06 ETA 
http://ftp.jaist.ac.jp/pub/Linux/CentOS/7.3.1611/updates/x86_64/Packages/glibc-devel-2.17-157.el7_3.5.x86_64.rpm: [Errno -1] パッケージは予定したダウンロードと一致しません。 提案: 「yum --enablerepo=updates clean metadata」の実行
他のミラーを試します。
(4/6): cpp-4.8.5-11.el7.x86_64.rpm                                                                 | 5.9 MB  00:00:25     
(5/6): gcc-4.8.5-11.el7.x86_64.rpm                                                                 |  16 MB  00:00:31     
(6/6): glibc-devel-2.17-157.el7_3.5.x86_64.rpm                                                     | 1.1 MB  00:00:07     
--------------------------------------------------------------------------------------------------------------------------
合計                                                                                      929 kB/s |  29 MB  00:00:31     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  インストール中          : libmpc-1.0.1-3.el7.x86_64                                                                 1/6 
  インストール中          : cpp-4.8.5-11.el7.x86_64                                                                   2/6 
  インストール中          : kernel-headers-3.10.0-514.26.2.el7.x86_64                                                 3/6 
  インストール中          : glibc-headers-2.17-157.el7_3.5.x86_64                                                     4/6 
  インストール中          : glibc-devel-2.17-157.el7_3.5.x86_64                                                       5/6 
  インストール中          : gcc-4.8.5-11.el7.x86_64                                                                   6/6 
  検証中                  : glibc-devel-2.17-157.el7_3.5.x86_64                                                       1/6 
  検証中                  : kernel-headers-3.10.0-514.26.2.el7.x86_64                                                 2/6 
  検証中                  : libmpc-1.0.1-3.el7.x86_64                                                                 3/6 
  検証中                  : gcc-4.8.5-11.el7.x86_64                                                                   4/6 
  検証中                  : glibc-headers-2.17-157.el7_3.5.x86_64                                                     5/6 
  検証中                  : cpp-4.8.5-11.el7.x86_64                                                                   6/6 

インストール:
  gcc.x86_64 0:4.8.5-11.el7                                                                                               

依存性関連をインストールしました:
  cpp.x86_64 0:4.8.5-11.el7                                 glibc-devel.x86_64 0:2.17-157.el7_3.5                        
  glibc-headers.x86_64 0:2.17-157.el7_3.5                   kernel-headers.x86_64 0:3.10.0-514.26.2.el7                  
  libmpc.x86_64 0:1.0.1-3.el7                              

完了しました!
# 
yum --enablerepo=updates clean metadata」の実行

Cコンパイラをインストールしたら、「yum --enablerepo=updates clean metadata」の実行を提案されたのでやっておく。

# yum --enablerepo=updates clean metadata
読み込んだプラグイン:fastestmirror, langpacks
リポジトリーを清掃しています: base extras updates
11 個の metadata ファイルを削除しました
11 個の sqlite ファイルを削除しました
0 個の metadata ファイルを削除しました
# 

Ver.2.4.1のRubyをインストールする(ただし、必要な拡張機能がなくて失敗する)

# rbenv install -v 2.4.1
/tmp/ruby-build.20170826222321.4192 /usr/local/rbenv
Downloading ruby-2.4.1.tar.bz2...
-> https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.1.tar.bz2
Installing ruby-2.4.1...
…略…
The Ruby openssl extension was not compiled.
The Ruby readline extension was not compiled.
The Ruby zlib extension was not compiled.
ERROR: Ruby install aborted due to missing extensions
Try running `yum install -y openssl-devel readline-devel zlib-devel` to fetch missing dependencies.

Configure options used:
  --prefix=/usr/local/rbenv/versions/2.4.1
  LDFLAGS=-L/usr/local/rbenv/versions/2.4.1/lib 
  CPPFLAGS=-I/usr/local/rbenv/versions/2.4.1/include 

BUILD FAILED (CentOS Linux 7 using ruby-build 20170726-9-g86909bf)

Inspect or clean up the working tree at /tmp/ruby-build.20170826222321.4192
Results logged to /tmp/ruby-build.20170826222321.4192.log

Last 10 log lines:
The Ruby openssl extension was not compiled.
The Ruby readline extension was not compiled.
The Ruby zlib extension was not compiled.
ERROR: Ruby install aborted due to missing extensions
Try running `yum install -y openssl-devel readline-devel zlib-devel` to fetch missing dependencies.

Configure options used:
  --prefix=/usr/local/rbenv/versions/2.4.1
  LDFLAGS=-L/usr/local/rbenv/versions/2.4.1/lib 
  CPPFLAGS=-I/usr/local/rbenv/versions/2.4.1/include 
# 

Rubyのインストールに必要な拡張機能をインストールする

# yum install -y openssl-devel readline-devel zlib-devel
読み込んだプラグイン:fastestmirror, langpacks
base                                                                                               | 3.6 kB  00:00:00     
http://download.nus.edu.sg/mirror/centos/7.3.1611/extras/x86_64/repodata/repomd.xml: [Errno 12] Timeout on http://download.nus.edu.sg/mirror/centos/7.3.1611/extras/x86_64/repodata/repomd.xml: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds')
他のミラーを試します。
extras                                                                                             | 3.4 kB  00:00:00     
updates                                                                                            | 3.4 kB  00:00:00     
(1/4): extras/7/x86_64/primary_db                                                                  | 191 kB  00:00:00     
(2/4): base/7/x86_64/group_gz                                                                      | 155 kB  00:00:02     
(3/4): base/7/x86_64/primary_db                                                                    | 5.6 MB  00:00:07     
(4/4): updates/7/x86_64/primary_db                                                                 | 7.8 MB  00:00:09     
Loading mirror speeds from cached hostfile
 * base: ftp.nara.wide.ad.jp
 * extras: mirror.fairway.ne.jp
 * updates: mirror.fairway.ne.jp
依存性の解決をしています
--> トランザクションの確認を実行しています。
---> パッケージ openssl-devel.x86_64 1:1.0.1e-60.el7_3.1 を インストール
--> 依存性の処理をしています: krb5-devel(x86-64) のパッケージ: 1:openssl-devel-1.0.1e-60.el7_3.1.x86_64
---> パッケージ readline-devel.x86_64 0:6.2-9.el7 を インストール
--> 依存性の処理をしています: ncurses-devel のパッケージ: readline-devel-6.2-9.el7.x86_64
---> パッケージ zlib-devel.x86_64 0:1.2.7-17.el7 を インストール
--> トランザクションの確認を実行しています。
---> パッケージ krb5-devel.x86_64 0:1.14.1-27.el7_3 を インストール
--> 依存性の処理をしています: libverto-devel のパッケージ: krb5-devel-1.14.1-27.el7_3.x86_64
--> 依存性の処理をしています: libselinux-devel のパッケージ: krb5-devel-1.14.1-27.el7_3.x86_64
--> 依存性の処理をしています: libcom_err-devel のパッケージ: krb5-devel-1.14.1-27.el7_3.x86_64
--> 依存性の処理をしています: keyutils-libs-devel のパッケージ: krb5-devel-1.14.1-27.el7_3.x86_64
---> パッケージ ncurses-devel.x86_64 0:5.9-13.20130511.el7 を インストール
--> トランザクションの確認を実行しています。
---> パッケージ keyutils-libs-devel.x86_64 0:1.5.8-3.el7 を インストール
---> パッケージ libcom_err-devel.x86_64 0:1.42.9-9.el7 を インストール
---> パッケージ libselinux-devel.x86_64 0:2.5-6.el7 を インストール
--> 依存性の処理をしています: libsepol-devel(x86-64) >= 2.5-6 のパッケージ: libselinux-devel-2.5-6.el7.x86_64
--> 依存性の処理をしています: pkgconfig(libsepol) のパッケージ: libselinux-devel-2.5-6.el7.x86_64
--> 依存性の処理をしています: pkgconfig(libpcre) のパッケージ: libselinux-devel-2.5-6.el7.x86_64
---> パッケージ libverto-devel.x86_64 0:0.2.5-4.el7 を インストール
--> トランザクションの確認を実行しています。
---> パッケージ libsepol-devel.x86_64 0:2.5-6.el7 を インストール
---> パッケージ pcre-devel.x86_64 0:8.32-15.el7_2.1 を インストール
--> 依存性解決を終了しました。

依存性を解決しました

==========================================================================================================================
 Package                            アーキテクチャー      バージョン                         リポジトリー            容量
==========================================================================================================================
インストール中:
 openssl-devel                      x86_64                1:1.0.1e-60.el7_3.1                updates                1.2 M
 readline-devel                     x86_64                6.2-9.el7                          base                   138 k
 zlib-devel                         x86_64                1.2.7-17.el7                       base                    50 k
依存性関連でのインストールをします:
 keyutils-libs-devel                x86_64                1.5.8-3.el7                        base                    37 k
 krb5-devel                         x86_64                1.14.1-27.el7_3                    updates                651 k
 libcom_err-devel                   x86_64                1.42.9-9.el7                       base                    31 k
 libselinux-devel                   x86_64                2.5-6.el7                          base                   186 k
 libsepol-devel                     x86_64                2.5-6.el7                          base                    74 k
 libverto-devel                     x86_64                0.2.5-4.el7                        base                    12 k
 ncurses-devel                      x86_64                5.9-13.20130511.el7                base                   713 k
 pcre-devel                         x86_64                8.32-15.el7_2.1                    base                   479 k

トランザクションの要約
==========================================================================================================================
インストール  3 パッケージ (+8 個の依存関係のパッケージ)

総ダウンロード容量: 3.5 M
インストール容量: 8.1 M
Downloading packages:
(1/11): libcom_err-devel-1.42.9-9.el7.x86_64.rpm                                                   |  31 kB  00:00:00     
(2/11): keyutils-libs-devel-1.5.8-3.el7.x86_64.rpm                                                 |  37 kB  00:00:00     
(3/11): libverto-devel-0.2.5-4.el7.x86_64.rpm                                                      |  12 kB  00:00:00     
(4/11): libselinux-devel-2.5-6.el7.x86_64.rpm                                                      | 186 kB  00:00:01     
(5/11): libsepol-devel-2.5-6.el7.x86_64.rpm                                                        |  74 kB  00:00:02     
(6/11): krb5-devel-1.14.1-27.el7_3.x86_64.rpm                                                      | 651 kB  00:00:02     
(7/11): pcre-devel-8.32-15.el7_2.1.x86_64.rpm                                                      | 479 kB  00:00:03     
(8/11): zlib-devel-1.2.7-17.el7.x86_64.rpm                                                         |  50 kB  00:00:02     
(9/11): openssl-devel-1.0.1e-60.el7_3.1.x86_64.rpm                                                 | 1.2 MB  00:00:04     
(10/11): ncurses-devel-5.9-13.20130511.el7.x86_64.rpm                                              | 713 kB  00:00:05     
(11/11): readline-devel-6.2-9.el7.x86_64.rpm                                                       | 138 kB  00:00:03     
--------------------------------------------------------------------------------------------------------------------------
合計                                                                                      565 kB/s | 3.5 MB  00:00:06     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  インストール中          : keyutils-libs-devel-1.5.8-3.el7.x86_64                                                   1/11 
  インストール中          : pcre-devel-8.32-15.el7_2.1.x86_64                                                        2/11 
  インストール中          : libsepol-devel-2.5-6.el7.x86_64                                                          3/11 
  インストール中          : libselinux-devel-2.5-6.el7.x86_64                                                        4/11 
  インストール中          : libcom_err-devel-1.42.9-9.el7.x86_64                                                     5/11 
  インストール中          : ncurses-devel-5.9-13.20130511.el7.x86_64                                                 6/11 
  インストール中          : libverto-devel-0.2.5-4.el7.x86_64                                                        7/11 
  インストール中          : krb5-devel-1.14.1-27.el7_3.x86_64                                                        8/11 
  インストール中          : zlib-devel-1.2.7-17.el7.x86_64                                                           9/11 
  インストール中          : 1:openssl-devel-1.0.1e-60.el7_3.1.x86_64                                                10/11 
  インストール中          : readline-devel-6.2-9.el7.x86_64                                                         11/11 
  検証中                  : readline-devel-6.2-9.el7.x86_64                                                          1/11 
  検証中                  : zlib-devel-1.2.7-17.el7.x86_64                                                           2/11 
  検証中                  : krb5-devel-1.14.1-27.el7_3.x86_64                                                        3/11 
  検証中                  : libverto-devel-0.2.5-4.el7.x86_64                                                        4/11 
  検証中                  : ncurses-devel-5.9-13.20130511.el7.x86_64                                                 5/11 
  検証中                  : libcom_err-devel-1.42.9-9.el7.x86_64                                                     6/11 
  検証中                  : libsepol-devel-2.5-6.el7.x86_64                                                          7/11 
  検証中                  : pcre-devel-8.32-15.el7_2.1.x86_64                                                        8/11 
  検証中                  : 1:openssl-devel-1.0.1e-60.el7_3.1.x86_64                                                 9/11 
  検証中                  : libselinux-devel-2.5-6.el7.x86_64                                                       10/11 
  検証中                  : keyutils-libs-devel-1.5.8-3.el7.x86_64                                                  11/11 

インストール:
  openssl-devel.x86_64 1:1.0.1e-60.el7_3.1     readline-devel.x86_64 0:6.2-9.el7     zlib-devel.x86_64 0:1.2.7-17.el7    

依存性関連をインストールしました:
  keyutils-libs-devel.x86_64 0:1.5.8-3.el7    krb5-devel.x86_64 0:1.14.1-27.el7_3  libcom_err-devel.x86_64 0:1.42.9-9.el7 
  libselinux-devel.x86_64 0:2.5-6.el7         libsepol-devel.x86_64 0:2.5-6.el7    libverto-devel.x86_64 0:0.2.5-4.el7    
  ncurses-devel.x86_64 0:5.9-13.20130511.el7  pcre-devel.x86_64 0:8.32-15.el7_2.1 

完了しました!
# 

Ver.2.4.1のRubyをインストールする

# rbenv install -v 2.4.1
/tmp/ruby-build.20170826224512.17762 /usr/local/rbenv
Downloading ruby-2.4.1.tar.bz2...
-> https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.1.tar.bz2
Installing ruby-2.4.1...
/tmp/ruby-build.20170826224512.17762/ruby-2.4.1 /tmp/ruby-build.20170826224512.17762 /usr/local/rbenv
checking for ruby... false
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl.exe... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking whether we are using the GNU C++ compiler... no
checking whether g++ accepts -g... no
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking whether gcc needs -traditional... no
checking for ld... ld
checking whether the linker is GNU ld... yes
checking whether gcc -E accepts -o... yes
checking for ranlib... ranlib
checking for ar... ar
checking for ar D option... yes
checking for as... as
checking for objdump... objdump
checking for objcopy... objcopy
checking for nm... nm
checking whether ln -s works... yes
checking whether make sets $(MAKE)... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for dtrace... no
checking for dot... no
checking for doxygen... no
checking for pkg-config... pkg-config
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for cd using physical directory... cd -P
checking whether CFLAGS is valid... yes
checking whether LDFLAGS is valid... yes
checking whether -Wno-unused-parameter is accepted as CFLAGS... yes
checking whether -Wno-parentheses is accepted as CFLAGS... yes
checking whether -Wno-long-long is accepted as CFLAGS... yes
checking whether -diag-disable=2259 is accepted as CFLAGS... no
checking whether -Wno-missing-field-initializers is accepted as CFLAGS... yes
checking whether -Wno-tautological-compare is accepted as CFLAGS... yes
checking whether -Wno-parentheses-equality is accepted as CFLAGS... yes
checking whether -Wno-constant-logical-operand is accepted as CFLAGS... yes
checking whether -Wno-self-assign is accepted as CFLAGS... yes
checking whether -Wunused-variable is accepted as CFLAGS... yes
checking whether -Wimplicit-int is accepted as CFLAGS... yes
checking whether -Wpointer-arith is accepted as CFLAGS... yes
checking whether -Wwrite-strings is accepted as CFLAGS... yes
checking whether -Wdeclaration-after-statement is accepted as CFLAGS... yes
checking whether -Wshorten-64-to-32 is accepted as CFLAGS... no
checking whether -Wimplicit-function-declaration is accepted as CFLAGS... yes
checking whether -Wdivision-by-zero is accepted as CFLAGS... no
checking whether -Wdeprecated-declarations is accepted as CFLAGS... yes
checking whether -Wno-packed-bitfield-compat is accepted as CFLAGS... yes
checking whether -Wsuggest-attribute=noreturn is accepted as CFLAGS... yes
checking whether -Wsuggest-attribute=format is accepted as CFLAGS... yes
checking whether -Wimplicit-fallthrough=0 is accepted as CFLAGS... no
checking whether -Wextra-tokens is accepted as CFLAGS... no
checking whether -Wall -Wextra is accepted as CFLAGS... yes
checking whether -Qunused-arguments is accepted as CFLAGS... no
checking whether INFINITY is available without C99 option... yes
checking whether NAN is available without C99 option... yes
checking whether -D_FORTIFY_SOURCE=2 is accepted as CFLAGS... yes
checking whether -fstack-protector is accepted as CFLAGS... yes
checking whether -fstack-protector is accepted as LDFLAGS... yes
checking whether -Wl,--compress-debug-sections=zlib is accepted as LDFLAGS... no
checking whether -std=gnu99 is accepted as CFLAGS... yes
checking whether -fno-strict-overflow is accepted as CFLAGS... yes
checking whether -ggdb3 is accepted as CFLAGS... yes
checking whether -fvisibility=hidden is accepted as CFLAGS... yes
checking whether -fno-fast-math is accepted as CFLAGS... yes
checking whether -fexcess-precision=standard is accepted as CFLAGS... yes
checking whether -fp-model precise is accepted as CFLAGS... no
checking for crypt in -lcrypt... yes
checking for dlopen in -ldl... yes
checking for shl_load in -ldld... no
checking for shutdown in -lsocket... no
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking a.out.h usability... yes
checking a.out.h presence... yes
checking for a.out.h... yes
checking atomic.h usability... no
checking atomic.h presence... no
checking for atomic.h... no
checking direct.h usability... no
checking direct.h presence... no
checking for direct.h... no
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking intrinsics.h usability... no
checking intrinsics.h presence... no
checking for intrinsics.h... no
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking malloc/malloc.h usability... no
checking malloc/malloc.h presence... no
checking for malloc/malloc.h... no
checking malloc_np.h usability... no
checking malloc_np.h presence... no
checking for malloc_np.h... no
checking net/socket.h usability... no
checking net/socket.h presence... no
checking for net/socket.h... no
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking setjmpex.h usability... no
checking setjmpex.h presence... no
checking for setjmpex.h... no
checking sys/attr.h usability... no
checking sys/attr.h presence... no
checking for sys/attr.h... no
checking sys/fcntl.h usability... yes
checking sys/fcntl.h presence... yes
checking for sys/fcntl.h... yes
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/id.h usability... no
checking sys/id.h presence... no
checking for sys/id.h... no
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/prctl.h usability... yes
checking sys/prctl.h presence... yes
checking for sys/prctl.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/sendfile.h usability... yes
checking sys/sendfile.h presence... yes
checking for sys/sendfile.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/syscall.h usability... yes
checking sys/syscall.h presence... yes
checking for sys/syscall.h... yes
checking sys/sysmacros.h usability... yes
checking sys/sysmacros.h presence... yes
checking for sys/sysmacros.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking sys/uio.h usability... yes
checking sys/uio.h presence... yes
checking for sys/uio.h... yes
checking sys/utime.h usability... no
checking sys/utime.h presence... no
checking for sys/utime.h... no
checking syscall.h usability... yes
checking syscall.h presence... yes
checking for syscall.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking ucontext.h usability... yes
checking ucontext.h presence... yes
checking for ucontext.h... yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking gmp.h usability... no
checking gmp.h presence... no
checking for gmp.h... no
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking whether byte ordering is bigendian... no
checking for an ANSI C-conforming const... yes
checking whether char is unsigned... no
checking for inline... inline
checking for working volatile... yes
checking for typeof syntax and keyword spelling... typeof
checking for long long... yes
checking for off_t... yes
checking char bit... 8
checking size of int... 4
checking size of short... 2
checking size of long... 8
checking size of long long... 8
checking size of __int64... 0
checking size of __int128... 16
checking size of off_t... 8
checking size of void*... 8
checking size of float... 4
checking size of double... 8
checking size of time_t... 8
checking size of clock_t... 8
checking packed struct attribute... x __attribute__((packed))
checking for printf prefix for long long... ll
checking for pid_t... yes
checking for convertible type of pid_t... INT
checking for uid_t... yes
checking for convertible type of uid_t... UINT
checking for gid_t... yes
checking for convertible type of gid_t... UINT
checking for time_t... yes
checking for convertible type of time_t... LONG
checking for dev_t... yes
checking for convertible type of dev_t... ULONG
checking for mode_t... yes
checking for convertible type of mode_t... UINT
checking for rlim_t... yes
checking for convertible type of rlim_t... ULONG
checking for off_t... (cached) yes
checking for convertible type of off_t... LONG
checking for clockid_t... yes
checking for convertible type of clockid_t... INT
checking for prototypes... yes
checking token paste string... ansi
checking stringization... #expr
checking string literal concatenation... yes
checking for variable length prototypes and stdarg.h... yes
checking for variable length macro... yes
checking for CONSTFUNC function attribute... __attribute__ ((__const__)) x
checking for PUREFUNC function attribute... __attribute__ ((__pure__)) x
checking for NORETURN function attribute... __attribute__ ((__noreturn__)) x
checking for DEPRECATED function attribute... __attribute__ ((__deprecated__)) x
checking for DEPRECATED_BY function attribute... __attribute__ ((__deprecated__("by "#n))) x
checking for DEPRECATED_TYPE type attribute... __attribute__ ((__deprecated__ mesg)) x
checking for NOINLINE function attribute... __attribute__ ((__noinline__)) x
checking for ALWAYS_INLINE function attribute... __attribute__ ((__always_inline__)) x
checking for WARN_UNUSED_RESULT function attribute... __attribute__ ((__warn_unused_result__)) x
checking for MAYBE_UNUSED function attribute... __attribute__ ((__unused__)) x
checking for ERRORFUNC function attribute... __attribute__ ((__error__ mesg)) x
checking for WARNINGFUNC function attribute... __attribute__ ((__warning__ mesg)) x
checking for WEAK function attribute... __attribute__ ((__weak__)) x
checking for FUNC_STDCALL function attribute... x
checking for FUNC_CDECL function attribute... x
checking for FUNC_FASTCALL function attribute... x
checking for FUNC_UNOPTIMIZED function attribute... __attribute__ ((__optimize__("O0"))) x
checking for FUNC_MINIMIZED function attribute... __attribute__ ((__optimize__("-Os","-fomit-frame-pointer"))) x
checking for function alias... alias
checking for __atomic builtins... yes
checking for __sync builtins... yes
checking for __builtin_unreachable... yes
checking for exported function attribute... __attribute__ ((__visibility__("default")))
checking for function name string predefined identifier... __func__
checking if enum over int is allowed... yes
checking whether sys_nerr is declared... yes
checking whether getenv is declared... yes
checking for size_t... yes
checking size of size_t... 8
checking size of ptrdiff_t... 8
checking for printf prefix for size_t... z
checking for printf prefix for ptrdiff_t... t
checking for struct stat.st_blksize... yes
checking for struct stat.st_blocks... yes
checking for struct stat.st_rdev... yes
checking size of struct stat.st_size... SIZEOF_OFF_T
checking size of struct stat.st_blocks... SIZEOF_OFF_T
checking size of struct stat.st_ino... SIZEOF_LONG
checking for struct stat.st_atim... yes
checking for struct stat.st_atimespec... no
checking for struct stat.st_atimensec... no
checking for struct stat.st_mtim... yes
checking for struct stat.st_mtimespec... no
checking for struct stat.st_mtimensec... no
checking for struct stat.st_ctim... yes
checking for struct stat.st_ctimespec... no
checking for struct stat.st_ctimensec... no
checking for struct stat.st_birthtimespec... no
checking for struct timeval... yes
checking size of struct timeval.tv_sec... SIZEOF_TIME_T
checking for struct timespec... yes
checking for struct timezone... yes
checking for clockid_t... (cached) yes
checking for fd_mask... yes
checking for int8_t... yes
checking size of int8_t... 1
checking for uint8_t... yes
checking size of uint8_t... 1
checking for int16_t... yes
checking size of int16_t... 2
checking for uint16_t... yes
checking size of uint16_t... 2
checking for int32_t... yes
checking size of int32_t... 4
checking for uint32_t... yes
checking size of uint32_t... 4
checking for int64_t... yes
checking size of int64_t... 8
checking for uint64_t... yes
checking size of uint64_t... 8
checking for int128_t... __int128
checking for uint128_t... unsigned __int128
checking for intptr_t... yes
checking size of intptr_t... 8
checking for uintptr_t... yes
checking size of uintptr_t... 8
checking for ssize_t... yes
checking size of ssize_t... 8
checking for stack end address... __libc_stack_end
checking for uid_t in sys/types.h... (cached) yes
checking type of array argument to getgroups... gid_t
checking return type of signal handlers... void
checking for working alloca.h... yes
checking for alloca... yes
checking for dynamic size alloca... ok
checking for working memcmp... yes
checking for broken erfc of glibc-2.3.6 on IA64... no
checking for acosh... yes
checking for cbrt... yes
checking for crypt... yes
checking for dup2... yes
checking for erf... yes
checking for explicit_bzero... no
checking for ffs... yes
checking for finite... yes
checking for flock... yes
checking for hypot... yes
checking for isinf... yes
checking for isnan... yes
checking for lgamma_r... yes
checking for memmove... yes
checking for nextafter... yes
checking for setproctitle... no
checking for strchr... yes
checking for strerror... yes
checking for strlcat... no
checking for strlcpy... no
checking for strstr... yes
checking for tgamma... yes
checking sys/pstat.h usability... no
checking sys/pstat.h presence... no
checking for sys/pstat.h... no
checking for signbit... yes
checking for broken memmem... no
checking for pid_t... (cached) yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for __syscall... no
checking for _longjmp... yes
checking for arc4random_buf... no
checking for atan2l... yes
checking for atan2f... yes
checking for chroot... yes
checking for chsize... no
checking for clock_gettime... yes
checking for cosh... yes
checking for crypt_r... yes
checking for daemon... (cached) no
checking for dirfd... yes
checking for dl_iterate_phdr... yes
checking for dlopen... yes
checking for dladdr... yes
checking for dup... yes
checking for dup3... yes
checking for eaccess... yes
checking for endgrent... yes
checking for fchmod... yes
checking for fchown... yes
checking for fcntl... yes
checking for fdatasync... yes
checking for fgetattrlist... no
checking for fmod... yes
checking for fsync... yes
checking for ftruncate... yes
checking for ftruncate64... yes
checking for getattrlist... no
checking for getcwd... yes
checking for getgidx... no
checking for getgrnam... yes
checking for getgrnam_r... yes
checking for getgroups... yes
checking for getpgid... yes
checking for getpgrp... yes
checking for getpriority... yes
checking for getpwnam_r... yes
checking for getresgid... yes
checking for getresuid... yes
checking for getrlimit... yes
checking for getsid... yes
checking for gettimeofday... yes
checking for getuidx... no
checking for gmtime_r... yes
checking for initgroups... yes
checking for ioctl... yes
checking for isfinite... no
checking for issetugid... no
checking for killpg... yes
checking for lchmod... no
checking for lchown... yes
checking for link... yes
checking for llabs... yes
checking for lockf... yes
checking for log2... yes
checking for lstat... yes
checking for malloc_usable_size... yes
checking for malloc_size... no
checking for mblen... yes
checking for memalign... yes
checking for memset_s... no
checking for writev... yes
checking for memrchr... yes
checking for memmem... yes
checking for mkfifo... yes
checking for mknod... yes
checking for mktime... yes
checking for pipe2... yes
checking for poll... yes
checking for posix_fadvise... yes
checking for posix_memalign... yes
checking for ppoll... yes
checking for pread... yes
checking for qsort_r... yes
checking for qsort_s... no
checking for readlink... yes
checking for round... yes
checking for sched_getaffinity... yes
checking for seekdir... yes
checking for select_large_fdset... no
checking for sendfile... yes
checking for setegid... yes
checking for setenv... yes
checking for seteuid... yes
checking for setgid... yes
checking for setgroups... yes
checking for setpgid... yes
checking for setpgrp... yes
checking for setregid... yes
checking for setresgid... yes
checking for setresuid... yes
checking for setreuid... yes
checking for setrgid... no
checking for setrlimit... yes
checking for setruid... no
checking for setsid... yes
checking for setuid... yes
checking for shutdown... yes
checking for sigaction... yes
checking for sigaltstack... yes
checking for sigprocmask... yes
checking for sinh... yes
checking for spawnv... no
checking for symlink... yes
checking for syscall... yes
checking for sysconf... yes
checking for tanh... yes
checking for telldir... yes
checking for timegm... yes
checking for times... yes
checking for truncate... yes
checking for truncate64... yes
checking for unsetenv... yes
checking for utimensat... yes
checking for utimes... yes
checking for wait4... yes
checking for waitpid... yes
checking if getcwd allocates buffer if NULL is given... yes
checking crypt.h usability... yes
checking crypt.h presence... yes
checking for crypt.h... yes
checking for struct crypt_data.initialized... yes
checking for __builtin_bswap16... yes
checking for __builtin_bswap32... yes
checking for __builtin_bswap64... yes
checking for __builtin_popcount... yes
checking for __builtin_popcountll... yes
checking for __builtin_clz... yes
checking for __builtin_clzl... yes
checking for __builtin_clzll... yes
checking for __builtin_ctz... yes
checking for __builtin_ctzll... yes
checking for __builtin_constant_p... yes
checking for __builtin_choose_expr... yes
checking for __builtin_choose_expr_constant_p... no
checking for __builtin_types_compatible_p... yes
checking whether qsort_r is GNU version... yes
checking whether qsort_r is BSD version... no
checking whether atan2 handles Inf as C99... yes
checking whether lgamma_r handles +0.0 and -0.0... yes
checking for clock_getres... yes
checking for unsetenv returns a value... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct tm.tm_gmtoff... yes
checking for external int daylight... yes
checking for external timezone... long
checking for external altzone... no
checking for timezone... yes
checking whether timezone requires zero arguments... yes
checking for negative time_t for gmtime(3)... yes
checking for localtime(3) overflow correctly... yes
checking for sig_t... yes
checking whether right shift preserve sign bit... yes
checking whether _SC_CLK_TCK is supported... yes
checking stack growing direction on x86_64... -1
checking for pthread_kill in -lthr... no
checking for pthread_kill in -lpthread... yes
checking for pthread_np.h... no
checking whether pthread_t is scalar type... yes
checking for sched_yield... yes
checking for pthread_attr_setinheritsched... yes
checking for pthread_attr_get_np... no
checking for pthread_attr_getstack... yes
checking for pthread_get_stackaddr_np... no
checking for pthread_get_stacksize_np... no
checking for thr_stksegment... no
checking for pthread_stackseg_np... no
checking for pthread_getthrds_np... no
checking for pthread_cond_init... yes
checking for pthread_condattr_setclock... yes
checking for pthread_condattr_init... yes
checking for pthread_sigmask... yes
checking for pthread_setname_np... yes
checking for pthread_set_name_np... no
checking for pthread_getattr_np... yes
checking for pthread_attr_init... yes
checking arguments of pthread_setname_np... (pthread_self(), name)
checking if mcontext_t is a pointer... no
checking for getcontext... yes
checking for setcontext... yes
checking if fork works with pthread... yes
checking whether ELF binaries are produced... yes
checking elf.h usability... yes
checking elf.h presence... yes
checking for elf.h... yes
checking elf_abi.h usability... no
checking elf_abi.h presence... no
checking for elf_abi.h... no
checking whether OS depend dynamic link works... yes
checking whether -Wl,-R. is accepted as LDFLAGS... yes
checking for backtrace... yes
checking for broken backtrace... no
checking valgrind/memcheck.h usability... no
checking valgrind/memcheck.h presence... no
checking for valgrind/memcheck.h... no
checking for strip... strip
checking whether -fPIE is accepted as CFLAGS... yes
checking whether -pie is accepted as LDFLAGS... yes
checking whether wrapper for LD_LIBRARY_PATH is needed... no
checking whether dtrace USDT is available... no
checking for __builtin_setjmp... yes with cast ()
checking for _setjmpex as a macro or function... no
checking for _setjmp as a macro or function... yes
checking for sigsetjmp as a macro or function... no
checking for setjmp type... __builtin_setjmp
checking for prefix of external symbols... NONE
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking if make is GNU make... yes
checking for nroff... /usr/bin/nroff
.ext/include/x86_64-linux/ruby/config.h updated
configure: ruby library version = 2.4.0
configure: creating ./config.status
config.status: creating GNUmakefile
config.status: creating Makefile
config.status: creating ruby-2.4.pc
---
Configuration summary for ruby version 2.4.1

   * Installation prefix: /usr/local/rbenv/versions/2.4.1
   * exec prefix:         ${prefix}
   * arch:                x86_64-linux
   * site arch:           ${arch}
   * RUBY_BASE_NAME:      ruby
   * ruby lib prefix:     ${libdir}/${RUBY_BASE_NAME}
   * site libraries path: ${rubylibprefix}/${sitearch}
   * vendor path:         ${rubylibprefix}/vendor_ruby
   * target OS:           linux
   * compiler:            gcc
   * with pthread:        yes
   * enable shared libs:  no
   * dynamic library ext: so
   * CFLAGS:              ${optflags} ${debugflags} ${warnflags}
   * LDFLAGS:             -L. -L/usr/local/rbenv/versions/2.4.1/lib  \
                          -fstack-protector -rdynamic -Wl,-export-dynamic
   * optflags:            -O3 -fno-fast-math
   * debugflags:          -ggdb3
   * warnflags:           -Wall -Wextra -Wno-unused-parameter \
                          -Wno-parentheses -Wno-long-long \
                          -Wno-missing-field-initializers \
                          -Wno-tautological-compare \
                          -Wno-parentheses-equality \
                          -Wno-constant-logical-operand -Wno-self-assign \
                          -Wunused-variable -Wimplicit-int -Wpointer-arith \
                          -Wwrite-strings -Wdeclaration-after-statement \
                          -Wimplicit-function-declaration \
                          -Wdeprecated-declarations \
                          -Wno-packed-bitfield-compat \
                          -Wsuggest-attribute=noreturn \
                          -Wsuggest-attribute=format
   * strip command:       strip -S -x
   * install doc:         yes
   * man page type:       doc

---
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wno-tautological-compare -Wno-parentheses-equality -Wno-constant-logical-operand -Wno-self-assign -Wunused-variable -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration -Wdeprecated-declarations -Wno-packed-bitfield-compat -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -std=gnu99 
	XCFLAGS = -D_FORTIFY_SOURCE=2 -fstack-protector -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE
	CPPFLAGS = -I/usr/local/rbenv/versions/2.4.1/include    -I. -I.ext/include/x86_64-linux -I./include -I. -I./enc/unicode/9.0.0
	DLDFLAGS = -L/usr/local/rbenv/versions/2.4.1/lib  -fstack-protector -pie  
	SOLIBS = 
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-11)
Copyright (C) 2015 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.

making dummy probes.h
compiling main.c
compiling dmydln.c
compiling miniinit.c
compiling dmyext.c
compiling miniprelude.c
compiling array.c
compiling bignum.c
compiling class.c
compiling compar.c
compiling compile.c
compiling complex.c
compiling cont.c
compiling debug.c
compiling dir.c
compiling dln_find.c
compiling encoding.c
compiling enum.c
compiling enumerator.c
compiling error.c
compiling eval.c
compiling file.c
compiling gc.c
compiling hash.c
compiling inits.c
compiling io.c
compiling iseq.c
compiling load.c
compiling marshal.c
compiling math.c
compiling node.c
compiling numeric.c
compiling object.c
compiling pack.c
compiling parse.c
compiling proc.c
compiling process.c
compiling random.c
compiling range.c
compiling rational.c
compiling re.c
compiling regcomp.c
compiling regenc.c
compiling regerror.c
compiling regexec.c
compiling regparse.c
compiling regsyntax.c
compiling ruby.c
compiling safe.c
compiling signal.c
compiling sprintf.c
compiling st.c
compiling strftime.c
compiling string.c
compiling struct.c
compiling symbol.c
compiling thread.c
compiling time.c
compiling transcode.c
compiling util.c
compiling variable.c
compiling version.c
compiling vm.c
compiling vm_backtrace.c
compiling vm_dump.c
compiling vm_trace.c
compiling enc/ascii.c
compiling enc/us_ascii.c
compiling enc/unicode.c
compiling enc/utf_8.c
compiling enc/trans/newline.c
compiling ./missing/explicit_bzero.c
compiling ./missing/setproctitle.c
compiling ./missing/strlcat.c
compiling ./missing/strlcpy.c
compiling addr2line.c
compiling dmyenc.c
linking miniruby
generating encdb.h
encdb.h updated
./tool/ifchange "--timestamp=.rbconfig.time" rbconfig.rb rbconfig.tmp
rbconfig.rb updated
generating enc.mk
making srcs under enc
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
make[1]: `srcs' に対して行うべき事はありません.
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
generating transdb.h
transdb.h updated
compiling dln.c
compiling localeinit.c
creating verconf.h
verconf.h updated
compiling loadpath.c
compiling prelude.c
linking static-library libruby-static.a
verifying static-library libruby-static.a
generating makefile exts.mk
configuring -test-/array/resize
configuring -test-/bignum
configuring -test-/bug-3571
configuring -test-/bug-5832
configuring -test-/bug_reporter
configuring -test-/class
configuring -test-/debug
configuring -test-/dln/empty
configuring -test-/exception
configuring -test-/fatal
configuring -test-/file
configuring -test-/float
configuring -test-/funcall
configuring -test-/gvl/call_without_gvl
configuring -test-/hash
configuring -test-/integer
configuring -test-/iseq_load
configuring -test-/iter
configuring -test-/load/dot.dot
configuring -test-/marshal/compat
configuring -test-/marshal/internal_ivar
configuring -test-/marshal/usr
configuring -test-/memory_status
configuring -test-/method
configuring -test-/notimplement
configuring -test-/num2int
configuring -test-/path_to_class
configuring -test-/popen_deadlock
configuring -test-/postponed_job
configuring -test-/printf
configuring -test-/proc
configuring -test-/rational
configuring -test-/recursion
configuring -test-/regexp
configuring -test-/st/foreach
configuring -test-/st/numhash
configuring -test-/st/update
configuring -test-/string
configuring -test-/struct
configuring -test-/symbol
configuring -test-/time
configuring -test-/tracepoint
configuring -test-/typeddata
configuring -test-/vm
configuring -test-/wait_for_single_fd
configuring bigdecimal
configuring cgi/escape
configuring continuation
configuring coverage
configuring date
configuring dbm
configuring digest
configuring digest/bubblebabble
configuring digest/md5
configuring digest/rmd160
configuring digest/sha1
configuring digest/sha2
configuring etc
configuring fcntl
configuring fiber
configuring fiddle
configuring gdbm
configuring io/console
configuring io/nonblock
configuring io/wait
configuring json
configuring json/generator
configuring json/parser
configuring mathn/complex
configuring mathn/rational
configuring nkf
configuring objspace
configuring openssl
configuring pathname
configuring psych
configuring pty
configuring racc/cparse
configuring rbconfig/sizeof
configuring readline
configuring ripper
configuring rubyvm
configuring sdbm
configuring socket
configuring stringio
configuring strscan
configuring syslog
configuring zlib
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/array/resize' に入ります
compiling resize.c
linking shared-object -test-/array/resize.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/array/resize' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bignum' に入ります
compiling intpack.c
compiling big2str.c
compiling str2big.c
compiling mul.c
compiling bigzero.c
compiling div.c
compiling init.c
linking shared-object -test-/bignum.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bignum' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug-3571' に入ります
compiling bug.c
linking shared-object -test-/bug_3571.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug-3571' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug-5832' に入ります
compiling bug.c
linking shared-object -test-/bug_5832.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug-5832' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug_reporter' に入ります
compiling bug_reporter.c
linking shared-object -test-/bug_reporter.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug_reporter' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/class' に入ります
compiling init.c
compiling class2name.c
linking shared-object -test-/class.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/class' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/debug' に入ります
compiling inspector.c
compiling profile_frames.c
compiling init.c
linking shared-object -test-/debug.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/debug' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/dln/empty' に入ります
compiling empty.c
linking shared-object -test-/dln/empty.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/dln/empty' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/exception' に入ります
compiling ensured.c
compiling enc_raise.c
compiling dataerror.c
compiling init.c
linking shared-object -test-/exception.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/exception' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/fatal' に入ります
compiling rb_fatal.c
linking shared-object -test-/fatal/rb_fatal.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/fatal' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/file' に入ります
compiling fs.c
compiling stat.c
compiling init.c
linking shared-object -test-/file.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/file' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/float' に入ります
compiling nextafter.c
compiling init.c
linking shared-object -test-/float.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/float' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/funcall' に入ります
compiling passing_block.c
linking shared-object -test-/funcall.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/funcall' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/gvl/call_without_gvl' に入ります
compiling call_without_gvl.c
linking shared-object -test-/gvl/call_without_gvl.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/gvl/call_without_gvl' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/hash' に入ります
compiling init.c
compiling delete.c
linking shared-object -test-/hash.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/hash' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/integer' に入ります
compiling my_integer.c
compiling init.c
compiling core_ext.c
linking shared-object -test-/integer.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/integer' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/iseq_load' に入ります
compiling iseq_load.c
linking shared-object -test-/iseq_load.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/iseq_load' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/iter' に入ります
compiling init.c
compiling break.c
compiling yield.c
linking shared-object -test-/iter.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/iter' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/load/dot.dot' に入ります
compiling dot.dot.c
linking shared-object -test-/load/dot.dot.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/load/dot.dot' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/compat' に入ります
compiling usrcompat.c
linking shared-object -test-/marshal/compat.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/compat' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/internal_ivar' に入ります
compiling internal_ivar.c
linking shared-object -test-/marshal/internal_ivar.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/internal_ivar' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/usr' に入ります
compiling usrmarshal.c
linking shared-object -test-/marshal/usr.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/usr' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/memory_status' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/memory_status' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/method' に入ります
compiling arity.c
compiling init.c
linking shared-object -test-/method.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/method' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/notimplement' に入ります
compiling bug.c
linking shared-object -test-/notimplement.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/notimplement' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/num2int' に入ります
compiling num2int.c
linking shared-object -test-/num2int.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/num2int' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/path_to_class' に入ります
compiling path_to_class.c
linking shared-object -test-/path_to_class.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/path_to_class' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/popen_deadlock' に入ります
compiling infinite_loop_dlsym.c
linking shared-object -test-/popen_deadlock/infinite_loop_dlsym.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/popen_deadlock' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/postponed_job' に入ります
compiling postponed_job.c
linking shared-object -test-/postponed_job.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/postponed_job' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/printf' に入ります
compiling printf.c
linking shared-object -test-/printf.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/printf' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/proc' に入ります
compiling super.c
compiling init.c
compiling receiver.c
linking shared-object -test-/proc.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/proc' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/rational' に入ります
compiling rat.c
linking shared-object -test-/rational.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/rational' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/recursion' に入ります
compiling recursion.c
linking shared-object -test-/recursion.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/recursion' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/regexp' に入ります
compiling init.c
compiling parse_depth_limit.c
linking shared-object -test-/regexp.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/regexp' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/foreach' に入ります
compiling foreach.c
linking shared-object -test-/st/foreach.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/foreach' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/numhash' に入ります
compiling numhash.c
linking shared-object -test-/st/numhash.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/numhash' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/update' に入ります
compiling update.c
linking shared-object -test-/st/update.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/update' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/string' に入ります
compiling qsort.c
compiling set_len.c
compiling cstr.c
compiling fstring.c
compiling capacity.c
compiling nofree.c
compiling ellipsize.c
compiling enc_associate.c
compiling enc_str_buf_cat.c
compiling normalize.c
compiling init.c
compiling coderange.c
compiling modify.c
linking shared-object -test-/string.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/string' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/struct' に入ります
compiling init.c
compiling member.c
compiling duplicate.c
linking shared-object -test-/struct.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/struct' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/symbol' に入ります
compiling type.c
compiling init.c
linking shared-object -test-/symbol.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/symbol' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/time' に入ります
compiling init.c
compiling new.c
linking shared-object -test-/time.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/time' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/tracepoint' に入ります
compiling gc_hook.c
compiling tracepoint.c
linking shared-object -test-/tracepoint.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/tracepoint' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/typeddata' に入ります
compiling typeddata.c
linking shared-object -test-/typeddata.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/typeddata' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/vm' に入ります
compiling at_exit.c
linking shared-object -test-/vm/at_exit.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/vm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/wait_for_single_fd' に入ります
compiling wait_for_single_fd.c
linking shared-object -test-/wait_for_single_fd.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/wait_for_single_fd' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/bigdecimal' に入ります
compiling bigdecimal.c
linking shared-object bigdecimal.so
installing default bigdecimal libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/bigdecimal' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/cgi/escape' に入ります
compiling escape.c
linking shared-object cgi/escape.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/cgi/escape' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/continuation' に入ります
compiling continuation.c
linking shared-object continuation.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/continuation' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/coverage' に入ります
compiling coverage.c
linking shared-object coverage.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/coverage' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/date' に入ります
compiling date_core.c
compiling date_parse.c
compiling date_strftime.c
compiling date_strptime.c
linking shared-object date_core.so
installing default date_core libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/date' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/dbm' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/dbm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest' に入ります
compiling digest.c
linking shared-object digest.so
installing digest libraries
installing default digest libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/bubblebabble' に入ります
compiling bubblebabble.c
linking shared-object digest/bubblebabble.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/bubblebabble' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/md5' に入ります
compiling md5init.c
linking shared-object digest/md5.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/md5' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/rmd160' に入ります
compiling rmd160init.c
linking shared-object digest/rmd160.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/rmd160' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/sha1' に入ります
compiling sha1init.c
linking shared-object digest/sha1.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/sha1' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/sha2' に入ります
compiling sha2init.c
linking shared-object digest/sha2.so
installing default sha2 libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/sha2' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/etc' に入ります
generating constant definitions
compiling etc.c
linking shared-object etc.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/etc' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fcntl' に入ります
compiling fcntl.c
linking shared-object fcntl.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fcntl' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiber' に入ります
compiling fiber.c
linking shared-object fiber.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiber' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle' に入ります
compiling closure.c
compiling conversions.c
compiling fiddle.c
compiling function.c
compiling handle.c
compiling pointer.c
make[3]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1' に入ります
make 'AR_FLAGS=' 'CC_FOR_BUILD=' 'CFLAGS=-O3 -fno-fast-math -ggdb3  -Wall -fexceptions' 'CXXFLAGS=-O3 -fno-fast-math -ggdb3 ' 'CFLAGS_FOR_BUILD=' 'CFLAGS_FOR_TARGET=' 'INSTALL=/usr/bin/install -c' 'INSTALL_DATA=/usr/bin/install -c -m 644' 'INSTALL_PROGRAM=/usr/bin/install -c' 'INSTALL_SCRIPT=/usr/bin/install -c' 'JC1FLAGS=' 'LDFLAGS=-L. -L/usr/local/rbenv/versions/2.4.1/lib  -fstack-protector -rdynamic -Wl,-export-dynamic  -L../../.. ' 'LIBCFLAGS=' 'LIBCFLAGS_FOR_TARGET=' 'MAKE=make' 'MAKEINFO=/bin/sh /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1/missing makeinfo ' 'PICFLAG=' 'PICFLAG_FOR_TARGET=' 'RUNTESTFLAGS=' 'SHELL=/bin/sh' 'exec_prefix=/usr/local' 'infodir=/usr/local/share/info' 'libdir=/usr/local/rbenv/versions/2.4.1/lib' 'mandir=/usr/local/share/man' 'prefix=/usr/local' 'AR=ar' 'AS=as' 'CC=gcc' 'CXX=g++' 'LD=ld -m elf_x86_64' 'NM=nm' 'RANLIB=ranlib' 'DESTDIR=' all-recursive
make[4]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1' に入ります
Making all in include
make[5]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1/include' に入ります
make[5]: `all' に対して行うべき事はありません.
make[5]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1/include' から出ます
Making all in testsuite
make[5]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1/testsuite' に入ります
make[5]: `all' に対して行うべき事はありません.
make[5]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1/testsuite' から出ます
Making all in man
make[5]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1/man' に入ります
make[5]: `all' に対して行うべき事はありません.
make[5]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1/man' から出ます
make[5]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1' に入ります
  CC       src/prep_cif.lo
  CC       src/types.lo
  CC       src/raw_api.lo
  CC       src/java_raw_api.lo
  CC       src/closures.lo
  CC       src/x86/ffi64.lo
  CPPAS    src/x86/unix64.lo
  CC       src/x86/ffi.lo
  CPPAS    src/x86/sysv.lo
  CCLD     libffi_convenience.la
  CCLD     libffi.la
make[5]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1' から出ます
make[4]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1' から出ます
make[3]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle/libffi-3.2.1' から出ます
linking shared-object fiddle.so
installing default fiddle libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/gdbm' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/gdbm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/console' に入ります
compiling console.c
linking shared-object io/console.so
installing default console libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/console' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/nonblock' に入ります
compiling nonblock.c
linking shared-object io/nonblock.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/nonblock' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/wait' に入ります
compiling wait.c
linking shared-object io/wait.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/wait' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json' に入ります
installing default libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json/generator' に入ります
compiling generator.c
linking shared-object json/ext/generator.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json/generator' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json/parser' に入ります
compiling parser.c
linking shared-object json/ext/parser.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json/parser' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/mathn/complex' に入ります
compiling complex.c
linking shared-object mathn/complex.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/mathn/complex' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/mathn/rational' に入ります
compiling rational.c
linking shared-object mathn/rational.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/mathn/rational' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/nkf' に入ります
compiling nkf.c
linking shared-object nkf.so
installing default nkf libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/nkf' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/objspace' に入ります
compiling object_tracing.c
compiling objspace.c
compiling objspace_dump.c
linking shared-object objspace.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/objspace' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/openssl' に入ります
compiling openssl_missing.c
compiling ossl.c
compiling ossl_asn1.c
compiling ossl_bio.c
compiling ossl_bn.c
compiling ossl_cipher.c
compiling ossl_config.c
compiling ossl_digest.c
compiling ossl_engine.c
compiling ossl_hmac.c
compiling ossl_ns_spki.c
compiling ossl_ocsp.c
compiling ossl_pkcs12.c
compiling ossl_pkcs5.c
compiling ossl_pkcs7.c
compiling ossl_pkey.c
compiling ossl_pkey_dh.c
compiling ossl_pkey_dsa.c
compiling ossl_pkey_ec.c
compiling ossl_pkey_rsa.c
compiling ossl_rand.c
compiling ossl_ssl.c
compiling ossl_ssl_session.c
compiling ossl_x509.c
compiling ossl_x509attr.c
compiling ossl_x509cert.c
compiling ossl_x509crl.c
compiling ossl_x509ext.c
compiling ossl_x509name.c
compiling ossl_x509req.c
compiling ossl_x509revoked.c
compiling ossl_x509store.c
linking shared-object openssl.so
installing default openssl libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/openssl' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/pathname' に入ります
compiling pathname.c
linking shared-object pathname.so
installing default pathname libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/pathname' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/psych' に入ります
compiling psych_parser.c
compiling psych_emitter.c
compiling psych.c
compiling psych_yaml_tree.c
compiling psych_to_ruby.c
compiling ../.././ext/psych/yaml/dumper.c
compiling ../.././ext/psych/yaml/parser.c
../.././ext/psych/yaml/parser.c: 関数 ‘yaml_parser_parse_block_sequence_entry’ 内:
../.././ext/psych/yaml/parser.c:762:21: 警告: 変数 ‘dummy_mark’ が設定されましたが使用されていません [-Wunused-but-set-variable]
         yaml_mark_t dummy_mark;     /* Used to eliminate a compiler warning. */
                     ^
../.././ext/psych/yaml/parser.c: 関数 ‘yaml_parser_parse_block_mapping_key’ 内:
../.././ext/psych/yaml/parser.c:872:21: 警告: 変数 ‘dummy_mark’ が設定されましたが使用されていません [-Wunused-but-set-variable]
         yaml_mark_t dummy_mark;     /* Used to eliminate a compiler warning. */
                     ^
../.././ext/psych/yaml/parser.c: 関数 ‘yaml_parser_parse_flow_sequence_entry’ 内:
../.././ext/psych/yaml/parser.c:955:17: 警告: 変数 ‘dummy_mark’ が設定されましたが使用されていません [-Wunused-but-set-variable]
     yaml_mark_t dummy_mark;     /* Used to eliminate a compiler warning. */
                 ^
../.././ext/psych/yaml/parser.c: 関数 ‘yaml_parser_parse_flow_mapping_key’ 内:
../.././ext/psych/yaml/parser.c:1107:17: 警告: 変数 ‘dummy_mark’ が設定されましたが使用されていません [-Wunused-but-set-variable]
     yaml_mark_t dummy_mark;     /* Used to eliminate a compiler warning. */
                 ^
../.././ext/psych/yaml/parser.c: トップレベル:
cc1: 警告: 認識できないコマンドラインオプション "-Wno-self-assign" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-constant-logical-operand" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-parentheses-equality" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-tautological-compare" です [デフォルトで有効]
compiling ../.././ext/psych/yaml/writer.c
compiling ../.././ext/psych/yaml/reader.c
compiling ../.././ext/psych/yaml/loader.c
compiling ../.././ext/psych/yaml/api.c
../.././ext/psych/yaml/api.c: 関数 ‘yaml_document_delete’ 内:
../.././ext/psych/yaml/api.c:1121:7: 警告: 変数 ‘context’ が設定されましたが使用されていません [-Wunused-but-set-variable]
     } context;
       ^
../.././ext/psych/yaml/api.c: トップレベル:
cc1: 警告: 認識できないコマンドラインオプション "-Wno-self-assign" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-constant-logical-operand" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-parentheses-equality" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-tautological-compare" です [デフォルトで有効]
compiling ../.././ext/psych/yaml/emitter.c
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_emit_document_start’ 内:
../.././ext/psych/yaml/emitter.c:595:13: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             if (!yaml_emitter_write_indicator(emitter, "...", 1, 0, 0))
             ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:603:13: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             if (!yaml_emitter_write_indicator(emitter, "%YAML", 1, 0, 0))
             ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:605:13: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             if (!yaml_emitter_write_indicator(emitter, "1.1", 1, 0, 0))
             ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:617:17: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
                 if (!yaml_emitter_write_indicator(emitter, "%TAG", 1, 0, 0))
                 ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:637:13: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             if (!yaml_emitter_write_indicator(emitter, "---", 1, 0, 0))
             ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:654:13: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             if (!yaml_emitter_write_indicator(emitter, "...", 1, 0, 0))
             ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_emit_document_end’ 内:
../.././ext/psych/yaml/emitter.c:699:13: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             if (!yaml_emitter_write_indicator(emitter, "...", 1, 0, 0))
             ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_emit_flow_sequence_item’ 内:
../.././ext/psych/yaml/emitter.c:734:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, "[", 1, 1, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:746:13: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             if (!yaml_emitter_write_indicator(emitter, ",", 0, 0, 0))
             ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:751:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, "]", 0, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:759:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, ",", 0, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_emit_flow_mapping_key’ 内:
../.././ext/psych/yaml/emitter.c:783:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, "{", 1, 1, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:795:13: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             if (!yaml_emitter_write_indicator(emitter, ",", 0, 0, 0))
             ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:800:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, "}", 0, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:808:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, ",", 0, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:826:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, "?", 1, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_emit_flow_mapping_value’ 内:
../.././ext/psych/yaml/emitter.c:845:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, ":", 0, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:853:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, ":", 1, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_emit_block_sequence_item’ 内:
../.././ext/psych/yaml/emitter.c:886:5: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
     if (!yaml_emitter_write_indicator(emitter, "-", 1, 0, 1))
     ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_emit_block_mapping_key’ 内:
../.././ext/psych/yaml/emitter.c:930:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, "?", 1, 0, 1))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_emit_block_mapping_value’ 内:
../.././ext/psych/yaml/emitter.c:949:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, ":", 0, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:955:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, ":", 1, 0, 1))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_process_anchor’ 内:
../.././ext/psych/yaml/emitter.c:1247:17: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
                 (emitter->anchor_data.alias ? "*" : "&"), 1, 0, 0))
                 ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_process_tag’ 内:
../.././ext/psych/yaml/emitter.c:1277:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, "!<", 1, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:1282:9: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         if (!yaml_emitter_write_indicator(emitter, ">", 0, 0, 0))
         ^
../.././ext/psych/yaml/emitter.c:223:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_write_plain_scalar’ 内:
../.././ext/psych/yaml/emitter.c:28:6: 警告: 計算された値が使用されません [-Wunused-value]
      && ((emitter->line_break == YAML_CR_BREAK ?                                \
      ^
../.././ext/psych/yaml/emitter.c:56:11: 備考: in expansion of macro ‘PUT_BREAK’
          (PUT_BREAK(emitter),                                                   \
           ^
../.././ext/psych/yaml/emitter.c:1931:18: 備考: in expansion of macro ‘WRITE_BREAK’
             if (!WRITE_BREAK(emitter, string)) return 0;
                  ^
../.././ext/psych/yaml/emitter.c:28:6: 警告: 計算された値が使用されません [-Wunused-value]
      && ((emitter->line_break == YAML_CR_BREAK ?                                \
      ^
../.././ext/psych/yaml/emitter.c:56:11: 備考: in expansion of macro ‘PUT_BREAK’
          (PUT_BREAK(emitter),                                                   \
           ^
../.././ext/psych/yaml/emitter.c:1931:18: 備考: in expansion of macro ‘WRITE_BREAK’
             if (!WRITE_BREAK(emitter, string)) return 0;
                  ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_write_single_quoted_scalar’ 内:
../.././ext/psych/yaml/emitter.c:1967:5: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
     if (!yaml_emitter_write_indicator(emitter, "'", 1, 0, 0))
     ^
../.././ext/psych/yaml/emitter.c:1786:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:28:6: 警告: 計算された値が使用されません [-Wunused-value]
      && ((emitter->line_break == YAML_CR_BREAK ?                                \
      ^
../.././ext/psych/yaml/emitter.c:56:11: 備考: in expansion of macro ‘PUT_BREAK’
          (PUT_BREAK(emitter),                                                   \
           ^
../.././ext/psych/yaml/emitter.c:1992:18: 備考: in expansion of macro ‘WRITE_BREAK’
             if (!WRITE_BREAK(emitter, string)) return 0;
                  ^
../.././ext/psych/yaml/emitter.c:28:6: 警告: 計算された値が使用されません [-Wunused-value]
      && ((emitter->line_break == YAML_CR_BREAK ?                                \
      ^
../.././ext/psych/yaml/emitter.c:56:11: 備考: in expansion of macro ‘PUT_BREAK’
          (PUT_BREAK(emitter),                                                   \
           ^
../.././ext/psych/yaml/emitter.c:1992:18: 備考: in expansion of macro ‘WRITE_BREAK’
             if (!WRITE_BREAK(emitter, string)) return 0;
                  ^
../.././ext/psych/yaml/emitter.c:2011:5: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
     if (!yaml_emitter_write_indicator(emitter, "'", 0, 0, 0))
     ^
../.././ext/psych/yaml/emitter.c:1786:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_write_double_quoted_scalar’ 内:
../.././ext/psych/yaml/emitter.c:2029:5: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
     if (!yaml_emitter_write_indicator(emitter, "\"", 1, 0, 0))
     ^
../.././ext/psych/yaml/emitter.c:1786:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:2167:5: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
     if (!yaml_emitter_write_indicator(emitter, "\"", 0, 0, 0))
     ^
../.././ext/psych/yaml/emitter.c:1786:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_write_block_scalar_hints’ 内:
../.././ext/psych/yaml/emitter.c:2196:20: 警告: assignment discards ‘const’ qualifier from pointer target type [デフォルトで有効]
         chomp_hint = "-";
                    ^
../.././ext/psych/yaml/emitter.c:2205:24: 警告: assignment discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             chomp_hint = "-";
                        ^
../.././ext/psych/yaml/emitter.c:2209:24: 警告: assignment discards ‘const’ qualifier from pointer target type [デフォルトで有効]
             chomp_hint = "+";
                        ^
../.././ext/psych/yaml/emitter.c:2219:28: 警告: assignment discards ‘const’ qualifier from pointer target type [デフォルトで有効]
                 chomp_hint = "+";
                            ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_write_literal_scalar’ 内:
../.././ext/psych/yaml/emitter.c:2243:5: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
     if (!yaml_emitter_write_indicator(emitter, "|", 1, 0, 0))
     ^
../.././ext/psych/yaml/emitter.c:1786:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:28:6: 警告: 計算された値が使用されません [-Wunused-value]
      && ((emitter->line_break == YAML_CR_BREAK ?                                \
      ^
../.././ext/psych/yaml/emitter.c:56:11: 備考: in expansion of macro ‘PUT_BREAK’
          (PUT_BREAK(emitter),                                                   \
           ^
../.././ext/psych/yaml/emitter.c:2255:18: 備考: in expansion of macro ‘WRITE_BREAK’
             if (!WRITE_BREAK(emitter, string)) return 0;
                  ^
../.././ext/psych/yaml/emitter.c:28:6: 警告: 計算された値が使用されません [-Wunused-value]
      && ((emitter->line_break == YAML_CR_BREAK ?                                \
      ^
../.././ext/psych/yaml/emitter.c:56:11: 備考: in expansion of macro ‘PUT_BREAK’
          (PUT_BREAK(emitter),                                                   \
           ^
../.././ext/psych/yaml/emitter.c:2255:18: 備考: in expansion of macro ‘WRITE_BREAK’
             if (!WRITE_BREAK(emitter, string)) return 0;
                  ^
../.././ext/psych/yaml/emitter.c: 関数 ‘yaml_emitter_write_folded_scalar’ 内:
../.././ext/psych/yaml/emitter.c:2283:5: 警告: passing argument 2 of ‘yaml_emitter_write_indicator’ discards ‘const’ qualifier from pointer target type [デフォルトで有効]
     if (!yaml_emitter_write_indicator(emitter, ">", 1, 0, 0))
     ^
../.././ext/psych/yaml/emitter.c:1786:1: 備考: expected ‘char *’ but argument is of type ‘const char *’
 yaml_emitter_write_indicator(yaml_emitter_t *emitter,
 ^
../.././ext/psych/yaml/emitter.c:28:6: 警告: 計算された値が使用されません [-Wunused-value]
      && ((emitter->line_break == YAML_CR_BREAK ?                                \
      ^
../.././ext/psych/yaml/emitter.c:56:11: 備考: in expansion of macro ‘PUT_BREAK’
          (PUT_BREAK(emitter),                                                   \
           ^
../.././ext/psych/yaml/emitter.c:2304:18: 備考: in expansion of macro ‘WRITE_BREAK’
             if (!WRITE_BREAK(emitter, string)) return 0;
                  ^
../.././ext/psych/yaml/emitter.c:28:6: 警告: 計算された値が使用されません [-Wunused-value]
      && ((emitter->line_break == YAML_CR_BREAK ?                                \
      ^
../.././ext/psych/yaml/emitter.c:56:11: 備考: in expansion of macro ‘PUT_BREAK’
          (PUT_BREAK(emitter),                                                   \
           ^
../.././ext/psych/yaml/emitter.c:2304:18: 備考: in expansion of macro ‘WRITE_BREAK’
             if (!WRITE_BREAK(emitter, string)) return 0;
                  ^
../.././ext/psych/yaml/emitter.c: トップレベル:
cc1: 警告: 認識できないコマンドラインオプション "-Wno-self-assign" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-constant-logical-operand" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-parentheses-equality" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-tautological-compare" です [デフォルトで有効]
compiling ../.././ext/psych/yaml/scanner.c
../.././ext/psych/yaml/scanner.c: 関数 ‘yaml_parser_decrease_flow_level’ 内:
../.././ext/psych/yaml/scanner.c:1189:23: 警告: 変数 ‘dummy_key’ が設定されましたが使用されていません [-Wunused-but-set-variable]
     yaml_simple_key_t dummy_key;    /* Used to eliminate a compiler warning. */
                       ^
../.././ext/psych/yaml/scanner.c: トップレベル:
cc1: 警告: 認識できないコマンドラインオプション "-Wno-self-assign" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-constant-logical-operand" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-parentheses-equality" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-tautological-compare" です [デフォルトで有効]
linking shared-object psych.so
installing default psych libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/psych' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/pty' に入ります
compiling pty.c
linking shared-object pty.so
installing default pty libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/pty' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/racc/cparse' に入ります
compiling cparse.c
linking shared-object racc/cparse.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/racc/cparse' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/rbconfig/sizeof' に入ります
compiling sizes.c
linking shared-object rbconfig/sizeof.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/rbconfig/sizeof' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/readline' に入ります
compiling readline.c
linking shared-object readline.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/readline' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/ripper' に入ります
compiling ripper.c
linking shared-object ripper.so
installing default ripper libraries
checking ../.././parse.y and ../.././ext/ripper/eventids2.c
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/ripper' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/rubyvm' に入ります
installing default libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/rubyvm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/sdbm' に入ります
compiling _sdbm.c
compiling init.c
linking shared-object sdbm.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/sdbm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/socket' に入ります
compiling init.c
compiling constants.c
compiling basicsocket.c
compiling socket.c
compiling ipsocket.c
compiling tcpsocket.c
compiling tcpserver.c
compiling sockssocket.c
compiling udpsocket.c
compiling unixsocket.c
compiling unixserver.c
compiling option.c
compiling ancdata.c
compiling raddrinfo.c
compiling ifaddr.c
linking shared-object socket.so
installing default socket libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/socket' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/stringio' に入ります
compiling stringio.c
linking shared-object stringio.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/stringio' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/strscan' に入ります
compiling strscan.c
linking shared-object strscan.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/strscan' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/syslog' に入ります
compiling syslog.c
linking shared-object syslog.so
installing default syslog libraries
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/syslog' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/zlib' に入ります
compiling zlib.c
linking shared-object zlib.so
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/zlib' から出ます
*** Following extensions failed to configure:
../.././ext/dbm/extconf.rb:0: Failed to configure dbm. It will not be installed.
../.././ext/gdbm/extconf.rb:0: Failed to configure gdbm. It will not be installed.
*** Fix the problems, then remove these directories and try again if you want.
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
linking ruby
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
making enc
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
compiling ./enc/encdb.c
linking encoding encdb.so
compiling ./enc/big5.c
linking encoding big5.so
compiling ./enc/cp949.c
linking encoding cp949.so
compiling ./enc/emacs_mule.c
linking encoding emacs_mule.so
compiling ./enc/euc_jp.c
linking encoding euc_jp.so
compiling ./enc/euc_kr.c
linking encoding euc_kr.so
compiling ./enc/euc_tw.c
linking encoding euc_tw.so
compiling ./enc/gb2312.c
linking encoding gb2312.so
compiling ./enc/gb18030.c
linking encoding gb18030.so
compiling ./enc/gbk.c
linking encoding gbk.so
compiling ./enc/iso_8859_1.c
linking encoding iso_8859_1.so
compiling ./enc/iso_8859_2.c
linking encoding iso_8859_2.so
compiling ./enc/iso_8859_3.c
linking encoding iso_8859_3.so
compiling ./enc/iso_8859_4.c
linking encoding iso_8859_4.so
compiling ./enc/iso_8859_5.c
linking encoding iso_8859_5.so
compiling ./enc/iso_8859_6.c
linking encoding iso_8859_6.so
compiling ./enc/iso_8859_7.c
linking encoding iso_8859_7.so
compiling ./enc/iso_8859_8.c
linking encoding iso_8859_8.so
compiling ./enc/iso_8859_9.c
linking encoding iso_8859_9.so
compiling ./enc/iso_8859_10.c
linking encoding iso_8859_10.so
compiling ./enc/iso_8859_11.c
linking encoding iso_8859_11.so
compiling ./enc/iso_8859_13.c
linking encoding iso_8859_13.so
compiling ./enc/iso_8859_14.c
linking encoding iso_8859_14.so
compiling ./enc/iso_8859_15.c
linking encoding iso_8859_15.so
compiling ./enc/iso_8859_16.c
linking encoding iso_8859_16.so
compiling ./enc/koi8_r.c
linking encoding koi8_r.so
compiling ./enc/koi8_u.c
linking encoding koi8_u.so
compiling ./enc/shift_jis.c
linking encoding shift_jis.so
compiling ./enc/utf_16be.c
linking encoding utf_16be.so
compiling ./enc/utf_16le.c
linking encoding utf_16le.so
compiling ./enc/utf_32be.c
linking encoding utf_32be.so
compiling ./enc/utf_32le.c
linking encoding utf_32le.so
compiling ./enc/windows_31j.c
linking encoding windows_31j.so
compiling ./enc/windows_1250.c
linking encoding windows_1250.so
compiling ./enc/windows_1251.c
linking encoding windows_1251.so
compiling ./enc/windows_1252.c
linking encoding windows_1252.so
compiling ./enc/windows_1253.c
linking encoding windows_1253.so
compiling ./enc/windows_1254.c
linking encoding windows_1254.so
compiling ./enc/windows_1257.c
linking encoding windows_1257.so
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
making trans
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
compiling ./enc/trans/transdb.c
linking transcoder transdb.so
compiling ./enc/trans/big5.c
linking transcoder big5.so
compiling ./enc/trans/chinese.c
linking transcoder chinese.so
compiling ./enc/trans/ebcdic.c
linking transcoder ebcdic.so
compiling ./enc/trans/emoji.c
linking transcoder emoji.so
compiling ./enc/trans/emoji_iso2022_kddi.c
linking transcoder emoji_iso2022_kddi.so
compiling ./enc/trans/emoji_sjis_docomo.c
linking transcoder emoji_sjis_docomo.so
compiling ./enc/trans/emoji_sjis_kddi.c
linking transcoder emoji_sjis_kddi.so
compiling ./enc/trans/emoji_sjis_softbank.c
linking transcoder emoji_sjis_softbank.so
compiling ./enc/trans/escape.c
linking transcoder escape.so
compiling ./enc/trans/gb18030.c
linking transcoder gb18030.so
compiling ./enc/trans/gbk.c
linking transcoder gbk.so
compiling ./enc/trans/iso2022.c
linking transcoder iso2022.so
compiling ./enc/trans/japanese.c
linking transcoder japanese.so
compiling ./enc/trans/japanese_euc.c
linking transcoder japanese_euc.so
compiling ./enc/trans/japanese_sjis.c
linking transcoder japanese_sjis.so
compiling ./enc/trans/korean.c
linking transcoder korean.so
compiling ./enc/trans/single_byte.c
linking transcoder single_byte.so
compiling ./enc/trans/utf8_mac.c
linking transcoder utf8_mac.so
compiling ./enc/trans/utf_16_32.c
linking transcoder utf_16_32.so
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
making encs
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
make[1]: `encs' に対して行うべき事はありません.
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
Generating RDoc documentation
Parsing sources...
  0% [ 1/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-0.06_to_0.52
  0% [ 2/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-0.50_to_0.60
  0% [ 3/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-0.60_to_1.1
  0% [ 4/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-1.8.0
  0% [ 5/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-1.9.3
  0% [ 6/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-2.0.0
  0% [ 7/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-2.1.0
  0% [ 8/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-2.2.0
  1% [ 9/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-2.3.0
  1% [10/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-2.4.0
  1% [11/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-2016
  1% [12/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/ChangeLog-YARV
  1% [13/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/NEWS-1.8.7
  1% [14/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/NEWS-1.9.1
  1% [15/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/NEWS-1.9.2
  1% [16/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/NEWS-1.9.3
  1% [17/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/NEWS-2.0.0
  2% [18/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/NEWS-2.1.0
  2% [19/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/NEWS-2.2.0
  2% [20/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/NEWS-2.3.0
  2% [21/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/contributing.rdoc
  2% [22/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/contributors.rdoc
  2% [23/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/dtrace_probes.rdoc
  2% [24/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/extension.ja.rdoc
  2% [25/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/extension.rdoc
  2% [26/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/globals.rdoc
  3% [27/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/keywords.rdoc
  3% [28/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/maintainers.rdoc
  3% [29/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/marshal.rdoc
  3% [30/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/regexp.rdoc
  3% [31/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/security.rdoc
  3% [32/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/standard_library.rdoc
  3% [33/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax.rdoc
  3% [34/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/assignment.rdoc
  3% [35/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/calling_methods.rdoc
  4% [36/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/control_expressions.rdoc
  4% [37/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/exceptions.rdoc
  4% [38/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/literals.rdoc
  4% [39/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/methods.rdoc
  4% [40/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/miscellaneous.rdoc
  4% [41/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/modules_and_classes.rdoc
  4% [42/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/precedence.rdoc
  4% [43/889]  /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/doc/syntax/refinements.rdoc
  4% [44/889]  ChangeLog
  5% [45/889]  NEWS
  5% [46/889]  README.ja.md
  5% [47/889]  README.md
  5% [48/889]  addr2line.c
  5% [49/889]  array.c
  5% [50/889]  bignum.c
  5% [51/889]  class.c
  5% [52/889]  compar.c
  5% [53/889]  compile.c
  6% [54/889]  complex.c
  6% [55/889]  cont.c
  6% [56/889]  debug.c
  6% [57/889]  dir.c
  6% [58/889]  dln.c
  6% [59/889]  dln_find.c
  6% [60/889]  dmydln.c
  6% [61/889]  dmyenc.c
  6% [62/889]  dmyext.c
  7% [63/889]  doc/ChangeLog-0.06_to_0.52
  7% [64/889]  doc/ChangeLog-0.50_to_0.60
  7% [65/889]  doc/ChangeLog-0.60_to_1.1
  7% [66/889]  doc/ChangeLog-1.8.0
  7% [67/889]  doc/ChangeLog-1.9.3
  7% [68/889]  doc/ChangeLog-2.0.0
  7% [69/889]  doc/ChangeLog-2.1.0
  7% [70/889]  doc/ChangeLog-2.2.0
  7% [71/889]  doc/ChangeLog-2.3.0
  8% [72/889]  doc/ChangeLog-2.4.0
  8% [73/889]  doc/ChangeLog-2016
  8% [74/889]  doc/ChangeLog-YARV
  8% [75/889]  doc/NEWS-1.8.7
  8% [76/889]  doc/NEWS-1.9.1
  8% [77/889]  doc/NEWS-1.9.2
  8% [78/889]  doc/NEWS-1.9.3
  8% [79/889]  doc/NEWS-2.0.0
  8% [80/889]  doc/NEWS-2.1.0
  9% [81/889]  doc/NEWS-2.2.0
  9% [82/889]  doc/NEWS-2.3.0
  9% [83/889]  doc/contributing.rdoc
  9% [84/889]  doc/contributors.rdoc
  9% [85/889]  doc/dtrace_probes.rdoc
  9% [86/889]  doc/extension.ja.rdoc
  9% [87/889]  doc/extension.rdoc
  9% [88/889]  doc/globals.rdoc
 10% [89/889]  doc/keywords.rdoc
 10% [90/889]  doc/maintainers.rdoc
 10% [91/889]  doc/marshal.rdoc
 10% [92/889]  doc/regexp.rdoc
 10% [93/889]  doc/security.rdoc
 10% [94/889]  doc/standard_library.rdoc
 10% [95/889]  doc/syntax.rdoc
 10% [96/889]  doc/syntax/assignment.rdoc
 10% [97/889]  doc/syntax/calling_methods.rdoc
 11% [98/889]  doc/syntax/control_expressions.rdoc
 11% [99/889]  doc/syntax/exceptions.rdoc
 11% [100/889]  doc/syntax/literals.rdoc
 11% [101/889]  doc/syntax/methods.rdoc
 11% [102/889]  doc/syntax/miscellaneous.rdoc
 11% [103/889]  doc/syntax/modules_and_classes.rdoc
 11% [104/889]  doc/syntax/precedence.rdoc
 11% [105/889]  doc/syntax/refinements.rdoc
 11% [106/889]  encoding.c
 12% [107/889]  enum.c
 12% [108/889]  enumerator.c
 12% [109/889]  error.c
 12% [110/889]  eval.c
 12% [111/889]  eval_error.c
 12% [112/889]  eval_jump.c
 12% [113/889]  ext/bigdecimal/bigdecimal.c
 12% [114/889]  ext/bigdecimal/lib/bigdecimal/jacobian.rb
 12% [115/889]  ext/bigdecimal/lib/bigdecimal/ludcmp.rb
 13% [116/889]  ext/bigdecimal/lib/bigdecimal/math.rb
 13% [117/889]  ext/bigdecimal/lib/bigdecimal/newton.rb
 13% [118/889]  ext/bigdecimal/lib/bigdecimal/util.rb
 13% [119/889]  ext/continuation/continuation.c
 13% [120/889]  ext/coverage/coverage.c
 13% [121/889]  ext/date/date_core.c
 13% [122/889]  ext/dbm/dbm.c
 13% [123/889]  ext/digest/bubblebabble/bubblebabble.c
 13% [124/889]  ext/digest/digest.c
 14% [125/889]  ext/digest/lib/digest.rb
 14% [126/889]  ext/digest/md5/md5init.c
 14% [127/889]  ext/digest/rmd160/rmd160init.c
 14% [128/889]  ext/digest/sha1/sha1init.c
 14% [129/889]  ext/digest/sha2/sha2init.c
 14% [130/889]  ext/etc/etc.c
 14% [131/889]  ext/fcntl/fcntl.c
 14% [132/889]  ext/fiber/fiber.c
 14% [133/889]  ext/fiddle/closure.c
 15% [134/889]  ext/fiddle/conversions.c
 15% [135/889]  ext/fiddle/fiddle.c
 15% [136/889]  ext/fiddle/function.c
 15% [137/889]  ext/fiddle/handle.c
 15% [138/889]  ext/fiddle/lib/fiddle.rb
 15% [139/889]  ext/fiddle/lib/fiddle/closure.rb
 15% [140/889]  ext/fiddle/lib/fiddle/cparser.rb
 15% [141/889]  ext/fiddle/lib/fiddle/function.rb
 15% [142/889]  ext/fiddle/lib/fiddle/import.rb
 16% [143/889]  ext/fiddle/lib/fiddle/pack.rb
 16% [144/889]  ext/fiddle/lib/fiddle/struct.rb
 16% [145/889]  ext/fiddle/lib/fiddle/types.rb
 16% [146/889]  ext/fiddle/lib/fiddle/value.rb
 16% [147/889]  ext/fiddle/pointer.c
 16% [148/889]  ext/gdbm/gdbm.c
 16% [149/889]  ext/io/console/console.c
 16% [150/889]  ext/io/nonblock/nonblock.c
 16% [151/889]  ext/io/wait/wait.c
 17% [152/889]  ext/json/lib/json.rb
 17% [153/889]  ext/json/lib/json/add/bigdecimal.rb
 17% [154/889]  ext/json/lib/json/add/complex.rb
 17% [155/889]  ext/json/lib/json/add/core.rb
 17% [156/889]  ext/json/lib/json/add/date.rb
 17% [157/889]  ext/json/lib/json/add/date_time.rb
 17% [158/889]  ext/json/lib/json/add/exception.rb
 17% [159/889]  ext/json/lib/json/add/ostruct.rb
 17% [160/889]  ext/json/lib/json/add/range.rb
 18% [161/889]  ext/json/lib/json/add/rational.rb
 18% [162/889]  ext/json/lib/json/add/regexp.rb
 18% [163/889]  ext/json/lib/json/add/struct.rb
 18% [164/889]  ext/json/lib/json/add/symbol.rb
 18% [165/889]  ext/json/lib/json/add/time.rb
 18% [166/889]  ext/json/lib/json/common.rb
 18% [167/889]  ext/json/lib/json/ext.rb
 18% [168/889]  ext/json/lib/json/generic_object.rb
 19% [169/889]  ext/json/lib/json/version.rb
 19% [170/889]  ext/mathn/complex/complex.c
 19% [171/889]  ext/mathn/rational/rational.c
 19% [172/889]  ext/nkf/lib/kconv.rb
 19% [173/889]  ext/nkf/nkf.c
 19% [174/889]  ext/objspace/object_tracing.c
 19% [175/889]  ext/objspace/objspace.c
 19% [176/889]  ext/objspace/objspace_dump.c
 19% [177/889]  ext/openssl/lib/openssl.rb
 20% [178/889]  ext/openssl/lib/openssl/bn.rb
 20% [179/889]  ext/openssl/lib/openssl/buffering.rb
 20% [180/889]  ext/openssl/lib/openssl/cipher.rb
 20% [181/889]  ext/openssl/lib/openssl/config.rb
 20% [182/889]  ext/openssl/lib/openssl/digest.rb
 20% [183/889]  ext/openssl/lib/openssl/pkey.rb
 20% [184/889]  ext/openssl/lib/openssl/ssl.rb
 20% [185/889]  ext/openssl/lib/openssl/x509.rb
 20% [186/889]  ext/openssl/ossl.c
 21% [187/889]  ext/openssl/ossl_asn1.c
 21% [188/889]  ext/openssl/ossl_bio.c
 21% [189/889]  ext/openssl/ossl_bn.c
 21% [190/889]  ext/openssl/ossl_cipher.c
 21% [191/889]  ext/openssl/ossl_config.c
 21% [192/889]  ext/openssl/ossl_digest.c
 21% [193/889]  ext/openssl/ossl_engine.c
 21% [194/889]  ext/openssl/ossl_hmac.c
 21% [195/889]  ext/openssl/ossl_ns_spki.c
 22% [196/889]  ext/openssl/ossl_ocsp.c
 22% [197/889]  ext/openssl/ossl_pkcs12.c
 22% [198/889]  ext/openssl/ossl_pkcs5.c
 22% [199/889]  ext/openssl/ossl_pkcs7.c
 22% [200/889]  ext/openssl/ossl_pkey.c
 22% [201/889]  ext/openssl/ossl_pkey_dh.c
 22% [202/889]  ext/openssl/ossl_pkey_dsa.c
 22% [203/889]  ext/openssl/ossl_pkey_ec.c
 22% [204/889]  ext/openssl/ossl_pkey_rsa.c
 23% [205/889]  ext/openssl/ossl_rand.c
 23% [206/889]  ext/openssl/ossl_ssl.c
 23% [207/889]  ext/openssl/ossl_ssl_session.c
 23% [208/889]  ext/openssl/ossl_x509.c
 23% [209/889]  ext/openssl/ossl_x509attr.c
 23% [210/889]  ext/openssl/ossl_x509cert.c
 23% [211/889]  ext/openssl/ossl_x509crl.c
 23% [212/889]  ext/openssl/ossl_x509ext.c
 23% [213/889]  ext/openssl/ossl_x509name.c
 24% [214/889]  ext/openssl/ossl_x509req.c
 24% [215/889]  ext/openssl/ossl_x509revoked.c
 24% [216/889]  ext/openssl/ossl_x509store.c
 24% [217/889]  ext/pathname/lib/pathname.rb
 24% [218/889]  ext/pathname/pathname.c
 24% [219/889]  ext/psych/lib/psych.rb
 24% [220/889]  ext/psych/lib/psych/class_loader.rb
 24% [221/889]  ext/psych/lib/psych/coder.rb
 24% [222/889]  ext/psych/lib/psych/core_ext.rb
 25% [223/889]  ext/psych/lib/psych/deprecated.rb
 25% [224/889]  ext/psych/lib/psych/exception.rb
 25% [225/889]  ext/psych/lib/psych/handler.rb
 25% [226/889]  ext/psych/lib/psych/handlers/document_stream.rb
 25% [227/889]  ext/psych/lib/psych/handlers/recorder.rb
 25% [228/889]  ext/psych/lib/psych/json/ruby_events.rb
 25% [229/889]  ext/psych/lib/psych/json/stream.rb
 25% [230/889]  ext/psych/lib/psych/json/tree_builder.rb
 25% [231/889]  ext/psych/lib/psych/json/yaml_events.rb
 26% [232/889]  ext/psych/lib/psych/nodes.rb
 26% [233/889]  ext/psych/lib/psych/nodes/alias.rb
 26% [234/889]  ext/psych/lib/psych/nodes/document.rb
 26% [235/889]  ext/psych/lib/psych/nodes/mapping.rb
 26% [236/889]  ext/psych/lib/psych/nodes/node.rb
 26% [237/889]  ext/psych/lib/psych/nodes/scalar.rb
 26% [238/889]  ext/psych/lib/psych/nodes/sequence.rb
 26% [239/889]  ext/psych/lib/psych/nodes/stream.rb
 26% [240/889]  ext/psych/lib/psych/omap.rb
 27% [241/889]  ext/psych/lib/psych/parser.rb
 27% [242/889]  ext/psych/lib/psych/scalar_scanner.rb
 27% [243/889]  ext/psych/lib/psych/set.rb
 27% [244/889]  ext/psych/lib/psych/stream.rb
 27% [245/889]  ext/psych/lib/psych/streaming.rb
 27% [246/889]  ext/psych/lib/psych/syntax_error.rb
 27% [247/889]  ext/psych/lib/psych/tree_builder.rb
 27% [248/889]  ext/psych/lib/psych/versions.rb
 28% [249/889]  ext/psych/lib/psych/visitors.rb
 28% [250/889]  ext/psych/lib/psych/visitors/depth_first.rb
 28% [251/889]  ext/psych/lib/psych/visitors/emitter.rb
 28% [252/889]  ext/psych/lib/psych/visitors/json_tree.rb
 28% [253/889]  ext/psych/lib/psych/visitors/to_ruby.rb
 28% [254/889]  ext/psych/lib/psych/visitors/visitor.rb
 28% [255/889]  ext/psych/lib/psych/visitors/yaml_tree.rb
 28% [256/889]  ext/psych/lib/psych/y.rb
 28% [257/889]  ext/psych/psych.c
 29% [258/889]  ext/pty/lib/expect.rb
 29% [259/889]  ext/pty/pty.c
 29% [260/889]  ext/racc/cparse/cparse.c
 29% [261/889]  ext/readline/readline.c
 29% [262/889]  ext/ripper/lib/ripper.rb
 29% [263/889]  ext/ripper/lib/ripper/core.rb
 29% [264/889]  ext/ripper/lib/ripper/filter.rb
 29% [265/889]  ext/ripper/lib/ripper/lexer.rb
 29% [266/889]  ext/ripper/lib/ripper/sexp.rb
 30% [267/889]  ext/ripper/ripper.c
 30% [268/889]  ext/sdbm/init.c
 30% [269/889]  ext/socket/ancdata.c
 30% [270/889]  ext/socket/basicsocket.c
 30% [271/889]  ext/socket/constants.c
 30% [272/889]  ext/socket/constdefs.c
 30% [273/889]  ext/socket/ifaddr.c
 30% [274/889]  ext/socket/init.c
 30% [275/889]  ext/socket/ipsocket.c
 31% [276/889]  ext/socket/lib/socket.rb
 31% [277/889]  ext/socket/option.c
 31% [278/889]  ext/socket/raddrinfo.c
 31% [279/889]  ext/socket/socket.c
 31% [280/889]  ext/socket/sockssocket.c
 31% [281/889]  ext/socket/tcpserver.c
 31% [282/889]  ext/socket/tcpsocket.c
 31% [283/889]  ext/socket/udpsocket.c
 31% [284/889]  ext/socket/unixserver.c
 32% [285/889]  ext/socket/unixsocket.c
 32% [286/889]  ext/stringio/stringio.c
 32% [287/889]  ext/strscan/strscan.c
 32% [288/889]  ext/syslog/lib/syslog/logger.rb
 32% [289/889]  ext/syslog/syslog.c
 32% [290/889]  ext/win32ole/lib/win32ole/property.rb
 32% [291/889]  ext/win32ole/win32ole.c
 32% [292/889]  ext/win32ole/win32ole_error.c
 32% [293/889]  ext/win32ole/win32ole_event.c
 33% [294/889]  ext/win32ole/win32ole_method.c
 33% [295/889]  ext/win32ole/win32ole_param.c
 33% [296/889]  ext/win32ole/win32ole_record.c
 33% [297/889]  ext/win32ole/win32ole_type.c
 33% [298/889]  ext/win32ole/win32ole_typelib.c
 33% [299/889]  ext/win32ole/win32ole_variable.c
 33% [300/889]  ext/win32ole/win32ole_variant.c
 33% [301/889]  ext/win32ole/win32ole_variant_m.c
 33% [302/889]  ext/zlib/zlib.c
 34% [303/889]  file.c
 34% [304/889]  gc.c
 34% [305/889]  golf_prelude.c
 34% [306/889]  goruby.c
 34% [307/889]  hash.c
 34% [308/889]  id.c
 34% [309/889]  id_table.c
 34% [310/889]  inits.c
 34% [311/889]  io.c
 35% [312/889]  iseq.c
 35% [313/889]  lex.c
 35% [314/889]  lib/English.rb
 35% [315/889]  lib/abbrev.rb
 35% [316/889]  lib/base64.rb
 35% [317/889]  lib/benchmark.rb
 35% [318/889]  lib/cgi.rb
 35% [319/889]  lib/cgi/cookie.rb
 35% [320/889]  lib/cgi/core.rb
 36% [321/889]  lib/cgi/html.rb
 36% [322/889]  lib/cgi/session.rb
 36% [323/889]  lib/cgi/session/pstore.rb
 36% [324/889]  lib/cgi/util.rb
 36% [325/889]  lib/cmath.rb
 36% [326/889]  lib/csv.rb
 36% [327/889]  lib/debug.rb
 36% [328/889]  lib/delegate.rb
 37% [329/889]  lib/drb.rb
 37% [330/889]  lib/drb/acl.rb
 37% [331/889]  lib/drb/drb.rb
 37% [332/889]  lib/drb/eq.rb
 37% [333/889]  lib/drb/extserv.rb
 37% [334/889]  lib/drb/extservm.rb
 37% [335/889]  lib/drb/gw.rb
 37% [336/889]  lib/drb/invokemethod.rb
 37% [337/889]  lib/drb/observer.rb
 38% [338/889]  lib/drb/ssl.rb
 38% [339/889]  lib/drb/timeridconv.rb
 38% [340/889]  lib/drb/unix.rb
 38% [341/889]  lib/e2mmap.rb
 38% [342/889]  lib/erb.rb
 38% [343/889]  lib/fileutils.rb
 38% [344/889]  lib/find.rb
 38% [345/889]  lib/forwardable.rb
 38% [346/889]  lib/forwardable/impl.rb
 39% [347/889]  lib/getoptlong.rb
 39% [348/889]  lib/ipaddr.rb
 39% [349/889]  lib/irb.rb
 39% [350/889]  lib/irb/cmd/chws.rb
 39% [351/889]  lib/irb/cmd/fork.rb
 39% [352/889]  lib/irb/cmd/help.rb
 39% [353/889]  lib/irb/cmd/load.rb
 39% [354/889]  lib/irb/cmd/nop.rb
 39% [355/889]  lib/irb/cmd/pushws.rb
 40% [356/889]  lib/irb/cmd/subirb.rb
 40% [357/889]  lib/irb/completion.rb
 40% [358/889]  lib/irb/context.rb
 40% [359/889]  lib/irb/ext/change-ws.rb
 40% [360/889]  lib/irb/ext/history.rb
 40% [361/889]  lib/irb/ext/loader.rb
 40% [362/889]  lib/irb/ext/math-mode.rb
 40% [363/889]  lib/irb/ext/multi-irb.rb
 40% [364/889]  lib/irb/ext/save-history.rb
 41% [365/889]  lib/irb/ext/tracer.rb
 41% [366/889]  lib/irb/ext/use-loader.rb
 41% [367/889]  lib/irb/ext/workspaces.rb
 41% [368/889]  lib/irb/extend-command.rb
 41% [369/889]  lib/irb/frame.rb
 41% [370/889]  lib/irb/help.rb
 41% [371/889]  lib/irb/init.rb
 41% [372/889]  lib/irb/input-method.rb
 41% [373/889]  lib/irb/inspector.rb
 42% [374/889]  lib/irb/lc/error.rb
 42% [375/889]  lib/irb/lc/ja/encoding_aliases.rb
 42% [376/889]  lib/irb/lc/ja/error.rb
 42% [377/889]  lib/irb/locale.rb
 42% [378/889]  lib/irb/magic-file.rb
 42% [379/889]  lib/irb/notifier.rb
 42% [380/889]  lib/irb/output-method.rb
 42% [381/889]  lib/irb/ruby-lex.rb
 42% [382/889]  lib/irb/ruby-token.rb
 43% [383/889]  lib/irb/slex.rb
 43% [384/889]  lib/irb/src_encoding.rb
 43% [385/889]  lib/irb/version.rb
 43% [386/889]  lib/irb/workspace.rb
 43% [387/889]  lib/irb/ws-for-case-2.rb
 43% [388/889]  lib/irb/xmp.rb
 43% [389/889]  lib/logger.rb
 43% [390/889]  lib/mathn.rb
 43% [391/889]  lib/matrix.rb
 44% [392/889]  lib/matrix/eigenvalue_decomposition.rb
 44% [393/889]  lib/matrix/lup_decomposition.rb
 44% [394/889]  lib/mkmf.rb
 44% [395/889]  lib/monitor.rb
 44% [396/889]  lib/mutex_m.rb
 44% [397/889]  lib/net/ftp.rb
 44% [398/889]  lib/net/http.rb
 44% [399/889]  lib/net/http/backward.rb
 44% [400/889]  lib/net/http/exceptions.rb
 45% [401/889]  lib/net/http/generic_request.rb
 45% [402/889]  lib/net/http/header.rb
 45% [403/889]  lib/net/http/proxy_delta.rb
 45% [404/889]  lib/net/http/request.rb
 45% [405/889]  lib/net/http/requests.rb
 45% [406/889]  lib/net/http/response.rb
 45% [407/889]  lib/net/http/responses.rb
 45% [408/889]  lib/net/https.rb
 46% [409/889]  lib/net/imap.rb
 46% [410/889]  lib/net/pop.rb
 46% [411/889]  lib/net/protocol.rb
 46% [412/889]  lib/net/smtp.rb
 46% [413/889]  lib/observer.rb
 46% [414/889]  lib/open-uri.rb
 46% [415/889]  lib/open3.rb
 46% [416/889]  lib/optionparser.rb
 46% [417/889]  lib/optparse.rb
 47% [418/889]  lib/optparse/ac.rb
 47% [419/889]  lib/optparse/date.rb
 47% [420/889]  lib/optparse/kwargs.rb
 47% [421/889]  lib/optparse/shellwords.rb
 47% [422/889]  lib/optparse/time.rb
 47% [423/889]  lib/optparse/uri.rb
 47% [424/889]  lib/optparse/version.rb
 47% [425/889]  lib/ostruct.rb
 47% [426/889]  lib/pp.rb
 48% [427/889]  lib/prettyprint.rb
 48% [428/889]  lib/prime.rb
 48% [429/889]  lib/profile.rb
 48% [430/889]  lib/profiler.rb
 48% [431/889]  lib/pstore.rb
 48% [432/889]  lib/racc/parser.rb
 48% [433/889]  lib/racc/rdoc/grammar.en.rdoc
 48% [434/889]  lib/rdoc.rb
 48% [435/889]  lib/rdoc/alias.rb
 49% [436/889]  lib/rdoc/anon_class.rb
 49% [437/889]  lib/rdoc/any_method.rb
 49% [438/889]  lib/rdoc/attr.rb
 49% [439/889]  lib/rdoc/class_module.rb
 49% [440/889]  lib/rdoc/code_object.rb
 49% [441/889]  lib/rdoc/code_objects.rb
 49% [442/889]  lib/rdoc/comment.rb
 49% [443/889]  lib/rdoc/constant.rb
 49% [444/889]  lib/rdoc/context.rb
 50% [445/889]  lib/rdoc/cross_reference.rb
 50% [446/889]  lib/rdoc/encoding.rb
 50% [447/889]  lib/rdoc/erb_partial.rb
 50% [448/889]  lib/rdoc/erbio.rb
 50% [449/889]  lib/rdoc/extend.rb
 50% [450/889]  lib/rdoc/generator.rb
 50% [451/889]  lib/rdoc/ghost_method.rb
 50% [452/889]  lib/rdoc/i18n.rb
 50% [453/889]  lib/rdoc/include.rb
 51% [454/889]  lib/rdoc/known_classes.rb
 51% [455/889]  lib/rdoc/markdown.rb
 51% [456/889]  lib/rdoc/markup.rb
 51% [457/889]  lib/rdoc/meta_method.rb
 51% [458/889]  lib/rdoc/method_attr.rb
 51% [459/889]  lib/rdoc/mixin.rb
 51% [460/889]  lib/rdoc/normal_class.rb
 51% [461/889]  lib/rdoc/normal_module.rb
 51% [462/889]  lib/rdoc/options.rb
 52% [463/889]  lib/rdoc/parser.rb
 52% [464/889]  lib/rdoc/rd.rb
 52% [465/889]  lib/rdoc/rdoc.rb
 52% [466/889]  lib/rdoc/require.rb
 52% [467/889]  lib/rdoc/ri.rb
 52% [468/889]  lib/rdoc/ruby_lex.rb
 52% [469/889]  lib/rdoc/ruby_token.rb
 52% [470/889]  lib/rdoc/rubygems_hook.rb
 52% [471/889]  lib/rdoc/servlet.rb
 53% [472/889]  lib/rdoc/single_class.rb
 53% [473/889]  lib/rdoc/stats.rb
 53% [474/889]  lib/rdoc/store.rb
 53% [475/889]  lib/rdoc/task.rb
 53% [476/889]  lib/rdoc/test_case.rb
 53% [477/889]  lib/rdoc/text.rb
 53% [478/889]  lib/rdoc/token_stream.rb
 53% [479/889]  lib/rdoc/tom_doc.rb
 53% [480/889]  lib/rdoc/top_level.rb
 54% [481/889]  lib/resolv-replace.rb
 54% [482/889]  lib/resolv.rb
 54% [483/889]  lib/rexml/attlistdecl.rb
 54% [484/889]  lib/rexml/attribute.rb
 54% [485/889]  lib/rexml/cdata.rb
 54% [486/889]  lib/rexml/child.rb
 54% [487/889]  lib/rexml/comment.rb
 54% [488/889]  lib/rexml/doctype.rb
 55% [489/889]  lib/rexml/document.rb
 55% [490/889]  lib/rexml/dtd/attlistdecl.rb
 55% [491/889]  lib/rexml/dtd/dtd.rb
 55% [492/889]  lib/rexml/dtd/elementdecl.rb
 55% [493/889]  lib/rexml/dtd/entitydecl.rb
 55% [494/889]  lib/rexml/dtd/notationdecl.rb
 55% [495/889]  lib/rexml/element.rb
 55% [496/889]  lib/rexml/encoding.rb
 55% [497/889]  lib/rexml/entity.rb
 56% [498/889]  lib/rexml/formatters/default.rb
 56% [499/889]  lib/rexml/formatters/pretty.rb
 56% [500/889]  lib/rexml/formatters/transitive.rb
 56% [501/889]  lib/rexml/functions.rb
 56% [502/889]  lib/rexml/instruction.rb
 56% [503/889]  lib/rexml/light/node.rb
 56% [504/889]  lib/rexml/namespace.rb
 56% [505/889]  lib/rexml/node.rb
 56% [506/889]  lib/rexml/output.rb
 57% [507/889]  lib/rexml/parent.rb
 57% [508/889]  lib/rexml/parseexception.rb
 57% [509/889]  lib/rexml/parsers/baseparser.rb
 57% [510/889]  lib/rexml/parsers/lightparser.rb
 57% [511/889]  lib/rexml/parsers/pullparser.rb
 57% [512/889]  lib/rexml/parsers/sax2parser.rb
 57% [513/889]  lib/rexml/parsers/streamparser.rb
 57% [514/889]  lib/rexml/parsers/treeparser.rb
 57% [515/889]  lib/rexml/parsers/ultralightparser.rb
 58% [516/889]  lib/rexml/parsers/xpathparser.rb
 58% [517/889]  lib/rexml/quickpath.rb
 58% [518/889]  lib/rexml/rexml.rb
 58% [519/889]  lib/rexml/sax2listener.rb
 58% [520/889]  lib/rexml/security.rb
 58% [521/889]  lib/rexml/source.rb
 58% [522/889]  lib/rexml/streamlistener.rb
 58% [523/889]  lib/rexml/syncenumerator.rb
 58% [524/889]  lib/rexml/text.rb
 59% [525/889]  lib/rexml/undefinednamespaceexception.rb
 59% [526/889]  lib/rexml/validation/relaxng.rb
 59% [527/889]  lib/rexml/validation/validation.rb
 59% [528/889]  lib/rexml/validation/validationexception.rb
 59% [529/889]  lib/rexml/xmldecl.rb
 59% [530/889]  lib/rexml/xmltokens.rb
 59% [531/889]  lib/rexml/xpath.rb
 59% [532/889]  lib/rexml/xpath_parser.rb
 59% [533/889]  lib/rinda/rinda.rb
 60% [534/889]  lib/rinda/ring.rb
 60% [535/889]  lib/rinda/tuplespace.rb
 60% [536/889]  lib/rss.rb
 60% [537/889]  lib/rss/0.9.rb
 60% [538/889]  lib/rss/1.0.rb
 60% [539/889]  lib/rss/2.0.rb
 60% [540/889]  lib/rss/atom.rb
 60% [541/889]  lib/rss/content.rb
 60% [542/889]  lib/rss/content/1.0.rb
 61% [543/889]  lib/rss/content/2.0.rb
 61% [544/889]  lib/rss/converter.rb
 61% [545/889]  lib/rss/dublincore.rb
 61% [546/889]  lib/rss/dublincore/1.0.rb
 61% [547/889]  lib/rss/dublincore/2.0.rb
 61% [548/889]  lib/rss/dublincore/atom.rb
 61% [549/889]  lib/rss/image.rb
 61% [550/889]  lib/rss/itunes.rb
 61% [551/889]  lib/rss/maker.rb
 62% [552/889]  lib/rss/maker/0.9.rb
 62% [553/889]  lib/rss/maker/1.0.rb
 62% [554/889]  lib/rss/maker/2.0.rb
 62% [555/889]  lib/rss/maker/atom.rb
 62% [556/889]  lib/rss/maker/base.rb
 62% [557/889]  lib/rss/maker/content.rb
 62% [558/889]  lib/rss/maker/dublincore.rb
 62% [559/889]  lib/rss/maker/entry.rb
 62% [560/889]  lib/rss/maker/feed.rb
 63% [561/889]  lib/rss/maker/image.rb
 63% [562/889]  lib/rss/maker/itunes.rb
 63% [563/889]  lib/rss/maker/slash.rb
 63% [564/889]  lib/rss/maker/syndication.rb
 63% [565/889]  lib/rss/maker/taxonomy.rb
 63% [566/889]  lib/rss/maker/trackback.rb
 63% [567/889]  lib/rss/parser.rb
 63% [568/889]  lib/rss/rexmlparser.rb
 64% [569/889]  lib/rss/rss.rb
 64% [570/889]  lib/rss/slash.rb
 64% [571/889]  lib/rss/syndication.rb
 64% [572/889]  lib/rss/taxonomy.rb
 64% [573/889]  lib/rss/trackback.rb
 64% [574/889]  lib/rss/utils.rb
 64% [575/889]  lib/rss/xml-stylesheet.rb
 64% [576/889]  lib/rss/xml.rb
 64% [577/889]  lib/rss/xmlparser.rb
 65% [578/889]  lib/rss/xmlscanner.rb
 65% [579/889]  lib/rubygems.rb
 65% [580/889]  lib/rubygems/LICENSE.txt
 65% [581/889]  lib/rubygems/available_set.rb
 65% [582/889]  lib/rubygems/basic_specification.rb
 65% [583/889]  lib/rubygems/command.rb
 65% [584/889]  lib/rubygems/command_manager.rb
 65% [585/889]  lib/rubygems/commands/build_command.rb
 65% [586/889]  lib/rubygems/commands/cert_command.rb
 66% [587/889]  lib/rubygems/commands/check_command.rb
 66% [588/889]  lib/rubygems/commands/cleanup_command.rb
 66% [589/889]  lib/rubygems/commands/contents_command.rb
 66% [590/889]  lib/rubygems/commands/dependency_command.rb
 66% [591/889]  lib/rubygems/commands/environment_command.rb
 66% [592/889]  lib/rubygems/commands/fetch_command.rb
 66% [593/889]  lib/rubygems/commands/generate_index_command.rb
 66% [594/889]  lib/rubygems/commands/help_command.rb
 66% [595/889]  lib/rubygems/commands/install_command.rb
 67% [596/889]  lib/rubygems/commands/list_command.rb
 67% [597/889]  lib/rubygems/commands/lock_command.rb
 67% [598/889]  lib/rubygems/commands/mirror_command.rb
 67% [599/889]  lib/rubygems/commands/open_command.rb
 67% [600/889]  lib/rubygems/commands/outdated_command.rb
 67% [601/889]  lib/rubygems/commands/owner_command.rb
 67% [602/889]  lib/rubygems/commands/pristine_command.rb
 67% [603/889]  lib/rubygems/commands/push_command.rb
 67% [604/889]  lib/rubygems/commands/query_command.rb
 68% [605/889]  lib/rubygems/commands/rdoc_command.rb
 68% [606/889]  lib/rubygems/commands/search_command.rb
 68% [607/889]  lib/rubygems/commands/server_command.rb
 68% [608/889]  lib/rubygems/commands/setup_command.rb
 68% [609/889]  lib/rubygems/commands/sources_command.rb
 68% [610/889]  lib/rubygems/commands/specification_command.rb
 68% [611/889]  lib/rubygems/commands/stale_command.rb
 68% [612/889]  lib/rubygems/commands/uninstall_command.rb
 68% [613/889]  lib/rubygems/commands/unpack_command.rb
 69% [614/889]  lib/rubygems/commands/update_command.rb
 69% [615/889]  lib/rubygems/commands/which_command.rb
 69% [616/889]  lib/rubygems/commands/yank_command.rb
 69% [617/889]  lib/rubygems/compatibility.rb
 69% [618/889]  lib/rubygems/config_file.rb
 69% [619/889]  lib/rubygems/core_ext/kernel_gem.rb
 69% [620/889]  lib/rubygems/core_ext/kernel_require.rb
 69% [621/889]  lib/rubygems/defaults.rb
 69% [622/889]  lib/rubygems/dependency.rb
 70% [623/889]  lib/rubygems/dependency_installer.rb
 70% [624/889]  lib/rubygems/dependency_list.rb
 70% [625/889]  lib/rubygems/deprecate.rb
 70% [626/889]  lib/rubygems/doctor.rb
 70% [627/889]  lib/rubygems/errors.rb
 70% [628/889]  lib/rubygems/exceptions.rb
 70% [629/889]  lib/rubygems/ext.rb
 70% [630/889]  lib/rubygems/ext/build_error.rb
 70% [631/889]  lib/rubygems/ext/builder.rb
 71% [632/889]  lib/rubygems/ext/cmake_builder.rb
 71% [633/889]  lib/rubygems/ext/configure_builder.rb
 71% [634/889]  lib/rubygems/ext/ext_conf_builder.rb
 71% [635/889]  lib/rubygems/ext/rake_builder.rb
 71% [636/889]  lib/rubygems/gem_runner.rb
 71% [637/889]  lib/rubygems/gemcutter_utilities.rb
 71% [638/889]  lib/rubygems/indexer.rb
 71% [639/889]  lib/rubygems/install_default_message.rb
 71% [640/889]  lib/rubygems/install_message.rb
 72% [641/889]  lib/rubygems/install_update_options.rb
 72% [642/889]  lib/rubygems/installer.rb
 72% [643/889]  lib/rubygems/installer_test_case.rb
 72% [644/889]  lib/rubygems/local_remote_options.rb
 72% [645/889]  lib/rubygems/mock_gem_ui.rb
 72% [646/889]  lib/rubygems/name_tuple.rb
 72% [647/889]  lib/rubygems/package.rb
 72% [648/889]  lib/rubygems/package/digest_io.rb
 73% [649/889]  lib/rubygems/package/file_source.rb
 73% [650/889]  lib/rubygems/package/io_source.rb
 73% [651/889]  lib/rubygems/package/old.rb
 73% [652/889]  lib/rubygems/package/source.rb
 73% [653/889]  lib/rubygems/package/tar_header.rb
 73% [654/889]  lib/rubygems/package/tar_reader.rb
 73% [655/889]  lib/rubygems/package/tar_reader/entry.rb
 73% [656/889]  lib/rubygems/package/tar_test_case.rb
 73% [657/889]  lib/rubygems/package/tar_writer.rb
 74% [658/889]  lib/rubygems/package_task.rb
 74% [659/889]  lib/rubygems/path_support.rb
 74% [660/889]  lib/rubygems/platform.rb
 74% [661/889]  lib/rubygems/psych_additions.rb
 74% [662/889]  lib/rubygems/psych_tree.rb
 74% [663/889]  lib/rubygems/rdoc.rb
 74% [664/889]  lib/rubygems/remote_fetcher.rb
 74% [665/889]  lib/rubygems/request.rb
 74% [666/889]  lib/rubygems/request/connection_pools.rb
 75% [667/889]  lib/rubygems/request/http_pool.rb
 75% [668/889]  lib/rubygems/request/https_pool.rb
 75% [669/889]  lib/rubygems/request_set.rb
 75% [670/889]  lib/rubygems/request_set/gem_dependency_api.rb
 75% [671/889]  lib/rubygems/request_set/lockfile.rb
 75% [672/889]  lib/rubygems/request_set/lockfile/parser.rb
 75% [673/889]  lib/rubygems/request_set/lockfile/tokenizer.rb
 75% [674/889]  lib/rubygems/requirement.rb
 75% [675/889]  lib/rubygems/resolver.rb
 76% [676/889]  lib/rubygems/resolver/activation_request.rb
 76% [677/889]  lib/rubygems/resolver/api_set.rb
 76% [678/889]  lib/rubygems/resolver/api_specification.rb
 76% [679/889]  lib/rubygems/resolver/best_set.rb
 76% [680/889]  lib/rubygems/resolver/composed_set.rb
 76% [681/889]  lib/rubygems/resolver/conflict.rb
 76% [682/889]  lib/rubygems/resolver/current_set.rb
 76% [683/889]  lib/rubygems/resolver/dependency_request.rb
 76% [684/889]  lib/rubygems/resolver/git_set.rb
 77% [685/889]  lib/rubygems/resolver/git_specification.rb
 77% [686/889]  lib/rubygems/resolver/index_set.rb
 77% [687/889]  lib/rubygems/resolver/index_specification.rb
 77% [688/889]  lib/rubygems/resolver/installed_specification.rb
 77% [689/889]  lib/rubygems/resolver/installer_set.rb
 77% [690/889]  lib/rubygems/resolver/local_specification.rb
 77% [691/889]  lib/rubygems/resolver/lock_set.rb
 77% [692/889]  lib/rubygems/resolver/lock_specification.rb
 77% [693/889]  lib/rubygems/resolver/molinillo.rb
 78% [694/889]  lib/rubygems/resolver/molinillo/lib/molinillo.rb
 78% [695/889]  lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb
 78% [696/889]  lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb
 78% [697/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb
 78% [698/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb
 78% [699/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb
 78% [700/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb
 78% [701/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb
 78% [702/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb
 79% [703/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb
 79% [704/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb
 79% [705/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb
 79% [706/889]  lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb
 79% [707/889]  lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb
 79% [708/889]  lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb
 79% [709/889]  lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb
 79% [710/889]  lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb
 79% [711/889]  lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb
 80% [712/889]  lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb
 80% [713/889]  lib/rubygems/resolver/molinillo/lib/molinillo/state.rb
 80% [714/889]  lib/rubygems/resolver/requirement_list.rb
 80% [715/889]  lib/rubygems/resolver/set.rb
 80% [716/889]  lib/rubygems/resolver/source_set.rb
 80% [717/889]  lib/rubygems/resolver/spec_specification.rb
 80% [718/889]  lib/rubygems/resolver/specification.rb
 80% [719/889]  lib/rubygems/resolver/stats.rb
 80% [720/889]  lib/rubygems/resolver/vendor_set.rb
 81% [721/889]  lib/rubygems/resolver/vendor_specification.rb
 81% [722/889]  lib/rubygems/security.rb
 81% [723/889]  lib/rubygems/security/policies.rb
 81% [724/889]  lib/rubygems/security/policy.rb
 81% [725/889]  lib/rubygems/security/signer.rb
 81% [726/889]  lib/rubygems/security/trust_dir.rb
 81% [727/889]  lib/rubygems/server.rb
 81% [728/889]  lib/rubygems/source.rb
 82% [729/889]  lib/rubygems/source/git.rb
 82% [730/889]  lib/rubygems/source/installed.rb
 82% [731/889]  lib/rubygems/source/local.rb
 82% [732/889]  lib/rubygems/source/lock.rb
 82% [733/889]  lib/rubygems/source/specific_file.rb
 82% [734/889]  lib/rubygems/source/vendor.rb
 82% [735/889]  lib/rubygems/source_list.rb
 82% [736/889]  lib/rubygems/source_local.rb
 82% [737/889]  lib/rubygems/source_specific_file.rb
 83% [738/889]  lib/rubygems/spec_fetcher.rb
 83% [739/889]  lib/rubygems/specification.rb
 83% [740/889]  lib/rubygems/stub_specification.rb
 83% [741/889]  lib/rubygems/syck_hack.rb
 83% [742/889]  lib/rubygems/test_case.rb
 83% [743/889]  lib/rubygems/test_utilities.rb
 83% [744/889]  lib/rubygems/text.rb
 83% [745/889]  lib/rubygems/uninstaller.rb
 83% [746/889]  lib/rubygems/uri_formatter.rb
 84% [747/889]  lib/rubygems/user_interaction.rb
 84% [748/889]  lib/rubygems/util.rb
 84% [749/889]  lib/rubygems/util/licenses.rb
 84% [750/889]  lib/rubygems/util/list.rb
 84% [751/889]  lib/rubygems/validator.rb
 84% [752/889]  lib/rubygems/version.rb
 84% [753/889]  lib/rubygems/version_option.rb
 84% [754/889]  lib/scanf.rb
 84% [755/889]  lib/securerandom.rb
 85% [756/889]  lib/set.rb
 85% [757/889]  lib/shell.rb
 85% [758/889]  lib/shell/builtin-command.rb
 85% [759/889]  lib/shell/command-processor.rb
 85% [760/889]  lib/shell/error.rb
 85% [761/889]  lib/shell/filter.rb
 85% [762/889]  lib/shell/process-controller.rb
 85% [763/889]  lib/shell/system-command.rb
 85% [764/889]  lib/shell/version.rb
 86% [765/889]  lib/shellwords.rb
 86% [766/889]  lib/singleton.rb
 86% [767/889]  lib/sync.rb
 86% [768/889]  lib/tempfile.rb
 86% [769/889]  lib/thwait.rb
 86% [770/889]  lib/time.rb
 86% [771/889]  lib/timeout.rb
 86% [772/889]  lib/tmpdir.rb
 86% [773/889]  lib/tracer.rb
 87% [774/889]  lib/tsort.rb
 87% [775/889]  lib/ubygems.rb
 87% [776/889]  lib/un.rb
 87% [777/889]  lib/unicode_normalize.rb
 87% [778/889]  lib/unicode_normalize/normalize.rb
 87% [779/889]  lib/unicode_normalize/tables.rb
 87% [780/889]  lib/uri.rb
 87% [781/889]  lib/uri/common.rb
 87% [782/889]  lib/uri/ftp.rb
 88% [783/889]  lib/uri/generic.rb
 88% [784/889]  lib/uri/http.rb
 88% [785/889]  lib/uri/https.rb
 88% [786/889]  lib/uri/ldap.rb
 88% [787/889]  lib/uri/ldaps.rb
 88% [788/889]  lib/uri/mailto.rb
 88% [789/889]  lib/uri/rfc2396_parser.rb
 88% [790/889]  lib/uri/rfc3986_parser.rb
 88% [791/889]  lib/weakref.rb
 89% [792/889]  lib/webrick.rb
 89% [793/889]  lib/webrick/accesslog.rb
 89% [794/889]  lib/webrick/cgi.rb
 89% [795/889]  lib/webrick/compat.rb
 89% [796/889]  lib/webrick/config.rb
 89% [797/889]  lib/webrick/cookie.rb
 89% [798/889]  lib/webrick/htmlutils.rb
 89% [799/889]  lib/webrick/httpauth.rb
 89% [800/889]  lib/webrick/httpauth/authenticator.rb
 90% [801/889]  lib/webrick/httpauth/basicauth.rb
 90% [802/889]  lib/webrick/httpauth/digestauth.rb
 90% [803/889]  lib/webrick/httpauth/htdigest.rb
 90% [804/889]  lib/webrick/httpauth/htgroup.rb
 90% [805/889]  lib/webrick/httpauth/htpasswd.rb
 90% [806/889]  lib/webrick/httpauth/userdb.rb
 90% [807/889]  lib/webrick/httpproxy.rb
 90% [808/889]  lib/webrick/httprequest.rb
 91% [809/889]  lib/webrick/httpresponse.rb
 91% [810/889]  lib/webrick/https.rb
 91% [811/889]  lib/webrick/httpserver.rb
 91% [812/889]  lib/webrick/httpservlet.rb
 91% [813/889]  lib/webrick/httpservlet/abstract.rb
 91% [814/889]  lib/webrick/httpservlet/cgi_runner.rb
 91% [815/889]  lib/webrick/httpservlet/cgihandler.rb
 91% [816/889]  lib/webrick/httpservlet/erbhandler.rb
 91% [817/889]  lib/webrick/httpservlet/filehandler.rb
 92% [818/889]  lib/webrick/httpservlet/prochandler.rb
 92% [819/889]  lib/webrick/httpstatus.rb
 92% [820/889]  lib/webrick/httputils.rb
 92% [821/889]  lib/webrick/httpversion.rb
 92% [822/889]  lib/webrick/log.rb
 92% [823/889]  lib/webrick/server.rb
 92% [824/889]  lib/webrick/ssl.rb
 92% [825/889]  lib/webrick/utils.rb
 92% [826/889]  lib/webrick/version.rb
 93% [827/889]  lib/yaml.rb
 93% [828/889]  lib/yaml/dbm.rb
 93% [829/889]  lib/yaml/store.rb
 93% [830/889]  load.c
 93% [831/889]  loadpath.c
 93% [832/889]  localeinit.c
 93% [833/889]  main.c
 93% [834/889]  marshal.c
 93% [835/889]  math.c
 94% [836/889]  miniinit.c
 94% [837/889]  miniprelude.c
 94% [838/889]  node.c
 94% [839/889]  numeric.c
 94% [840/889]  object.c
 94% [841/889]  pack.c
 94% [842/889]  parse.c
 94% [843/889]  prelude.c
 94% [844/889]  prelude.rb
 95% [845/889]  proc.c
 95% [846/889]  process.c
 95% [847/889]  random.c
 95% [848/889]  range.c
 95% [849/889]  rational.c
 95% [850/889]  rbconfig.rb
 95% [851/889]  re.c
 95% [852/889]  regcomp.c
 95% [853/889]  regenc.c
 96% [854/889]  regerror.c
 96% [855/889]  regexec.c
 96% [856/889]  regparse.c
 96% [857/889]  regsyntax.c
 96% [858/889]  ruby-runner.c
 96% [859/889]  ruby.c
 96% [860/889]  rubystub.c
 96% [861/889]  safe.c
 96% [862/889]  signal.c
 97% [863/889]  siphash.c
 97% [864/889]  sparc.c
 97% [865/889]  sprintf.c
 97% [866/889]  st.c
 97% [867/889]  strftime.c
 97% [868/889]  string.c
 97% [869/889]  struct.c
 97% [870/889]  symbol.c
 97% [871/889]  thread.c
 98% [872/889]  thread_pthread.c
 98% [873/889]  thread_sync.c
 98% [874/889]  thread_win32.c
 98% [875/889]  time.c
 98% [876/889]  transcode.c
 98% [877/889]  util.c
 98% [878/889]  variable.c
 98% [879/889]  version.c
 98% [880/889]  vm.c
 99% [881/889]  vm_args.c
 99% [882/889]  vm_backtrace.c
 99% [883/889]  vm_dump.c
 99% [884/889]  vm_eval.c
 99% [885/889]  vm_exec.c
 99% [886/889]  vm_insnhelper.c
 99% [887/889]  vm_method.c
 99% [888/889]  vm_trace.c
100% [889/889]  vsnprintf.c

Generating RI format into /tmp/ruby-build.20170826224512.17762/ruby-2.4.1/.ext/rdoc...


  Files:        889

  Classes:     1311 ( 548 undocumented)
  Modules:      274 ( 110 undocumented)
  Constants:   2140 ( 558 undocumented)
  Attributes:  1053 ( 247 undocumented)
  Methods:     9862 (2101 undocumented)

  Total:      14640 (3564 undocumented)
   75.66% documented

  Elapsed: 76.0s

	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wno-tautological-compare -Wno-parentheses-equality -Wno-constant-logical-operand -Wno-self-assign -Wunused-variable -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration -Wdeprecated-declarations -Wno-packed-bitfield-compat -Wsuggest-attribute=noreturn -Wsuggest-attribute=format -std=gnu99 
	XCFLAGS = -D_FORTIFY_SOURCE=2 -fstack-protector -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE
	CPPFLAGS = -I/usr/local/rbenv/versions/2.4.1/include    -I. -I.ext/include/x86_64-linux -I./include -I. -I./enc/unicode/9.0.0
	DLDFLAGS = -L/usr/local/rbenv/versions/2.4.1/lib  -fstack-protector -pie  
	SOLIBS = 
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-11)
Copyright (C) 2015 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.

generating enc.mk
making srcs under enc
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
make[1]: `srcs' に対して行うべき事はありません.
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
generating transdb.h
transdb.h unchanged
generating makefile exts.mk
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/array/resize' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/array/resize' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bignum' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bignum' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug-3571' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug-3571' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug-5832' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug-5832' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug_reporter' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/bug_reporter' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/class' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/class' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/debug' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/debug' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/dln/empty' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/dln/empty' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/exception' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/exception' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/fatal' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/fatal' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/file' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/file' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/float' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/float' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/funcall' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/funcall' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/gvl/call_without_gvl' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/gvl/call_without_gvl' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/hash' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/hash' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/integer' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/integer' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/iseq_load' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/iseq_load' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/iter' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/iter' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/load/dot.dot' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/load/dot.dot' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/compat' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/compat' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/internal_ivar' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/internal_ivar' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/usr' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/marshal/usr' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/memory_status' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/memory_status' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/method' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/method' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/notimplement' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/notimplement' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/num2int' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/num2int' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/path_to_class' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/path_to_class' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/popen_deadlock' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/popen_deadlock' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/postponed_job' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/postponed_job' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/printf' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/printf' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/proc' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/proc' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/rational' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/rational' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/recursion' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/recursion' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/regexp' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/regexp' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/foreach' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/foreach' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/numhash' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/numhash' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/update' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/st/update' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/string' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/string' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/struct' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/struct' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/symbol' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/symbol' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/time' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/time' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/tracepoint' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/tracepoint' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/typeddata' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/typeddata' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/vm' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/vm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/wait_for_single_fd' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/-test-/wait_for_single_fd' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/bigdecimal' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/bigdecimal' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/cgi/escape' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/cgi/escape' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/continuation' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/continuation' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/coverage' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/coverage' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/date' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/date' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/dbm' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/dbm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/bubblebabble' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/bubblebabble' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/md5' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/md5' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/rmd160' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/rmd160' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/sha1' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/sha1' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/sha2' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/digest/sha2' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/etc' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/etc' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fcntl' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fcntl' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiber' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiber' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/fiddle' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/gdbm' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/gdbm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/console' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/console' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/nonblock' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/nonblock' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/wait' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/io/wait' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json/generator' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json/generator' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json/parser' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/json/parser' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/mathn/complex' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/mathn/complex' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/mathn/rational' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/mathn/rational' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/nkf' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/nkf' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/objspace' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/objspace' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/openssl' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/openssl' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/pathname' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/pathname' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/psych' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/psych' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/pty' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/pty' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/racc/cparse' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/racc/cparse' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/rbconfig/sizeof' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/rbconfig/sizeof' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/readline' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/readline' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/ripper' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/ripper' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/rubyvm' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/rubyvm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/sdbm' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/sdbm' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/socket' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/socket' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/stringio' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/stringio' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/strscan' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/strscan' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/syslog' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/syslog' から出ます
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/zlib' に入ります
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1/ext/zlib' から出ます
*** Following extensions failed to configure:
../.././ext/dbm/extconf.rb:0: Failed to configure dbm. It will not be installed.
../.././ext/gdbm/extconf.rb:0: Failed to configure gdbm. It will not be installed.
*** Fix the problems, then remove these directories and try again if you want.
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
make[2]: `ruby' は更新済みです
make[2]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
making enc
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
make[1]: `enc' に対して行うべき事はありません.
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
making trans
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
make[1]: `./enc/trans' に対して行うべき事はありません.
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
making encs
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' に入ります
make[1]: `encs' に対して行うべき事はありません.
make[1]: ディレクトリ `/tmp/ruby-build.20170826224512.17762/ruby-2.4.1' から出ます
Generating RDoc documentation

No newer files.

  Files:      0

  Classes:    0 (0 undocumented)
  Modules:    0 (0 undocumented)
  Constants:  0 (0 undocumented)
  Attributes: 0 (0 undocumented)
  Methods:    0 (0 undocumented)

  Total:      0 (0 undocumented)
    0.00% documented

  Elapsed: 0.0s

generating x86_64-linux-fake.rb
In file included from /usr/include/stdio.h:27:0,
                 from ./include/ruby/defines.h:101,
                 from ./include/ruby/ruby.h:36,
                 from ./version.c:12:
/usr/include/features.h:330:4: 警告: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
 #  warning _FORTIFY_SOURCE requires compiling with optimization (-O)
    ^
cc1: 警告: 認識できないコマンドラインオプション "-Wno-self-assign" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-constant-logical-operand" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-parentheses-equality" です [デフォルトで有効]
cc1: 警告: 認識できないコマンドラインオプション "-Wno-tautological-compare" です [デフォルトで有効]
x86_64-linux-fake.rb updated
./miniruby -I./lib -I. -I.ext/common  ./tool/runruby.rb --extout=.ext  -- --disable-gems -r./x86_64-linux-fake ./tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --mflags="" --make-flags="" --data-mode=0644 --prog-mode=0755 --installed-list .installed.list --mantype="doc" --install=all --rdoc-output=".ext/rdoc"
installing binary commands:   /usr/local/rbenv/versions/2.4.1/bin
installing base libraries:    /usr/local/rbenv/versions/2.4.1/lib
installing arch files:        /usr/local/rbenv/versions/2.4.1/lib/ruby/2.4.0/x86_64-linux
installing pkgconfig data:    /usr/local/rbenv/versions/2.4.1/lib/pkgconfig
installing command scripts:   /usr/local/rbenv/versions/2.4.1/bin
installing library scripts:   /usr/local/rbenv/versions/2.4.1/lib/ruby/2.4.0
installing common headers:    /usr/local/rbenv/versions/2.4.1/include/ruby-2.4.0
installing manpages:          /usr/local/rbenv/versions/2.4.1/share/man/man1
installing extension objects: /usr/local/rbenv/versions/2.4.1/lib/ruby/2.4.0/x86_64-linux
installing extension objects: /usr/local/rbenv/versions/2.4.1/lib/ruby/site_ruby/2.4.0/x86_64-linux
installing extension objects: /usr/local/rbenv/versions/2.4.1/lib/ruby/vendor_ruby/2.4.0/x86_64-linux
installing extension headers: /usr/local/rbenv/versions/2.4.1/include/ruby-2.4.0/x86_64-linux
installing extension scripts: /usr/local/rbenv/versions/2.4.1/lib/ruby/2.4.0
installing extension scripts: /usr/local/rbenv/versions/2.4.1/lib/ruby/site_ruby/2.4.0
installing extension scripts: /usr/local/rbenv/versions/2.4.1/lib/ruby/vendor_ruby/2.4.0
installing extension headers: /usr/local/rbenv/versions/2.4.1/include/ruby-2.4.0/ruby
installing default gems:      /usr/local/rbenv/versions/2.4.1/lib/ruby/gems/2.4.0 (build_info, cache, doc, extensions, gems, specifications)
                              bigdecimal 1.3.0
                              io-console 0.4.6
                              json 2.0.2
                              openssl 2.0.3
                              psych 2.2.2
                              rdoc 5.0.0
installing bundle gems:       /usr/local/rbenv/versions/2.4.1/lib/ruby/gems/2.4.0 (build_info, cache, doc, extensions, gems, specifications)
                              did_you_mean 1.1.0
                              minitest 5.10.1
                              net-telnet 0.1.1
                              power_assert 0.4.1
                              rake 12.0.0
                              test-unit 3.2.3
                              xmlrpc 0.2.1
installing rdoc:              /usr/local/rbenv/versions/2.4.1/share/ri/2.4.0/system
installing capi-docs:         /usr/local/rbenv/versions/2.4.1/share/doc/ruby
Installed ruby-2.4.1 to /usr/local/rbenv/versions/2.4.1

/tmp/ruby-build.20170826224512.17762 /usr/local/rbenv
/usr/local/rbenv
# 

システム全体で使用するバージョン(デフォルトのバージョン)を指定する

# rbenv global 2.4.1
# ruby -v
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]
# 

管理者以外もrbenvコマンドを使えるようにする

毎回 スーパーユーザーにならないといけないのが面倒なので、今後の利便のために、
「rbenv」グループを作成し、そこにrbenvに関する操作を許可したいユーザーを追加します。
今は、一般ユーザーだとこうなる。(↓)rubyコマンドは使えるが、rbenvは無理。

$ ruby -v
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]
$ rbenv global 2.4.1
/usr/local/rbenv/libexec/rbenv-version-file-write: 行 19: /usr/local/rbenv/version: 許可がありません
$

この権限状態では、次のようなコマンドも通りません。

$ gem update --system
Updating rubygems-update
Fetching: rubygems-update-2.6.12.gem (100%)
ERROR:  While executing gem ... (Gem::FilePermissionError)
    You don't have write permissions for the /usr/local/rbenv/versions/2.4.1/lib/ruby/gems/2.4.0 directory.
$ 
# groupadd rbenv
# usermod -aG rbenv グループに追加したいユーザー名
# chown -R root:rbenv /usr/local/rbenv
# chmod -R g+w /usr/local/rbenv
#

参考サイト

  • ベースになったサイト

qiita.com

  • Gitの入れ方について

vdeep.net

  • rbenvについて

Rubyのrvmやgemってなんだ?て調べたらrbenvが出てきたの巻 - むかぁ~ どっと こむ

  • rbenvのインストール先について

qiita.com

qiita.com

  • ruby-buildについて

takatoshiono.hatenablog.com

  • rubyのインストールについて

qawsedrftgyhujiko.hatenablog.com

  • 「rbenv rehash」の必要性について

dqn.sakusakutto.jp
qiita.com
blog.bgbgbg.net
github.com

  • 「rbenv global」について

qiita.com