ya.make 807 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Generated by devtools/yamaker.
  2. INCLUDE(${ARCADIA_ROOT}/build/platform/clang/arch.cmake)
  3. LIBRARY(clang_rt.safestack${CLANG_RT_SUFFIX})
  4. LICENSE(
  5. Apache-2.0 AND
  6. Apache-2.0 WITH LLVM-exception AND
  7. MIT AND
  8. NCSA
  9. )
  10. LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
  11. SUBSCRIBER(g:cpp-contrib)
  12. ADDINCL(
  13. contrib/libs/clang16-rt/lib
  14. )
  15. NO_COMPILER_WARNINGS()
  16. NO_UTIL()
  17. NO_SANITIZE()
  18. CFLAGS(
  19. -fno-builtin
  20. -fno-exceptions
  21. -fno-lto
  22. -fno-rtti
  23. -fno-stack-protector
  24. -fomit-frame-pointer
  25. -funwind-tables
  26. -fvisibility=hidden
  27. )
  28. SRCDIR(contrib/libs/clang16-rt/lib)
  29. SRCS(
  30. interception/interception_linux.cpp
  31. interception/interception_mac.cpp
  32. interception/interception_type_test.cpp
  33. interception/interception_win.cpp
  34. safestack/safestack.cpp
  35. )
  36. END()