support arm

This commit is contained in:
Katayama Hirofumi MZ 2025-03-30 08:51:59 +09:00
parent 52812654a3
commit aea461b386
5 changed files with 11 additions and 1 deletions

View file

@ -549,6 +549,10 @@ elseif(ARCH STREQUAL "amd64")
# _local_unwind.c
# longjmp.c
)
elseif(ARCH STREQUAL "arm")
list(APPEND SOURCE_CRTDLL
setjmp.c
)
endif()

View file

@ -1369,6 +1369,7 @@ elseif(ARCH STREQUAL "amd64")
)
elseif(ARCH STREQUAL "arm")
list(APPEND SOURCE_MSVCRT
setjmp.c
__rt_div.c
__fto64.c
__64tof.c

View file

@ -152,6 +152,10 @@ elseif(ARCH STREQUAL "amd64")
# _local_unwind.c
# longjmp.c
)
elseif(ARCH STREQUAL "arm")
list(APPEND SOURCE_NTDLL
setjmp.c
)
endif()
add_executable(ntdll_crt_apitest testlist.c ${SOURCE_NTDLL})

View file

@ -35,6 +35,7 @@ elseif(ARCH STREQUAL "amd64")
)
elseif(ARCH STREQUAL "arm")
list(APPEND SOURCE_STATIC
setjmp.c
__rt_div.c
__fto64.c
__64tof.c

View file

@ -57,7 +57,7 @@ const struct test winetest_testlist[] =
{ "_vsnwprintf", func__vsnwprintf },
{ "mbstowcs", func_mbstowcs },
{ "mbtowc", func_mbtowc },
#if defined(_M_IX86) || defined(_M_AMD64)
#if defined(_M_IX86) || defined(_M_AMD64) || defined(_M_ARM)
{ "setjmp", func_setjmp },
#endif
{ "_snprintf", func__snprintf },