clang emits calls to abort () under some unknown conditions.
Export abort () when compiling with clang.
This commit is contained in:
parent
095bb1bfa5
commit
4a0aaad022
3 changed files with 18 additions and 0 deletions
|
@ -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, ...)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue