1add_llvm_library(LLVMBOLTProfile 2 BoltAddressTranslation.cpp 3 DataAggregator.cpp 4 DataReader.cpp 5 Heatmap.cpp 6 StaleProfileMatching.cpp 7 YAMLProfileReader.cpp 8 YAMLProfileWriter.cpp 9 10 NO_EXPORT 11 DISABLE_LLVM_LINK_LLVM_DYLIB 12 13 LINK_COMPONENTS 14 Demangle 15 MC 16 Support 17 TransformUtils 18 ) 19 20target_link_libraries(LLVMBOLTProfile 21 PRIVATE 22 LLVMBOLTCore 23 LLVMBOLTUtils 24 ) 25