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
|
@ -421,6 +421,10 @@ void EXPORT_FUNC(grub_reboot) (void) __attribute__ ((noreturn));
|
|||
void grub_reboot (void) __attribute__ ((noreturn));
|
||||
#endif
|
||||
|
||||
#if defined (__clang__) && !defined (GRUB_UTIL)
|
||||
void __attribute__ ((noreturn)) EXPORT_FUNC (abort) (void);
|
||||
#endif
|
||||
|
||||
#ifdef GRUB_MACHINE_PCBIOS
|
||||
/* Halt the system, using APM if possible. If NO_APM is true, don't
|
||||
* use APM even if it is available. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue