Differences From Artifact [5d844627f0]:
- File
src/amiga-library.m
— part of check-in
[45a8b2333d]
at
2020-06-07 16:53:31
on branch amiga-library
— Add __(de)register_frame_info to amiga-library.m
This way the runtime's linklib will use the ones passed to the ObjFW
.library. (user: js, size: 11490) [annotate] [blame] [check-ins using]
To Artifact [35e8c01732]:
- File src/amiga-library.m — part of check-in [b50dc283cf] at 2020-06-07 18:27:49 on branch amiga-library — Add _Unwind_Backtrace to amiga-library.m (user: js, size: 11610) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
535 536 537 538 539 540 541 542 543 544 545 546 547 548 | } char * setlocale(int category, const char *locale) { return libc.setlocale(category, locale); } #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wpedantic" static CONST_APTR functionTable[] = { #ifdef OF_MORPHOS (CONST_APTR)FUNCARRAY_BEGIN, (CONST_APTR)FUNCARRAY_32BIT_NATIVE, | > > > > > > | 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 | } char * setlocale(int category, const char *locale) { return libc.setlocale(category, locale); } int _Unwind_Backtrace(int (*callback)(void *, void *), void *data) { return libc._Unwind_Backtrace(callback, data); } #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wpedantic" static CONST_APTR functionTable[] = { #ifdef OF_MORPHOS (CONST_APTR)FUNCARRAY_BEGIN, (CONST_APTR)FUNCARRAY_32BIT_NATIVE, |
︙ | ︙ |