@@ -318,8 +318,8 @@ function(add_libc_fuzzer target_name)
318318 target_include_directories (${fq_target_name} SYSTEM PRIVATE ${LIBC_INCLUDE_DIR} )
319319 target_include_directories (${fq_target_name} PRIVATE ${LIBC_SOURCE_DIR} )
320320
321- target_link_libraries (${fq_target_name} PRIVATE
322- ${link_object_files}
321+ target_link_libraries (${fq_target_name} PRIVATE
322+ ${link_object_files}
323323 ${LIBC_FUZZER_LINK_LIBRARIES}
324324 )
325325
@@ -352,7 +352,7 @@ endif()
352352# system libc are linked in to the final executable. The final exe is fully
353353# statically linked. The libc that the final exe links to consists of only
354354# the object files of the DEPENDS targets.
355- #
355+ #
356356# Usage:
357357# add_integration_test(
358358# <target name>
@@ -462,15 +462,15 @@ function(add_integration_test test_name)
462462 target_compile_options (${fq_build_target_name} PRIVATE ${compile_options} )
463463
464464 if (LIBC_TARGET_ARCHITECTURE_IS_AMDGPU)
465- target_link_options (${fq_build_target_name} PRIVATE
465+ target_link_options (${fq_build_target_name} PRIVATE
466466 ${LIBC_COMPILE_OPTIONS_DEFAULT}
467467 -mcpu=${LIBC_GPU_TARGET_ARCHITECTURE} -flto
468468 "-Wl,-mllvm,-amdgpu-lower-global-ctor-dtor=0" -nostdlib -static
469469 "-Wl,-mllvm,-amdhsa-code-object-version=${LIBC_GPU_CODE_OBJECT_VERSION} " )
470470 elseif (LIBC_TARGET_ARCHITECTURE_IS_NVPTX)
471471 # We need to use the internal object versions for NVPTX.
472472 set (internal_suffix ".__internal__" )
473- target_link_options (${fq_build_target_name} PRIVATE
473+ target_link_options (${fq_build_target_name} PRIVATE
474474 ${LIBC_COMPILE_OPTIONS_DEFAULT}
475475 "-Wl,--suppress-stack-size-warning"
476476 -march=${LIBC_GPU_TARGET_ARCHITECTURE} -nostdlib -static
@@ -645,15 +645,15 @@ function(add_libc_hermetic_test test_name)
645645 endforeach ()
646646
647647 if (LIBC_TARGET_ARCHITECTURE_IS_AMDGPU)
648- target_link_options (${fq_build_target_name} PRIVATE
648+ target_link_options (${fq_build_target_name} PRIVATE
649649 ${LIBC_COMPILE_OPTIONS_DEFAULT}
650650 -mcpu=${LIBC_GPU_TARGET_ARCHITECTURE} -flto
651651 "-Wl,-mllvm,-amdgpu-lower-global-ctor-dtor=0" -nostdlib -static
652652 "-Wl,-mllvm,-amdhsa-code-object-version=${LIBC_GPU_CODE_OBJECT_VERSION} " )
653653 elseif (LIBC_TARGET_ARCHITECTURE_IS_NVPTX)
654654 # We need to use the internal object versions for NVPTX.
655655 set (internal_suffix ".__internal__" )
656- target_link_options (${fq_build_target_name} PRIVATE
656+ target_link_options (${fq_build_target_name} PRIVATE
657657 ${LIBC_COMPILE_OPTIONS_DEFAULT}
658658 "-Wl,--suppress-stack-size-warning"
659659 -march=${LIBC_GPU_TARGET_ARCHITECTURE} -nostdlib -static
0 commit comments