clang emits calls to abort () under some unknown conditions.

Export abort () when compiling with clang.
This commit is contained in:
Vladimir Serbinenko 2013-11-22 12:42:58 +01:00
parent 095bb1bfa5
commit 4a0aaad022
3 changed files with 18 additions and 0 deletions

View file

@ -1220,6 +1220,15 @@ grub_abort (void)
grub_exit ();
}
#if defined (__clang__) && !defined (GRUB_UTIL)
/* clang emits references to abort(). */
void __attribute__ ((noreturn))
abort (void)
{
grub_abort ();
}
#endif
void
grub_fatal (const char *fmt, ...)
{