
This reverts commit fdb050a5024320ec29d2edf3f2bc686c3a84abaa, and restores ccb4702038900d82d1041ff610788740f5cef723, 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.
19 lines
245 B
CMake
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
|
|
)
|