Initial C++ runtime work. Much more to do.

This commit is contained in:
2015-05-02 23:32:01 -04:00
parent 772476ea85
commit db2bda84c8
35 changed files with 7920 additions and 0 deletions

13
c++_exceptions_runtime.cc Normal file
View File

@ -0,0 +1,13 @@
extern "C"
{
#include <sys/types.h>
#include <sys/systm.h>
}
namespace cpp_runtime
{
void *catch_impl( void *e ) noexcept
{
panic( "Catch not implemented." );
}
}