It seems to link, and I need Unwind now.
I'm too tired to mess with this. I'll probably break something. Time to go to bed.
This commit is contained in:
15
libcpprt.cc
15
libcpprt.cc
@ -32,15 +32,26 @@ class TestingImpl : public Testing
|
||||
|
||||
void
|
||||
libcpprt_entry()
|
||||
try
|
||||
{
|
||||
uprintf( "Hello\n" );
|
||||
if( 1 ) tester= new TestingImpl();
|
||||
tester= new TestingImpl();
|
||||
|
||||
tester->core();
|
||||
}
|
||||
catch( ... )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
libcpprt_close()
|
||||
try
|
||||
{
|
||||
uprintf( "Goodbye\n" );
|
||||
if( 1 ) delete tester;
|
||||
tester->core();
|
||||
delete tester;
|
||||
}
|
||||
catch( ... )
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user