mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Implement the required but unused __aeabi_unwind_cpp_* functions in the
trampoline kernel.
This commit is contained in:
parent
a2e01abec7
commit
f8cd79f38b
1 changed files with 15 additions and 0 deletions
|
|
@ -701,3 +701,18 @@ __start(void)
|
|||
do_call(dst, kernel, dst + (unsigned int)(&func_end) -
|
||||
(unsigned int)(&load_kernel) + 800, sp);
|
||||
}
|
||||
|
||||
#ifdef __ARM_EABI__
|
||||
/* We need to provide these functions but never call them */
|
||||
void __aeabi_unwind_cpp_pr0(void);
|
||||
void __aeabi_unwind_cpp_pr1(void);
|
||||
void __aeabi_unwind_cpp_pr2(void);
|
||||
|
||||
__strong_reference(__aeabi_unwind_cpp_pr0, __aeabi_unwind_cpp_pr1);
|
||||
__strong_reference(__aeabi_unwind_cpp_pr0, __aeabi_unwind_cpp_pr2);
|
||||
void
|
||||
__aeabi_unwind_cpp_pr0(void)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue