diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-06-20 16:20:05 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-06-20 16:20:05 +0000 |
commit | c35d924e2a56a2a0e06a0504a676ae0a95e353b5 (patch) | |
tree | 51d16d61fe63c080e77f0c98cedf53d3edac2f74 /gcc/config.guess | |
parent | 11f912aea432f019fce11d4cec08bcd413ac8b71 (diff) | |
download | gcc-c35d924e2a56a2a0e06a0504a676ae0a95e353b5.tar.gz |
Add support for PowerPC Linux
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12312 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.guess')
-rwxr-xr-x | gcc/config.guess | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config.guess b/gcc/config.guess index 925dab43498..c416b7811ea 100755 --- a/gcc/config.guess +++ b/gcc/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 |