mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* config.guess: have wrongly returned "alphaev56-unknown-linux-" on Linux/Alpha.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
988653ad27
commit
9fa20b9973
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Jun 24 14:31:17 2003 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* config.guess: have wrongly returned "alphaev56-unknown-linux-"
|
||||
on Linux/Alpha. [ruby-dev:20434]
|
||||
|
||||
Tue Jun 24 04:54:46 2003 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* configure.in: always add -mieee for gcc/alpha. [ruby-dev:20429]
|
||||
|
|
4
config.guess
vendored
4
config.guess
vendored
|
@ -866,8 +866,8 @@ EOF
|
|||
EV68*) UNAME_MACHINE=alphaev68 ;;
|
||||
esac
|
||||
objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
|
||||
if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
|
||||
echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
|
||||
if test "$?" = 0 ; then LIBC="-libc1" ; else LIBC="" ; fi
|
||||
echo ${UNAME_MACHINE}-unknown-linux${LIBC}
|
||||
exit 0 ;;
|
||||
parisc:Linux:*:* | hppa:Linux:*:*)
|
||||
# Look for CPU level
|
||||
|
|
Loading…
Add table
Reference in a new issue