2000-09-05 Andreas Jaeger <aj@suse.de>

* config.sub (maybe_os): Recognise AMD x86-64 as x86_64.
	* config.guess: Detect x86_64-unknown-linux-gnu.
This commit is contained in:
Ben Elliston 2000-09-05 01:09:01 +00:00
parent a57d81bc0e
commit 1fc05e9878
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-09-05 Andreas Jaeger <aj@suse.de>
* config.sub (maybe_os): Recognise AMD x86-64 as x86_64.
* config.guess: Detect x86_64-unknown-linux-gnu.
2000-09-05 Ben Elliston <bje@redhat.com> 2000-09-05 Ben Elliston <bje@redhat.com>
* config.guess: Handle Tandem NSR-K machines. * config.guess: Handle Tandem NSR-K machines.

2
config.guess vendored
View File

@ -858,6 +858,8 @@ EOF
rm -f $dummy.c $dummy rm -f $dummy.c $dummy
elif test "${UNAME_MACHINE}" = "s390"; then elif test "${UNAME_MACHINE}" = "s390"; then
echo s390-ibm-linux && exit 0 echo s390-ibm-linux && exit 0
elif test "${UNAME_MACHINE}" = "x86_64"; then
echo x86_64-unknown-linux-gnu && exit 0
else else
# Either a pre-BFD a.out linker (linux-gnuoldld) # Either a pre-BFD a.out linker (linux-gnuoldld)
# or one that does not give us useful --help. # or one that does not give us useful --help.

4
config.sub vendored
View File

@ -232,7 +232,7 @@ case $basic_machine in
# We use `pc' rather than `unknown' # We use `pc' rather than `unknown'
# because (1) that's what they normally are, and # because (1) that's what they normally are, and
# (2) the word "unknown" tends to confuse beginning users. # (2) the word "unknown" tends to confuse beginning users.
i[234567]86) i[234567]86 | x86_64)
basic_machine=$basic_machine-pc basic_machine=$basic_machine-pc
;; ;;
# Object if more than one company name word. # Object if more than one company name word.
@ -262,7 +262,7 @@ case $basic_machine in
| f301-* | armv*-* | s390-* | sv1-* | t3e-* \ | f301-* | armv*-* | s390-* | sv1-* | t3e-* \
| m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \ | m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \
| thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* \ | thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* \
| bs2000-* | tic54x-* | c54x-*) | bs2000-* | tic54x-* | c54x-* | x86_64-*)
;; ;;
# Recognize the various machine names and aliases which stand # Recognize the various machine names and aliases which stand
# for a CPU type and a company and sometimes even an OS. # for a CPU type and a company and sometimes even an OS.