From: merch-redmine@jeremyevans.net
To: ruby-dev@ruby-lang.org
Subject: [ruby-dev:51065] [Ruby master Bug#14409] インストール手順の改善
Date: Thu, 17 Jun 2021 17:40:12 +0000 (UTC) [thread overview]
Message-ID: <redmine.journal-92575.20210617174011.13652@ruby-lang.org> (raw)
In-Reply-To: <redmine.issue-14409.20180127062237.13652@ruby-lang.org>
Issue #14409 has been updated by jeremyevans0 (Jeremy Evans).
I believe this is asking for a section on build requirements to be added to the README, which seems useful for me. I added a pull request for this: https://github.com/ruby/ruby/pull/4582. I'm not sure if there are missing requirements, or the minimum versions of bison or automake that we support, so additional review would be helpful.
----------------------------------------
Bug #14409: インストール手順の改善
https://bugs.ruby-lang.org/issues/14409#change-92575
* Author: Reetok (Reetok Nino)
* Status: Assigned
* Priority: Normal
* Assignee: hsbt (Hiroshi SHIBATA)
* ruby -v: trunk(2.6.0)
* Backport: 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: UNKNOWN
----------------------------------------
以下の2つのインストール手順の部分を改善した方が良いと思いました。
1. `./configure`の生成に必要なautoconfのバージョンを指定するべき
- 2.68以降
2. config.hとMakefileの生成に必要なRubyのバージョンを指定するべき
- 少なくともto_pathが実装されているバージョン
## 環境
```
$ cat /etc/redhat-release
CentOS release 6.8 (Final)
$ uname -a
Linux kogeki 2.6.32-642.el6.x86_64 #1 SMP Tue May 10 17:27:01 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
```
# ./configureの生成に必要なautoconfのバージョン
[README.md](https://github.com/ruby/ruby/blob/trunk/README.md)のHow to compile and installの 2つ目の手順にて autoconf を実行したところ、以下のエラーが発生しました。
```
$ autoconf
configure.ac:7: error: Autoconf version 2.67 or higher is required
configure.ac:7: the top level
autom4te: /usr/bin/m4 failed with exit status: 63
```
2.67以上にのみ対応しているということだったので,[このサイト](http://ask.xmodulo.com/upgrade-autoconf-centos.html)を参考に,2.68を導入したところ,./configureが正常終了しました。
以上より,autoconfのバージョンを指定すべきだと考えます。
## config.hとMakefileの生成に必要なRubyのバージョン
[README.md](https://github.com/ruby/ruby/blob/trunk/README.md)の`How to compile and install`の3つめの手順にて,以下のエラーが発生しました。
```
$ ./configure
checking for ruby... false
configure: error: cannot run /bin/sh tool/config.sub
```
rubyが必要だったということで,`sudo yum install ruby`でrubyを入れ,再度実行したところNoMethodError'to_path'が発生しました。
to_pathが実装されているRuby(2.4.3)を使用したところ,成功しました。
以上より,config.hとMakefileの生成に必要なrubyのバージョンを指定すべきだと考えます。
--
https://bugs.ruby-lang.org/
parent reply other threads:[~2021-06-17 17:40 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <redmine.issue-14409.20180127062237.13652@ruby-lang.org>]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=redmine.journal-92575.20210617174011.13652@ruby-lang.org \
--to=merch-redmine@jeremyevans.net \
--cc=ruby-dev@ruby-lang.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).