[PATCH] D106305: [compiler-rt][CMake][arm64] Use a custom target for symlinking LSE sources
Raul Tambre via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 23 00:27:04 PDT 2021
tambre updated this revision to Diff 361110.
tambre added a comment.
Remove whitespace changes
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D106305/new/
https://reviews.llvm.org/D106305
Files:
compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake
compiler-rt/lib/builtins/CMakeLists.txt
Index: compiler-rt/lib/builtins/CMakeLists.txt
===================================================================
--- compiler-rt/lib/builtins/CMakeLists.txt
+++ compiler-rt/lib/builtins/CMakeLists.txt
@@ -531,10 +531,8 @@
foreach(model 1 2 3 4)
if(pat STREQUAL "cas" OR NOT size STREQUAL "16")
set(helper_asm "${OA_HELPERS_DIR}/outline_atomic_${pat}${size}_${model}.S")
- add_custom_command(
- OUTPUT ${helper_asm}
- COMMAND ${CMAKE_COMMAND} -E ${COMPILER_RT_LINK_OR_COPY} "${CMAKE_CURRENT_SOURCE_DIR}/aarch64/lse.S" "${helper_asm}"
- )
+ list(APPEND lse_builtins "${helper_asm}")
+ list(APPEND arm64_lse_commands COMMAND ${CMAKE_COMMAND} -E ${COMPILER_RT_LINK_OR_COPY} "${CMAKE_CURRENT_SOURCE_DIR}/aarch64/lse.S" "${helper_asm}")
set_source_files_properties("${helper_asm}"
PROPERTIES
COMPILE_DEFINITIONS "L_${pat};SIZE=${size};MODEL=${model}"
@@ -741,9 +739,20 @@
list(APPEND BUILTIN_CFLAGS_${arch} -fforce-enable-int128)
endif()
+ if(arch STREQUAL "aarch64")
+ add_custom_target(
+ lse_builtin_symlinks
+ BYPRODUCTS ${lse_builtins}
+ ${arm64_lse_commands}
+ )
+
+ set(deps_aarch64 lse_builtin_symlinks)
+ endif()
+
add_compiler_rt_runtime(clang_rt.builtins
STATIC
ARCHS ${arch}
+ DEPS ${deps_${arch}}
SOURCES ${${arch}_SOURCES}
DEFS ${BUILTIN_DEFS}
CFLAGS ${BUILTIN_CFLAGS_${arch}}
Index: compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake
===================================================================
--- compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake
+++ compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake
@@ -405,6 +405,18 @@
../profile/InstrProfilingVersionVar.c)
foreach (os ${ARGN})
list_intersect(DARWIN_BUILTIN_ARCHS DARWIN_${os}_BUILTIN_ARCHS BUILTIN_SUPPORTED_ARCH)
+
+ if(DARWIN_BUILTIN_ARCHS MATCHES "^(arm64|arm64e)$" AND NOT TARGET lse_builtin_symlinks)
+ add_custom_target(
+ lse_builtin_symlinks
+ BYPRODUCTS ${lse_builtins}
+ ${arm64_lse_commands}
+ )
+
+ set(deps_arm64 lse_builtin_symlinks)
+ set(deps_arm64e lse_builtin_symlinks)
+ endif()
+
foreach (arch ${DARWIN_BUILTIN_ARCHS})
darwin_find_excluded_builtins_list(${arch}_${os}_EXCLUDED_BUILTINS
OS ${os}
@@ -419,6 +431,7 @@
darwin_add_builtin_library(clang_rt builtins
OS ${os}
ARCH ${arch}
+ DEPS ${deps_${arch}}
SOURCES ${filtered_sources}
CFLAGS ${CFLAGS} -arch ${arch}
PARENT_TARGET builtins)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D106305.361110.patch
Type: text/x-patch
Size: 2971 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210723/01dda0cb/attachment.bin>
More information about the llvm-commits
mailing list