diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2023-02-07 21:14:00 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2023-02-07 21:14:00 +0300 |
commit | 9f448c9c675e670d53bba7a8d74a995b2d9a3606 (patch) | |
tree | 81cb5c300de0ed2dd55497e5f21602556f255e5d /contrib/restricted/boost/context | |
parent | 840348d6ec22ac423ac3bfb7f586936bdc5d7059 (diff) | |
download | ydb-9f448c9c675e670d53bba7a8d74a995b2d9a3606.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/restricted/boost/context')
6 files changed, 12 insertions, 12 deletions
diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt index 4595f731d0..2d0e3318d0 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.darwin.txt @@ -16,7 +16,7 @@ target_link_libraries(boost-context-fcontext_impl PUBLIC boost-context-impl_common ) target_sources(boost-context-fcontext_impl PRIVATE - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/jump_x86_64_sysv_macho_gas.S - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/make_x86_64_sysv_macho_gas.S - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/ontop_x86_64_sysv_macho_gas.S + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/jump_x86_64_sysv_macho_gas.S + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/make_x86_64_sysv_macho_gas.S + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/ontop_x86_64_sysv_macho_gas.S ) diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt index 56ba41acdb..c8156f04c3 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux-aarch64.txt @@ -17,7 +17,7 @@ target_link_libraries(boost-context-fcontext_impl PUBLIC boost-context-impl_common ) target_sources(boost-context-fcontext_impl PRIVATE - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/jump_arm64_aapcs_elf_gas.S - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/make_arm64_aapcs_elf_gas.S - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/ontop_arm64_aapcs_elf_gas.S + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/jump_arm64_aapcs_elf_gas.S + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/make_arm64_aapcs_elf_gas.S + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/ontop_arm64_aapcs_elf_gas.S ) diff --git a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt index b26660ffc6..c59cfb1515 100644 --- a/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt +++ b/contrib/restricted/boost/context/fcontext_impl/CMakeLists.linux.txt @@ -17,7 +17,7 @@ target_link_libraries(boost-context-fcontext_impl PUBLIC boost-context-impl_common ) target_sources(boost-context-fcontext_impl PRIVATE - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/jump_x86_64_sysv_elf_gas.S - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/make_x86_64_sysv_elf_gas.S - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/ontop_x86_64_sysv_elf_gas.S + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/jump_x86_64_sysv_elf_gas.S + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/make_x86_64_sysv_elf_gas.S + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/asm/ontop_x86_64_sysv_elf_gas.S ) diff --git a/contrib/restricted/boost/context/impl_common/CMakeLists.darwin.txt b/contrib/restricted/boost/context/impl_common/CMakeLists.darwin.txt index 057c1801c7..6c08263a3b 100644 --- a/contrib/restricted/boost/context/impl_common/CMakeLists.darwin.txt +++ b/contrib/restricted/boost/context/impl_common/CMakeLists.darwin.txt @@ -26,5 +26,5 @@ target_link_libraries(boost-context-impl_common PUBLIC restricted-boost-smart_ptr ) target_sources(boost-context-impl_common PRIVATE - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/posix/stack_traits.cpp + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/posix/stack_traits.cpp ) diff --git a/contrib/restricted/boost/context/impl_common/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/context/impl_common/CMakeLists.linux-aarch64.txt index 3ab7b0cbd2..52670b6933 100644 --- a/contrib/restricted/boost/context/impl_common/CMakeLists.linux-aarch64.txt +++ b/contrib/restricted/boost/context/impl_common/CMakeLists.linux-aarch64.txt @@ -27,5 +27,5 @@ target_link_libraries(boost-context-impl_common PUBLIC restricted-boost-smart_ptr ) target_sources(boost-context-impl_common PRIVATE - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/posix/stack_traits.cpp + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/posix/stack_traits.cpp ) diff --git a/contrib/restricted/boost/context/impl_common/CMakeLists.linux.txt b/contrib/restricted/boost/context/impl_common/CMakeLists.linux.txt index 3ab7b0cbd2..52670b6933 100644 --- a/contrib/restricted/boost/context/impl_common/CMakeLists.linux.txt +++ b/contrib/restricted/boost/context/impl_common/CMakeLists.linux.txt @@ -27,5 +27,5 @@ target_link_libraries(boost-context-impl_common PUBLIC restricted-boost-smart_ptr ) target_sources(boost-context-impl_common PRIVATE - \${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/posix/stack_traits.cpp + ${CMAKE_SOURCE_DIR}/contrib/restricted/boost/context/src/posix/stack_traits.cpp ) |