mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
909f7439d0
- 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
12 lines
196 B
CMake
12 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()
|