mirror of
https://github.com/reactos/reactos.git
synced 2025-06-06 01:40:36 +00:00
[CRT] Remove checkstk_ms from build (it was unused)
This commit is contained in:
parent
8c4aff39a8
commit
7100a24fc3
1 changed files with 0 additions and 10 deletions
|
@ -3,10 +3,6 @@ if(ARCH STREQUAL "i386")
|
||||||
list(APPEND LIBCNTPR_EXCEPT_ASM_SOURCE
|
list(APPEND LIBCNTPR_EXCEPT_ASM_SOURCE
|
||||||
except/i386/chkstk_asm.s
|
except/i386/chkstk_asm.s
|
||||||
)
|
)
|
||||||
if(NOT MSVC)
|
|
||||||
list(APPEND LIBCNTPR_EXCEPT_ASM_SOURCE
|
|
||||||
except/i386/chkstk_ms.s)
|
|
||||||
endif()
|
|
||||||
list(APPEND CRT_EXCEPT_ASM_SOURCE
|
list(APPEND CRT_EXCEPT_ASM_SOURCE
|
||||||
except/i386/chkesp.s
|
except/i386/chkesp.s
|
||||||
except/i386/prolog.s
|
except/i386/prolog.s
|
||||||
|
@ -65,16 +61,10 @@ list(APPEND CRT_EXCEPT_SOURCE
|
||||||
|
|
||||||
if(ARCH STREQUAL "i386")
|
if(ARCH STREQUAL "i386")
|
||||||
list(APPEND CHKSTK_ASM_SOURCE except/i386/chkstk_asm.s)
|
list(APPEND CHKSTK_ASM_SOURCE except/i386/chkstk_asm.s)
|
||||||
if(NOT MSVC)
|
|
||||||
list(APPEND CHKSTK_ASM_SOURCE except/i386/chkstk_ms.s)
|
|
||||||
endif()
|
|
||||||
elseif(ARCH STREQUAL "amd64")
|
elseif(ARCH STREQUAL "amd64")
|
||||||
list(APPEND CHKSTK_ASM_SOURCE except/amd64/chkstk_ms.s)
|
list(APPEND CHKSTK_ASM_SOURCE except/amd64/chkstk_ms.s)
|
||||||
elseif(ARCH STREQUAL "arm")
|
elseif(ARCH STREQUAL "arm")
|
||||||
list(APPEND CHKSTK_ASM_SOURCE except/arm/chkstk_asm.s)
|
list(APPEND CHKSTK_ASM_SOURCE except/arm/chkstk_asm.s)
|
||||||
if(NOT MSVC)
|
|
||||||
list(APPEND CHKSTK_ASM_SOURCE except/arm/chkstk_ms.s)
|
|
||||||
endif()
|
|
||||||
elseif(ARCH STREQUAL "powerpc")
|
elseif(ARCH STREQUAL "powerpc")
|
||||||
list(APPEND CHKSTK_ASM_SOURCE except/powerpc/chkstk_asm.s)
|
list(APPEND CHKSTK_ASM_SOURCE except/powerpc/chkstk_asm.s)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue