mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 01:21:10 +00:00
[WiiU] Toolchain: Actually fix C++ constructors/destructors (oops!)
Looks like I temporarily forgot how external symbols work. Fixes https://gbatemp.net/posts/7720955; hopefully we finally have C++ under control.
This commit is contained in:
parent
4efc8453c2
commit
e9a3088a79
@ -525,24 +525,23 @@ void __eabi()
|
|||||||
__attribute__((weak))
|
__attribute__((weak))
|
||||||
void __init(void)
|
void __init(void)
|
||||||
{
|
{
|
||||||
extern void (**const __CTOR_LIST__)(void);
|
extern void (*const __CTOR_LIST__)(void);
|
||||||
extern void (**const __CTOR_END__)(void);
|
extern void (*const __CTOR_END__)(void);
|
||||||
|
|
||||||
void (**ctor)(void) = __CTOR_LIST__;
|
void (*const *ctor)(void) = &__CTOR_LIST__;
|
||||||
while (ctor < __CTOR_END__) {
|
while (ctor < &__CTOR_END__) {
|
||||||
(*ctor++)();
|
(*ctor++)();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
__attribute__((weak))
|
__attribute__((weak))
|
||||||
void __fini(void)
|
void __fini(void)
|
||||||
{
|
{
|
||||||
extern void (**const __DTOR_LIST__)(void);
|
extern void (*const __DTOR_LIST__)(void);
|
||||||
extern void (**const __DTOR_END__)(void);
|
extern void (*const __DTOR_END__)(void);
|
||||||
|
|
||||||
void (**dtor)(void) = __DTOR_LIST__;
|
void (*const *dtor)(void) = &__DTOR_LIST__;
|
||||||
while (dtor < __DTOR_END__) {
|
while (dtor < &__DTOR_END__) {
|
||||||
(*dtor++)();
|
(*dtor++)();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -654,6 +653,9 @@ void _start(int argc, char **argv)
|
|||||||
main(argc, argv);
|
main(argc, argv);
|
||||||
|
|
||||||
fsdev_exit();
|
fsdev_exit();
|
||||||
|
|
||||||
|
/* TODO: fix elf2rpl so it doesn't error with "Could not find matching symbol
|
||||||
|
for relocation" then uncomment this */
|
||||||
// __fini();
|
// __fini();
|
||||||
memoryRelease();
|
memoryRelease();
|
||||||
SYSRelaunchTitle(0, 0);
|
SYSRelaunchTitle(0, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user