ya.make 837 B

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