uti: Use only general registers in libmck_syscall_intercept.so

Change-Id: I8e8e98bdc7e621aa111c0940d915ebe1775a10c3
This commit is contained in:
Masamichi Takagi
2019-07-19 11:58:40 +09:00
parent 207eba93ea
commit e1c6e17400

View File

@@ -58,6 +58,9 @@ endif()
if (ENABLE_UTI)
add_library(mck_syscall_intercept SHARED syscall_intercept.c arch/${ARCH}/archdep_c.c)
if (${ARCH} STREQUAL "arm64")
set_source_files_properties(syscall_intercept.c PROPERTIES COMPILE_FLAGS -mgeneral-regs-only)
endif()
target_link_libraries(mck_syscall_intercept ${LIBSYSCALL_INTERCEPT_LIBRARIES})
target_include_directories(mck_syscall_intercept PRIVATE ${LIBSYSCALL_INTERCEPT_INCLUDE_DIRS})
set_target_properties(mck_syscall_intercept PROPERTIES INSTALL_RPATH_USE_LINK_PATH TRUE)