mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 18:39:25 +01:00
fb9b7ab3fb
Who knows? not me. Seems to work okay without it wut_stdcpp.cpp /home/ash/src/wut/libraries/wutstdc++/wut_stdcpp.cpp:3:9: error: expected '(' before '__volatile__' __asm__ __volatile__( ^~~~~~~~~~~~ ( /home/ash/src/wut/libraries/wutstdc++/wut_stdcpp.cpp:4:4: error: expected unqualified-id before string constant "\t.section\t.text.__wrap___gxx_personality_v0,\"ax\",@progbits\n" ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/ash/src/wut/libraries/wutstdc++/wut_stdcpp.cpp:3:22: error: expected ')' before string constant __asm__ __volatile__( ~^ ) "\t.section\t.text.__wrap___gxx_personality_v0,\"ax\",@progbits\n" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ make[1]: *** [/opt/devkitpro/devkitPPC/base_rules:13: wut_stdcpp.o] Error 1
24 lines
455 B
C++
24 lines
455 B
C++
#include "wut_gthread.h"
|
|
|
|
__asm__ (
|
|
"\t.section\t.text.__wrap___gxx_personality_v0,\"ax\",@progbits\n"
|
|
"\t.align\t2\n"
|
|
"\t.globl\t__wrap___gxx_personality_v0\n"
|
|
"\t.type\t__wrap___gxx_personality_v0, @function\n"
|
|
"__wrap___gxx_personality_v0:\n"
|
|
"\t.cfi_startproc\n"
|
|
"\tb\t__real___gxx_personality_v0\n"
|
|
"\t.cfi_endproc"
|
|
);
|
|
|
|
extern "C" void
|
|
__init_wut_stdcpp()
|
|
{
|
|
__init_wut_gthread();
|
|
}
|
|
|
|
extern "C" void
|
|
__fini_wut_stdcpp()
|
|
{
|
|
}
|