mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-24 15:26:24 +00:00

The libclc build system isn't well set up to pass arbitrary options to arbitrary source files in a non-intrusive way. There isn't currently any other motivating example to warrant rewriting the build system just to satisfy this requirement. So this commit uses a filename-based approach to inserting this option into the list of compile flags.
442 lines
15 KiB
CMake
442 lines
15 KiB
CMake
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
|
project(libclc VERSION 0.2.0 LANGUAGES CXX C)
|
|
endif()
|
|
set(LLVM_SUBPROJECT_TITLE "libclc")
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
# Add path for custom modules
|
|
list( INSERT CMAKE_MODULE_PATH 0 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules" )
|
|
|
|
set( LIBCLC_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR} )
|
|
set( LIBCLC_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} )
|
|
set( LIBCLC_OBJFILE_DIR ${LIBCLC_BINARY_DIR}/obj.libclc.dir )
|
|
|
|
include( AddLibclc )
|
|
|
|
include( GNUInstallDirs )
|
|
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS
|
|
amdgcn-amdhsa/lib/SOURCES;
|
|
amdgcn/lib/SOURCES;
|
|
amdgpu/lib/SOURCES;
|
|
clspv/lib/SOURCES;
|
|
generic/lib/SOURCES;
|
|
ptx-nvidiacl/lib/SOURCES;
|
|
r600/lib/SOURCES;
|
|
spirv/lib/SOURCES;
|
|
# CLC internal libraries
|
|
clc/lib/generic/SOURCES;
|
|
clc/lib/amdgcn/SOURCES;
|
|
clc/lib/amdgpu/SOURCES;
|
|
clc/lib/clspv/SOURCES;
|
|
clc/lib/r600/SOURCES;
|
|
clc/lib/spirv/SOURCES;
|
|
)
|
|
|
|
set( LIBCLC_MIN_LLVM 3.9.0 )
|
|
|
|
set( LIBCLC_TARGETS_TO_BUILD "all"
|
|
CACHE STRING "Semicolon-separated list of libclc targets to build, or 'all'." )
|
|
|
|
option( ENABLE_RUNTIME_SUBNORMAL "Enable runtime linking of subnormal support." OFF )
|
|
|
|
if( LIBCLC_STANDALONE_BUILD OR CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR )
|
|
# Out-of-tree configuration
|
|
set( LIBCLC_STANDALONE_BUILD TRUE )
|
|
|
|
find_package(LLVM REQUIRED HINTS "${LLVM_CMAKE_DIR}")
|
|
include(AddLLVM)
|
|
|
|
message( STATUS "libclc LLVM version: ${LLVM_PACKAGE_VERSION}" )
|
|
|
|
if( LLVM_PACKAGE_VERSION VERSION_LESS LIBCLC_MIN_LLVM )
|
|
message( FATAL_ERROR "libclc needs at least LLVM ${LIBCLC_MIN_LLVM}" )
|
|
endif()
|
|
|
|
# Import required tools
|
|
if( NOT EXISTS ${LIBCLC_CUSTOM_LLVM_TOOLS_BINARY_DIR} )
|
|
foreach( tool IN ITEMS clang llvm-as llvm-link opt )
|
|
find_program( LLVM_TOOL_${tool} ${tool} PATHS ${LLVM_TOOLS_BINARY_DIR} NO_DEFAULT_PATH )
|
|
set( ${tool}_exe ${LLVM_TOOL_${tool}} )
|
|
set( ${tool}_target )
|
|
endforeach()
|
|
endif()
|
|
else()
|
|
# In-tree configuration
|
|
set( LIBCLC_STANDALONE_BUILD FALSE )
|
|
|
|
set( LLVM_PACKAGE_VERSION ${LLVM_VERSION} )
|
|
|
|
# Note that we check this later (for both build types) but we can provide a
|
|
# more useful error message when built in-tree. We assume that LLVM tools are
|
|
# always available so don't warn here.
|
|
if( NOT clang IN_LIST LLVM_ENABLE_PROJECTS )
|
|
message(FATAL_ERROR "Clang is not enabled, but is required to build libclc in-tree")
|
|
endif()
|
|
|
|
if( NOT EXISTS ${LIBCLC_CUSTOM_LLVM_TOOLS_BINARY_DIR} )
|
|
get_host_tool_path( clang CLANG clang_exe clang_target )
|
|
get_host_tool_path( llvm-as LLVM_AS llvm-as_exe llvm-as_target )
|
|
get_host_tool_path( llvm-link LLVM_LINK llvm-link_exe llvm-link_target )
|
|
get_host_tool_path( opt OPT opt_exe opt_target )
|
|
endif()
|
|
endif()
|
|
|
|
if( EXISTS ${LIBCLC_CUSTOM_LLVM_TOOLS_BINARY_DIR} )
|
|
message( WARNING "Using custom LLVM tools to build libclc: "
|
|
"${LIBCLC_CUSTOM_LLVM_TOOLS_BINARY_DIR}, "
|
|
" ensure the tools are up to date." )
|
|
# Note - use a differently named variable than LLVM_TOOL_${tool} as above, as
|
|
# the variable name is used to cache the result of find_program. If we used
|
|
# the same name, a user wouldn't be able to switch a build between default
|
|
# and custom tools.
|
|
foreach( tool IN ITEMS clang llvm-as llvm-link opt )
|
|
find_program( LLVM_CUSTOM_TOOL_${tool} ${tool}
|
|
PATHS ${LIBCLC_CUSTOM_LLVM_TOOLS_BINARY_DIR} NO_DEFAULT_PATH )
|
|
set( ${tool}_exe ${LLVM_CUSTOM_TOOL_${tool}} )
|
|
set( ${tool}_target )
|
|
endforeach()
|
|
endif()
|
|
|
|
foreach( tool IN ITEMS clang opt llvm-as llvm-link )
|
|
if( NOT EXISTS "${${tool}_exe}" AND "${tool}_target" STREQUAL "" )
|
|
message( FATAL_ERROR "libclc toolchain incomplete - missing tool ${tool}!" )
|
|
endif()
|
|
endforeach()
|
|
|
|
# llvm-spirv is an optional dependency, used to build spirv-* targets.
|
|
# It may be provided in-tree or externally.
|
|
if( TARGET llvm-spirv )
|
|
get_host_tool_path( llvm-spirv LLVM_SPIRV llvm-spirv_exe llvm-spirv_target )
|
|
else()
|
|
find_program( LLVM_SPIRV llvm-spirv HINTS ${LLVM_TOOLS_BINARY_DIR} )
|
|
set( llvm-spirv_exe "${LLVM_SPIRV}" )
|
|
set( llvm-spirv_target )
|
|
endif()
|
|
|
|
# List of all targets. Note that some are added dynamically below.
|
|
set( LIBCLC_TARGETS_ALL
|
|
amdgcn--
|
|
amdgcn--amdhsa
|
|
clspv--
|
|
clspv64--
|
|
r600--
|
|
nvptx--
|
|
nvptx64--
|
|
nvptx--nvidiacl
|
|
nvptx64--nvidiacl
|
|
)
|
|
|
|
# mesa3d environment is only available since LLVM 4.0
|
|
if( LLVM_PACKAGE_VERSION VERSION_GREATER_EQUAL 4.0.0 )
|
|
list( APPEND LIBCLC_TARGETS_ALL amdgcn-mesa-mesa3d )
|
|
endif()
|
|
|
|
# spirv-mesa3d and spirv64-mesa3d targets can only be built with the (optional)
|
|
# llvm-spirv external tool.
|
|
if( llvm-spirv_exe )
|
|
list( APPEND LIBCLC_TARGETS_ALL spirv-mesa3d- spirv64-mesa3d- )
|
|
endif()
|
|
|
|
# Verify that the user hasn't requested mesa3d targets without an available
|
|
# llvm-spirv tool.
|
|
if( "spirv-mesa3d-" IN_LIST LIBCLC_TARGETS_TO_BUILD OR "spirv64-mesa3d-" IN_LIST LIBCLC_TARGETS_TO_BUILD )
|
|
if( NOT llvm-spirv_exe )
|
|
message( FATAL_ERROR "SPIR-V targets requested, but spirv-tools is not installed" )
|
|
endif()
|
|
endif()
|
|
|
|
if( LIBCLC_TARGETS_TO_BUILD STREQUAL "all" )
|
|
set( LIBCLC_TARGETS_TO_BUILD ${LIBCLC_TARGETS_ALL} )
|
|
else()
|
|
foreach(TARGET_TO_BUILD ${LIBCLC_TARGETS_TO_BUILD})
|
|
if (NOT ${TARGET_TO_BUILD} IN_LIST LIBCLC_TARGETS_ALL)
|
|
message ( FATAL_ERROR "Unknown target in LIBCLC_TARGETS_TO_BUILD: \"${TARGET_TO_BUILD}\"\n"
|
|
"Valid targets are: ${LIBCLC_TARGETS_ALL}\n")
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
|
|
list( SORT LIBCLC_TARGETS_TO_BUILD )
|
|
|
|
# Construct LLVM version define
|
|
set( LLVM_VERSION_DEFINE "-DHAVE_LLVM=0x${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}" )
|
|
|
|
# This needs to be set before any target that needs it
|
|
# We need to use LLVM_INCLUDE_DIRS here, because if we are linking to an
|
|
# llvm build directory, this includes $src/llvm/include which is where all the
|
|
# headers are not $build/include/ which is what LLVM_INCLUDE_DIR is set to.
|
|
include_directories( ${LLVM_INCLUDE_DIRS} )
|
|
|
|
# Setup prepare_builtins tools
|
|
set(LLVM_LINK_COMPONENTS
|
|
BitReader
|
|
BitWriter
|
|
Core
|
|
IRReader
|
|
Support
|
|
)
|
|
if( LIBCLC_STANDALONE_BUILD )
|
|
add_llvm_executable( prepare_builtins utils/prepare-builtins.cpp )
|
|
set( prepare_builtins_exe prepare_builtins )
|
|
set( prepare_builtins_target prepare_builtins )
|
|
else()
|
|
add_llvm_utility( prepare_builtins utils/prepare-builtins.cpp )
|
|
setup_host_tool( prepare_builtins PREPARE_BUILTINS prepare_builtins_exe prepare_builtins_target )
|
|
endif()
|
|
target_compile_definitions( prepare_builtins PRIVATE ${LLVM_VERSION_DEFINE} )
|
|
# These were not properly reported in early LLVM and we don't need them
|
|
target_compile_options( prepare_builtins PRIVATE -fno-rtti -fno-exceptions )
|
|
|
|
# Setup arch devices
|
|
set( r600--_devices cedar cypress barts cayman )
|
|
set( amdgcn--_devices tahiti )
|
|
set( amdgcn-mesa-mesa3d_devices ${amdgcn--_devices} )
|
|
set( amdgcn--amdhsa_devices none )
|
|
set( clspv--_devices none )
|
|
set( clspv64--_devices none )
|
|
set( nvptx--_devices none )
|
|
set( nvptx64--_devices none )
|
|
set( nvptx--nvidiacl_devices none )
|
|
set( nvptx64--nvidiacl_devices none )
|
|
set( spirv-mesa3d-_devices none )
|
|
set( spirv64-mesa3d-_devices none )
|
|
|
|
# Setup aliases
|
|
set( cedar_aliases palm sumo sumo2 redwood juniper )
|
|
set( cypress_aliases hemlock )
|
|
set( barts_aliases turks caicos )
|
|
set( cayman_aliases aruba )
|
|
set( tahiti_aliases pitcairn verde oland hainan bonaire kabini kaveri hawaii
|
|
mullins tonga tongapro iceland carrizo fiji stoney polaris10 polaris11
|
|
gfx602 gfx705 gfx805
|
|
gfx900 gfx902 gfx904 gfx906 gfx908 gfx909 gfx90a gfx90c gfx942 gfx950
|
|
gfx1010 gfx1011 gfx1012 gfx1013
|
|
gfx1030 gfx1031 gfx1032 gfx1033 gfx1034 gfx1035 gfx1036
|
|
gfx1100 gfx1101 gfx1102 gfx1103
|
|
gfx1150 gfx1151 gfx1152 gfx1153
|
|
gfx1200 gfx1201
|
|
)
|
|
|
|
# pkg-config file
|
|
configure_file( libclc.pc.in libclc.pc @ONLY )
|
|
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/libclc.pc DESTINATION "${CMAKE_INSTALL_DATADIR}/pkgconfig" )
|
|
|
|
if( ENABLE_RUNTIME_SUBNORMAL )
|
|
foreach( file IN ITEMS subnormal_use_default subnormal_disable )
|
|
link_bc(
|
|
TARGET ${file}
|
|
INPUTS ${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/${file}.ll
|
|
)
|
|
install(
|
|
FILES $<TARGET_PROPERTY:${file},TARGET_FILE>
|
|
DESTINATION "${CMAKE_INSTALL_DATADIR}/clc"
|
|
)
|
|
endforeach()
|
|
endif()
|
|
|
|
find_package( Python3 REQUIRED COMPONENTS Interpreter )
|
|
file( TO_CMAKE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/gen_convert.py script_loc )
|
|
add_custom_command(
|
|
OUTPUT convert.cl
|
|
COMMAND ${Python3_EXECUTABLE} ${script_loc} > convert.cl
|
|
DEPENDS ${script_loc} )
|
|
add_custom_target( generate-convert.cl DEPENDS convert.cl )
|
|
set_target_properties( generate-convert.cl PROPERTIES FOLDER "libclc/Sourcegenning" )
|
|
|
|
add_custom_command(
|
|
OUTPUT clc-convert.cl
|
|
COMMAND ${Python3_EXECUTABLE} ${script_loc} --clc > clc-convert.cl
|
|
DEPENDS ${script_loc} )
|
|
add_custom_target( generate-clc-convert.cl DEPENDS clc-convert.cl )
|
|
set_target_properties( generate-clc-convert.cl PROPERTIES FOLDER "libclc/Sourcegenning" )
|
|
|
|
if ( clspv-- IN_LIST LIBCLC_TARGETS_TO_BUILD OR clspv64-- IN_LIST LIBCLC_TARGETS_TO_BUILD )
|
|
add_custom_command(
|
|
OUTPUT clspv-convert.cl
|
|
COMMAND ${Python3_EXECUTABLE} ${script_loc} --clspv > clspv-convert.cl
|
|
DEPENDS ${script_loc} )
|
|
add_custom_target( generate-clspv-convert.cl DEPENDS clspv-convert.cl )
|
|
set_target_properties( generate-clspv-convert.cl PROPERTIES FOLDER "libclc/Sourcegenning" )
|
|
endif()
|
|
|
|
set_source_files_properties(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_cos.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_divide.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_exp.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_exp10.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_exp2.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_log.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_log10.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_log2.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_powr.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_recip.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_rsqrt.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_sin.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_sqrt.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/generic/lib/math/native_tan.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/amdgpu/lib/math/native_exp.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/amdgpu/lib/math/native_log.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/amdgpu/lib/math/native_log10.cl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/r600/lib/math/native_rsqrt.cl
|
|
PROPERTIES COMPILE_OPTIONS -fapprox-func
|
|
)
|
|
|
|
enable_testing()
|
|
|
|
foreach( t ${LIBCLC_TARGETS_TO_BUILD} )
|
|
message( STATUS "libclc target '${t}' is enabled" )
|
|
string( REPLACE "-" ";" TRIPLE ${t} )
|
|
list( GET TRIPLE 0 ARCH )
|
|
list( GET TRIPLE 1 VENDOR )
|
|
list( GET TRIPLE 2 OS )
|
|
|
|
set( opencl_dirs )
|
|
|
|
if( ${ARCH} STREQUAL r600 OR ${ARCH} STREQUAL amdgcn )
|
|
list( APPEND opencl_dirs amdgpu )
|
|
endif()
|
|
|
|
# Some targets' directories alias others
|
|
if( ${ARCH} STREQUAL nvptx OR ${ARCH} STREQUAL nvptx64 )
|
|
set( DARCH ptx )
|
|
elseif( ${ARCH} STREQUAL clspv OR ${ARCH} STREQUAL clspv64 )
|
|
set( DARCH clspv )
|
|
elseif( ${ARCH} STREQUAL spirv OR ${ARCH} STREQUAL spirv64 )
|
|
set( DARCH spirv )
|
|
elseif( ${ARCH} STREQUAL amdgcn-mesa3d )
|
|
set( DARCH amdgcn-amdhsa )
|
|
else()
|
|
set( DARCH ${ARCH} )
|
|
endif()
|
|
|
|
# Append a variety of target- and triple-based directories to search,
|
|
# increasing in specificity.
|
|
list( APPEND opencl_dirs ${DARCH} ${DARCH}-${OS} ${DARCH}-${VENDOR}-${OS} )
|
|
|
|
# The 'generic' directory contains all of the generic implementations of the
|
|
# builtins. It is included first so it has the lowest search priority,
|
|
# allowing targets to override builtins based on file names found later in
|
|
# the list of search directories.
|
|
# CLC builds all builtins for all targets, so unconditionally prepend the
|
|
# 'generic' directory.
|
|
set( clc_dirs generic ${opencl_dirs} )
|
|
# Some OpenCL targets don't build all builtins, in which case they don't want
|
|
# the 'generic' directory. Otherwise, prepend the 'generic' directory.
|
|
if ( NOT ARCH STREQUAL spirv AND NOT ARCH STREQUAL spirv64 AND
|
|
NOT ARCH STREQUAL clspv AND NOT ARCH STREQUAL clspv64)
|
|
list( PREPEND opencl_dirs generic )
|
|
endif()
|
|
|
|
set( clc_lib_files )
|
|
set( clc_gen_files clc-convert.cl )
|
|
|
|
libclc_configure_lib_source(
|
|
clc_lib_files
|
|
CLC_INTERNAL
|
|
LIB_ROOT_DIR clc
|
|
DIRS ${clc_dirs}
|
|
)
|
|
|
|
set( opencl_lib_files )
|
|
set( opencl_gen_files )
|
|
|
|
if( NOT ARCH STREQUAL spirv AND NOT ARCH STREQUAL spirv64 )
|
|
if( ARCH STREQUAL clspv OR ARCH STREQUAL clspv64 )
|
|
list( APPEND opencl_gen_files clspv-convert.cl )
|
|
else()
|
|
list( APPEND opencl_gen_files convert.cl )
|
|
if ( NOT ENABLE_RUNTIME_SUBNORMAL )
|
|
list( APPEND opencl_lib_files generic/lib/subnormal_use_default.ll )
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
libclc_configure_lib_source(
|
|
opencl_lib_files
|
|
DIRS ${opencl_dirs}
|
|
)
|
|
|
|
foreach( d ${${t}_devices} )
|
|
get_libclc_device_info(
|
|
TRIPLE ${t}
|
|
DEVICE ${d}
|
|
CPU cpu
|
|
ARCH_SUFFIX arch_suffix
|
|
CLANG_TRIPLE clang_triple
|
|
)
|
|
|
|
message( STATUS " device: ${d} ( ${${d}_aliases} )" )
|
|
|
|
if ( ARCH STREQUAL spirv OR ARCH STREQUAL spirv64 )
|
|
set( build_flags -O0 -finline-hint-functions -DCLC_SPIRV )
|
|
set( opt_flags )
|
|
set( spvflags --spirv-max-version=1.1 )
|
|
set( MACRO_ARCH SPIRV32 )
|
|
if( ARCH STREQUAL spirv64 )
|
|
set( MACRO_ARCH SPIRV64 )
|
|
endif()
|
|
elseif( ARCH STREQUAL clspv OR ARCH STREQUAL clspv64 )
|
|
set( build_flags "-Wno-unknown-assumption" -DCLC_CLSPV )
|
|
set( opt_flags -O3 )
|
|
set( MACRO_ARCH CLSPV32 )
|
|
if( ARCH STREQUAL clspv64 )
|
|
set( MACRO_ARCH CLSPV64 )
|
|
endif()
|
|
else()
|
|
set( build_flags )
|
|
set( opt_flags -O3 )
|
|
set( MACRO_ARCH ${ARCH} )
|
|
endif()
|
|
|
|
set( LIBCLC_ARCH_OBJFILE_DIR "${LIBCLC_OBJFILE_DIR}/${arch_suffix}" )
|
|
file( MAKE_DIRECTORY ${LIBCLC_ARCH_OBJFILE_DIR} )
|
|
|
|
string( TOUPPER "CLC_${MACRO_ARCH}" CLC_TARGET_DEFINE )
|
|
|
|
list( APPEND build_flags
|
|
-D${CLC_TARGET_DEFINE}
|
|
# All libclc builtin libraries see CLC headers
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/clc/include
|
|
)
|
|
|
|
if( NOT "${cpu}" STREQUAL "" )
|
|
list( APPEND build_flags -mcpu=${cpu} )
|
|
endif()
|
|
|
|
set( clc_build_flags ${build_flags} -DCLC_INTERNAL )
|
|
|
|
add_libclc_builtin_set(
|
|
CLC_INTERNAL
|
|
ARCH ${ARCH}
|
|
ARCH_SUFFIX clc-${arch_suffix}
|
|
TRIPLE ${clang_triple}
|
|
COMPILE_FLAGS ${clc_build_flags}
|
|
OPT_FLAGS ${opt_flags}
|
|
LIB_FILES ${clc_lib_files}
|
|
GEN_FILES ${clc_gen_files}
|
|
)
|
|
|
|
list( APPEND build_flags
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/generic/include
|
|
# FIXME: Fix libclc to not require disabling this noisy warning
|
|
-Wno-bitwise-conditional-parentheses
|
|
)
|
|
|
|
add_libclc_builtin_set(
|
|
ARCH ${ARCH}
|
|
ARCH_SUFFIX ${arch_suffix}
|
|
TRIPLE ${clang_triple}
|
|
COMPILE_FLAGS ${build_flags}
|
|
OPT_FLAGS ${opt_flags}
|
|
LIB_FILES ${opencl_lib_files}
|
|
GEN_FILES ${opencl_gen_files}
|
|
ALIASES ${${d}_aliases}
|
|
# Link in the CLC builtins and internalize their symbols
|
|
INTERNAL_LINK_DEPENDENCIES builtins.link.clc-${arch_suffix}
|
|
)
|
|
endforeach( d )
|
|
endforeach( t )
|