mirror of
https://github.com/reactos/reactos.git
synced 2025-06-13 11:48:32 +00:00
[CPPRT] Add cpprt for GCC, tool
- Link it to libsup++ - Add __cxa_pure_virtual
This commit is contained in:
parent
ea87f9102b
commit
81b8d07acd
4 changed files with 36 additions and 14 deletions
13
sdk/lib/cpprt/__cxa_pure_virtual.cpp
Normal file
13
sdk/lib/cpprt/__cxa_pure_virtual.cpp
Normal 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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue