Commit d77b25f4 by Karl Heuer

(*:Linux:*:*): Add guess for sparc-unknown-linux.

From-SVN: r12145
parent 65ef0674
...@@ -350,6 +350,8 @@ EOF ...@@ -350,6 +350,8 @@ EOF
echo "${UNAME_MACHINE}-unknown-linuxaout" ; exit 0 echo "${UNAME_MACHINE}-unknown-linuxaout" ; exit 0
elif test "${UNAME_MACHINE}" = "alpha" ; then elif test "${UNAME_MACHINE}" = "alpha" ; then
echo alpha-unknown-linux ; exit 0 echo alpha-unknown-linux ; exit 0
elif test "${UNAME_MACHINE}" = "sparc" ; then
echo sparc-unknown-linux ; exit 0
else else
# Either a pre-BFD a.out linker (linuxoldld) or one that does not give us # 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. # useful --help. Gcc wants to distinguish between linuxoldld and linuxaout.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment