Bug #452
config.guess returns "i386" on Mac OSX 10.5.4.
| Status: | Closed | Start date: | ||
|---|---|---|---|---|
| Priority: | Low | Due date: | ||
| Assignee: | % Done: | 0% |
||
| Category: | - | |||
| Target version: | 2.0.0 | |||
| ruby -v: | i386-apple-darwin9.4.0 |
Description
高尾宏治です。
trunk の r18741 で修正された config.guess が、
Mac OSX 10.5.4 の環境で「i386-apple-darwin9.4.0」を返します。
r18741 より前は「i686-apple-darwin9.4.0」を返していました。
$ sh config.guess
i386-apple-darwin9.4.0
$ sh config.guess.r18470
i686-apple-darwin9.4.0
r18470 までのものは、Intel Mac であれば i686 にしていたようです。
*:Darwin:*:*)
case `uname -p` in
*86) UNAME_PROCESSOR=i686 ;;
powerpc) UNAME_PROCESSOR=powerpc ;;
config.guess を修正すれば対応できますが、
影響範囲が分かっていません。
この挙動がバグがどうかは判断できていませんが、報告をしておきます。
History
Updated by ko1 (Koichi Sasada) over 3 years ago
- Assignee set to nobu (Nobuyoshi Nakada)
Updated by yugui (Yuki Sonoda) over 3 years ago
- Assignee changed from nobu (Nobuyoshi Nakada) to yugui (Yuki Sonoda)
確認します。
Updated by yugui (Yuki Sonoda) over 3 years ago
- Target version set to 2.0.0
Updated by daniel (Daniel Cavanagh) over 2 years ago
Hi This change has been in place for more than a year and I don't think anyone has complained about it, so I believe Kouji's fears were misplaced. Also, I don't see how using the processor name provided by the OS can be anything but correct Can this be closed?
Updated by naruse (Yui NARUSE) about 2 years ago
- Status changed from Open to Closed
- ruby -v set to i386-apple-darwin9.4.0