diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /contrib/libs/tbb | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) | |
download | ydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz |
Revert ymake build from ydb oss export
Diffstat (limited to 'contrib/libs/tbb')
-rw-r--r-- | contrib/libs/tbb/ya.make | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/contrib/libs/tbb/ya.make b/contrib/libs/tbb/ya.make deleted file mode 100644 index 595b2fc64a..0000000000 --- a/contrib/libs/tbb/ya.make +++ /dev/null @@ -1,91 +0,0 @@ -# Generated by devtools/yamaker from nixpkgs 22.11. - -LIBRARY() - -VERSION(2021.8.0) - -ORIGINAL_SOURCE(https://github.com/oneapi-src/oneTBB/archive/v2021.8.0.tar.gz) - -LICENSE(Apache-2.0) - -LICENSE_TEXTS(.yandex_meta/licenses.list.txt) - -ADDINCL( - GLOBAL contrib/libs/tbb/include -) - -NO_COMPILER_WARNINGS() - -NO_UTIL() - -CFLAGS( - -D__TBB_BUILD -) - -SRCS( - src/tbb/address_waiter.cpp - src/tbb/allocator.cpp - src/tbb/arena.cpp - src/tbb/arena_slot.cpp - src/tbb/concurrent_bounded_queue.cpp - src/tbb/dynamic_link.cpp - src/tbb/exception.cpp - src/tbb/global_control.cpp - src/tbb/governor.cpp - src/tbb/main.cpp - src/tbb/market.cpp - src/tbb/misc.cpp - src/tbb/misc_ex.cpp - src/tbb/observer_proxy.cpp - src/tbb/parallel_pipeline.cpp - src/tbb/private_server.cpp - src/tbb/profiling.cpp - src/tbb/queuing_rw_mutex.cpp - src/tbb/rml_tbb.cpp - src/tbb/rtm_mutex.cpp - src/tbb/rtm_rw_mutex.cpp - src/tbb/semaphore.cpp - src/tbb/small_object_pool.cpp - src/tbb/task.cpp - src/tbb/task_dispatcher.cpp - src/tbb/task_group_context.cpp - src/tbb/version.cpp -) - -IF (CLANG OR CLANG_CL) - IF (ARCH_I386 OR ARCH_I686 OR ARCH_X86_64) - CFLAGS( - -mrtm - -mwaitpkg - ) - ENDIF() -ENDIF() - -IF (OS_WINDOWS) - CFLAGS( - -DUSE_WINTHREAD - ) -ELSE() - CFLAGS( - -DUSE_PTHREAD - ) -ENDIF() - -IF (GCC) - CFLAGS( - -flifetime-dse=1 - -mrtm - ) -ENDIF() - -IF (NOT ARCH_ARM64) - CFLAGS( - -D__TBB_USE_ITT_NOTIFY - -DDO_ITT_NOTIFY - ) - SRCS( - src/tbb/itt_notify.cpp - ) -ENDIF() - -END() |