Files
clang-p2996/llvm/lib/Bitcode/Writer/CMakeLists.txt
Teresa Johnson 776476c282 Reapply "[MemProf] Use radix tree for alloc contexts in bitcode summaries" (#117395) (#117404)
This reverts commit fdb050a502, and
restores ccb4702038, with a fix for build
bot failures.

Specifically, add ProfileData to the dependences of the BitWriter
library, which was causing shared library builds of LLVM to fail.
Reproduced the failure with a shared library build and confirmed this
change fixes that build failure.
2024-11-22 16:18:30 -08:00

19 lines
245 B
CMake

add_llvm_component_library(LLVMBitWriter
BitWriter.cpp
BitcodeWriter.cpp
BitcodeWriterPass.cpp
ValueEnumerator.cpp
DEPENDS
intrinsics_gen
LINK_COMPONENTS
Analysis
Core
MC
Object
ProfileData
Support
TargetParser
)