This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/16109] error: architecture mismatch on "fzero".
- From: "ebotcazou at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 8 Jul 2004 18:15:35 -0000
- Subject: [Bug target/16109] error: architecture mismatch on "fzero".
- References: <20040621084809.16109.pluto@pld-linux.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From ebotcazou at gcc dot gnu dot org 2004-07-08 18:15 -------
> (It could come from a --with-cpu=v9 on the configure line, but I don't see it
> in the output of 'gcc -v'.
It is actually automatically set by the configure script:
sparc*-*-*)
# Some standard aliases.
case x$with_cpu in
xsparc)
with_cpu=v7
;;
xsparc86x)
with_cpu=sparclite86x
;;
xsparcv9 | xsparc64)
with_cpu=v9
;;
esac
Jakub, how is your sparc64-redhat-linux compiler supposed to work? I see you
configured it with --with-cpu=v7, so the driver will append -mcpu=v7 to the
command line if there is no -mcpu, right? How do you turn that into
-mcpu=ultrasparc?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16109