diff options
author | Michael Meissner <gnu@the-meissners.org> | 1996-06-20 16:20:05 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1996-06-20 16:20:05 +0000 |
commit | ff2ac34c1fbd47d2656f18f01b5b752f590b5e02 (patch) | |
tree | 51d03a11b793f7dd2e954f014ca779d2a5bba6ce /config.guess | |
parent | ca591d426e04512bdd14de32dddf577c029af6e4 (diff) | |
download | glibc-ff2ac34c1fbd47d2656f18f01b5b752f590b5e02.tar.gz glibc-ff2ac34c1fbd47d2656f18f01b5b752f590b5e02.tar.xz glibc-ff2ac34c1fbd47d2656f18f01b5b752f590b5e02.zip |
Add support for PowerPC Linux
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.guess b/config.guess index 925dab4349..c416b7811e 100755 --- a/config.guess +++ b/config.guess @@ -364,6 +364,8 @@ EOF echo "${UNAME_MACHINE}-unknown-linux" ; exit 0 elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68klinux"; then echo "${UNAME_MACHINE}-unknown-linuxaout" ; exit 0 + elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf32ppc"; then + echo "powerpc-unknown-linux" ; exit 0 elif test "${UNAME_MACHINE}" = "alpha" ; then echo alpha-unknown-linux ; exit 0 elif test "${UNAME_MACHINE}" = "sparc" ; then |