[CPPRT] Add cpprt for GCC, tool

- Link it to libsup++
- Add __cxa_pure_virtual
This commit is contained in:
Timo Kreuzer 2024-10-19 13:57:29 +03:00
parent ea87f9102b
commit 81b8d07acd
4 changed files with 36 additions and 14 deletions

View file

@ -0,0 +1,13 @@
/*
* PROJECT: ReactOS C++ runtime library
* LICENSE: MIT (https://spdx.org/licenses/MIT)
* PURPOSE: __cxa_pure_virtual implementation
* COPYRIGHT: Copyright 2024 Timo Kreuzer <timo.kreuzer@reactos.org>
*/
#include <intrin.h>
extern "C" void __cxa_pure_virtual(void)
{
__debugbreak();
}