mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 02:43:38 +00:00

- disable GCC builtins - Add simple tests for strlen, showing that a NULL pointer will cause an access violation, which is broken in our asm implementation svn path=/trunk/; revision=70427
11 lines
196 B
CMake
11 lines
196 B
CMake
|
|
if(GCC)
|
|
add_compile_flags("-fno-builtin")
|
|
endif()
|
|
|
|
include(ntdll_crt_apitest.cmake)
|
|
include(msvcrt_crt_apitest.cmake)
|
|
|
|
if(NOT ARCH STREQUAL "amd64")
|
|
include(crtdll_crt_apitest.cmake)
|
|
endif()
|