aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meissner <meissner@gcc.gnu.org>1996-06-20 16:20:05 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1996-06-20 16:20:05 +0000
commit2099d02cc7f5578ac8d1c3959bd31bba995eb7b1 (patch)
tree51d16d61fe63c080e77f0c98cedf53d3edac2f74
parent6eb12cef1d7793f3e598841a7b38067fa74b621e (diff)
downloadgcc-2099d02cc7f5578ac8d1c3959bd31bba995eb7b1.zip
gcc-2099d02cc7f5578ac8d1c3959bd31bba995eb7b1.tar.gz
gcc-2099d02cc7f5578ac8d1c3959bd31bba995eb7b1.tar.bz2
Add support for PowerPC Linux
From-SVN: r12312
-rwxr-xr-xgcc/config.guess2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config.guess b/gcc/config.guess
index 925dab4..c416b78 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