2024-10-11 14:52:11 +03:00
|
|
|
|
|
|
|
list(APPEND UCRT_STDLIB_SOURCES
|
|
|
|
stdlib/abs.cpp
|
|
|
|
stdlib/bsearch.cpp
|
|
|
|
stdlib/bsearch_s.cpp
|
|
|
|
stdlib/byteswap.cpp
|
|
|
|
stdlib/div.cpp
|
|
|
|
stdlib/imaxabs.cpp
|
|
|
|
stdlib/imaxdiv.cpp
|
|
|
|
stdlib/labs.cpp
|
|
|
|
stdlib/ldiv.cpp
|
|
|
|
stdlib/lfind.cpp
|
|
|
|
stdlib/lfind_s.cpp
|
|
|
|
stdlib/llabs.cpp
|
|
|
|
stdlib/lldiv.cpp
|
|
|
|
stdlib/lsearch.cpp
|
|
|
|
stdlib/lsearch_s.cpp
|
|
|
|
stdlib/qsort.cpp
|
|
|
|
stdlib/qsort_s.cpp
|
|
|
|
stdlib/rand.cpp
|
|
|
|
stdlib/rand_s.cpp
|
|
|
|
stdlib/rotl.cpp
|
|
|
|
stdlib/rotr.cpp
|
|
|
|
)
|
2024-12-02 19:42:45 +02:00
|
|
|
|
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
2025-01-27 11:51:21 +02:00
|
|
|
add_asm_files(UCRT_STDLIB_ASM stdlib/clang-hacks.s)
|
2024-12-02 19:42:45 +02:00
|
|
|
list(APPEND UCRT_STDLIB_SOURCES
|
2025-01-27 11:51:21 +02:00
|
|
|
${UCRT_STDLIB_ASM}
|
2024-12-02 19:42:45 +02:00
|
|
|
)
|
|
|
|
endif()
|