This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libfortran/30007] libgfortran doesn't build for sh-elf
- From: "fxcoudert at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 5 Jan 2007 10:10:35 -0000
- Subject: [Bug libfortran/30007] libgfortran doesn't build for sh-elf
- References: <bug-30007-5394@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #3 from fxcoudert at gcc dot gnu dot org 2007-01-05 10:10 -------
Confirmed as it has been reported by other people as well. I don't understand
enough of this name aliasing to understand the reason for this bug. Can you
confirm that the following is enough to trigger the bug? If that's the case,
then maybe a post to the gcc mailing-list would be a good thing.
extern void runtime_error (const char *) __attribute__ ((noreturn));
extern __typeof(runtime_error) runtime_error __asm__("_"
"_gfortrani_runtime_error") __attribute__((__visibility__("hidden")));
void
runtime_error (const char *message)
{
;
}
extern __typeof(runtime_error) _gfortran_runtime_error
__attribute__((__alias__("_" "_gfortrani_runtime_error")));
--
fxcoudert at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
Last reconfirmed|0000-00-00 00:00:00 |2007-01-05 10:10:35
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30007