aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/libs/context
diff options
context:
space:
mode:
authorheretic <heretic@yandex-team.ru>2022-02-10 16:45:43 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:43 +0300
commit397cbe258b9e064f49c4ca575279f02f39fef76e (patch)
treea0b0eb3cca6a14e4e8ea715393637672fa651284 /contrib/restricted/boost/libs/context
parent43f5a35593ebc9f6bcea619bb170394ea7ae468e (diff)
downloadydb-397cbe258b9e064f49c4ca575279f02f39fef76e.tar.gz
Restoring authorship annotation for <heretic@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/restricted/boost/libs/context')
-rw-r--r--contrib/restricted/boost/libs/context/ya.make190
1 files changed, 95 insertions, 95 deletions
diff --git a/contrib/restricted/boost/libs/context/ya.make b/contrib/restricted/boost/libs/context/ya.make
index 0ed9d696fe..2008b47d3d 100644
--- a/contrib/restricted/boost/libs/context/ya.make
+++ b/contrib/restricted/boost/libs/context/ya.make
@@ -1,9 +1,9 @@
-LIBRARY()
-
+LIBRARY()
+
LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
+
OWNER(
antoshkka
g:cpp-committee
@@ -11,11 +11,11 @@ OWNER(
)
INCLUDE(${ARCADIA_ROOT}/contrib/restricted/boost/boost_common.inc)
-
+
CFLAGS(
-DBOOST_CONTEXT_SOURCE
)
-
+
# https://www.boost.org/doc/libs/1_74_0/libs/context/doc/html/context/stack/sanitizers.html
IF (SANITIZER_TYPE == "address")
CFLAGS(
@@ -28,94 +28,94 @@ IF (SANITIZER_TYPE == "address")
)
ENDIF()
-IF (OS_WINDOWS)
- IF (ARCH_X86_64 OR ARCH_I386)
- MASMFLAGS('-DBOOST_CONTEXT_EXPORT= /safeseh')
- ENDIF()
- SRCS(
- src/windows/stack_traits.cpp
- )
- IF (ARCH_X86_64 OR ARCH_I386)
- IF (ARCH_X86_64)
- SRCS(
- src/asm/jump_x86_64_ms_pe_masm.masm
- src/asm/make_x86_64_ms_pe_masm.masm
- src/asm/ontop_x86_64_ms_pe_masm.masm
- )
- ENDIF()
- IF (ARCH_I386)
- SRCS(
- src/asm/jump_i386_ms_pe_masm.masm
- src/asm/make_i386_ms_pe_masm.masm
- src/asm/ontop_i386_ms_pe_masm.masm
- )
- ENDIF()
- ENDIF()
- IF (ARCH_ARM)
- SRCS(
- src/asm/jump_arm_aapcs_pe_armasm.masm
- src/asm/make_arm_aapcs_pe_armasm.masm
- src/asm/ontop_arm_aapcs_pe_armasm.masm
- )
- ENDIF()
-ELSEIF (OS_DARWIN OR OS_IOS)
- IF (ARCH_ARM7)
- SRCS(
- src/asm/jump_arm_aapcs_macho_gas.S
- src/asm/make_arm_aapcs_macho_gas.S
- src/asm/ontop_arm_aapcs_macho_gas.S
- )
- ELSEIF (ARCH_ARM64)
- SRCS(
- src/asm/jump_arm64_aapcs_macho_gas.S
- src/asm/make_arm64_aapcs_macho_gas.S
- src/asm/ontop_arm64_aapcs_macho_gas.S
- )
- ELSEIF (ARCH_I386)
- SRCS(
- src/asm/jump_i386_sysv_macho_gas.S
- src/asm/make_i386_sysv_macho_gas.S
- src/asm/ontop_i386_sysv_macho_gas.S
- )
- ELSE()
- SRCS(
- src/asm/jump_x86_64_sysv_macho_gas.S
- src/asm/make_x86_64_sysv_macho_gas.S
- src/asm/ontop_x86_64_sysv_macho_gas.S
+IF (OS_WINDOWS)
+ IF (ARCH_X86_64 OR ARCH_I386)
+ MASMFLAGS('-DBOOST_CONTEXT_EXPORT= /safeseh')
+ ENDIF()
+ SRCS(
+ src/windows/stack_traits.cpp
+ )
+ IF (ARCH_X86_64 OR ARCH_I386)
+ IF (ARCH_X86_64)
+ SRCS(
+ src/asm/jump_x86_64_ms_pe_masm.masm
+ src/asm/make_x86_64_ms_pe_masm.masm
+ src/asm/ontop_x86_64_ms_pe_masm.masm
+ )
+ ENDIF()
+ IF (ARCH_I386)
+ SRCS(
+ src/asm/jump_i386_ms_pe_masm.masm
+ src/asm/make_i386_ms_pe_masm.masm
+ src/asm/ontop_i386_ms_pe_masm.masm
+ )
+ ENDIF()
+ ENDIF()
+ IF (ARCH_ARM)
+ SRCS(
+ src/asm/jump_arm_aapcs_pe_armasm.masm
+ src/asm/make_arm_aapcs_pe_armasm.masm
+ src/asm/ontop_arm_aapcs_pe_armasm.masm
)
- ENDIF()
- SRCS(
- src/posix/stack_traits.cpp
- )
-ELSE()
- IF (ARCH_ARM7)
- SRCS(
- src/asm/jump_arm_aapcs_elf_gas.S
- src/asm/make_arm_aapcs_elf_gas.S
- src/asm/ontop_arm_aapcs_elf_gas.S
- )
- ELSEIF (ARCH_ARM64)
- SRCS(
- src/asm/jump_arm64_aapcs_elf_gas.S
- src/asm/make_arm64_aapcs_elf_gas.S
- src/asm/ontop_arm64_aapcs_elf_gas.S
- )
- ELSEIF (ARCH_I386)
- SRCS(
- src/asm/jump_i386_sysv_elf_gas.S
- src/asm/make_i386_sysv_elf_gas.S
- src/asm/ontop_i386_sysv_elf_gas.S
- )
- ELSE()
- SRCS(
- src/asm/jump_x86_64_sysv_elf_gas.S
- src/asm/make_x86_64_sysv_elf_gas.S
- src/asm/ontop_x86_64_sysv_elf_gas.S
- )
- ENDIF()
- SRCS(
- src/posix/stack_traits.cpp
- )
-ENDIF()
-
-END()
+ ENDIF()
+ELSEIF (OS_DARWIN OR OS_IOS)
+ IF (ARCH_ARM7)
+ SRCS(
+ src/asm/jump_arm_aapcs_macho_gas.S
+ src/asm/make_arm_aapcs_macho_gas.S
+ src/asm/ontop_arm_aapcs_macho_gas.S
+ )
+ ELSEIF (ARCH_ARM64)
+ SRCS(
+ src/asm/jump_arm64_aapcs_macho_gas.S
+ src/asm/make_arm64_aapcs_macho_gas.S
+ src/asm/ontop_arm64_aapcs_macho_gas.S
+ )
+ ELSEIF (ARCH_I386)
+ SRCS(
+ src/asm/jump_i386_sysv_macho_gas.S
+ src/asm/make_i386_sysv_macho_gas.S
+ src/asm/ontop_i386_sysv_macho_gas.S
+ )
+ ELSE()
+ SRCS(
+ src/asm/jump_x86_64_sysv_macho_gas.S
+ src/asm/make_x86_64_sysv_macho_gas.S
+ src/asm/ontop_x86_64_sysv_macho_gas.S
+ )
+ ENDIF()
+ SRCS(
+ src/posix/stack_traits.cpp
+ )
+ELSE()
+ IF (ARCH_ARM7)
+ SRCS(
+ src/asm/jump_arm_aapcs_elf_gas.S
+ src/asm/make_arm_aapcs_elf_gas.S
+ src/asm/ontop_arm_aapcs_elf_gas.S
+ )
+ ELSEIF (ARCH_ARM64)
+ SRCS(
+ src/asm/jump_arm64_aapcs_elf_gas.S
+ src/asm/make_arm64_aapcs_elf_gas.S
+ src/asm/ontop_arm64_aapcs_elf_gas.S
+ )
+ ELSEIF (ARCH_I386)
+ SRCS(
+ src/asm/jump_i386_sysv_elf_gas.S
+ src/asm/make_i386_sysv_elf_gas.S
+ src/asm/ontop_i386_sysv_elf_gas.S
+ )
+ ELSE()
+ SRCS(
+ src/asm/jump_x86_64_sysv_elf_gas.S
+ src/asm/make_x86_64_sysv_elf_gas.S
+ src/asm/ontop_x86_64_sysv_elf_gas.S
+ )
+ ENDIF()
+ SRCS(
+ src/posix/stack_traits.cpp
+ )
+ENDIF()
+
+END()