mirror of
https://github.com/reactos/reactos.git
synced 2026-06-20 08:32:14 +08:00
[CPPRT] Add cpprt for GCC, tool
- Link it to libsup++ - Add __cxa_pure_virtual
This commit is contained in:
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();
|
||||
}
|
||||
Reference in New Issue
Block a user