ya.make 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Generated by devtools/yamaker.
  2. INCLUDE(${ARCADIA_ROOT}/build/platform/clang/arch.cmake)
  3. LIBRARY(clang_rt.profile${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. OWNER(g:cpp-contrib)
  12. ADDINCL(
  13. contrib/libs/clang16-rt/include
  14. contrib/libs/clang16-rt/lib
  15. )
  16. NO_COMPILER_WARNINGS()
  17. NO_UTIL()
  18. NO_SANITIZE()
  19. CFLAGS(
  20. -DCOMPILER_RT_HAS_ATOMICS=1
  21. -DCOMPILER_RT_HAS_FCNTL_LCK=1
  22. -DCOMPILER_RT_HAS_UNAME=1
  23. -fno-lto
  24. -fno-exceptions
  25. )
  26. SRCS(
  27. GCDAProfiling.c
  28. InstrProfiling.c
  29. InstrProfilingBuffer.c
  30. InstrProfilingFile.c
  31. InstrProfilingInternal.c
  32. InstrProfilingMerge.c
  33. InstrProfilingMergeFile.c
  34. InstrProfilingNameVar.c
  35. InstrProfilingPlatformDarwin.c
  36. InstrProfilingPlatformFuchsia.c
  37. InstrProfilingPlatformLinux.c
  38. InstrProfilingPlatformOther.c
  39. InstrProfilingPlatformWindows.c
  40. InstrProfilingRuntime.cpp
  41. InstrProfilingUtil.c
  42. InstrProfilingValue.c
  43. InstrProfilingVersionVar.c
  44. InstrProfilingWriter.c
  45. )
  46. END()