diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1996-07-04 08:42:38 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1996-07-04 08:42:38 +0000 |
commit | e9ffc97ea90869a1ba731e51a51a425cef43c684 (patch) | |
tree | 7d40482ae2367e5e65bd5e109c81faa20e771c1a | |
parent | 76104a251c834ab98ec75a4850ffc682e42ce04f (diff) |
Detection des PowerMac sous MKLinux.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@918 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rwxr-xr-x | config/auto-aux/config.guess | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/auto-aux/config.guess b/config/auto-aux/config.guess index 6c612f47a..cdbdcb7c4 100755 --- a/config/auto-aux/config.guess +++ b/config/auto-aux/config.guess @@ -327,6 +327,8 @@ EOF echo "${UNAME_MACHINE}-unknown-linuxcoff" ; exit 0 elif test "${UNAME_MACHINE}" = "alpha" ; then echo alpha-unknown-linux ; exit 0 + elif test "${UNAME_MACHINE}" = "osfmach3_ppc" ; then + echo powerpc-unknown-linux ; exit 0 else # Either a pre-BFD a.out linker (linuxoldld) or one that does not give us # useful --help. Gcc wants to distinguish between linuxoldld and linuxaout. |