mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:12:58 +00:00
[CPPRT][CRT][MSVCRT] Move __CxxFrameHandler3 to crt and export it on NT6
Previously it was in cpprt, which is a support library for C++, containing functions that are not exported by msvcrt. But since Vista __CxxFrameHandler3 is exported by msvcrt. Therefore move it to crt, and to satisfy pre-Vista configurations, also add it to msvcrtex.
This commit is contained in:
parent
310563aece
commit
ce848e5c11
9 changed files with 58 additions and 22 deletions
|
@ -4,9 +4,13 @@ if(ARCH STREQUAL "i386")
|
|||
except/i386/chkstk_asm.s
|
||||
)
|
||||
list(APPEND CRT_EXCEPT_ASM_SOURCE
|
||||
except/i386/__CxxFrameHandler3.s
|
||||
except/i386/chkesp.s
|
||||
except/i386/prolog.s
|
||||
)
|
||||
list(APPEND CRT_EXCEPT_SOURCE
|
||||
except/i386/CxxHandleV8Frame.c
|
||||
)
|
||||
if(MSVC)
|
||||
list(APPEND CRT_EXCEPT_ASM_SOURCE
|
||||
except/i386/cpp.s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue