The dependence is needed since Utils includes VCSRevision.h, and other LLVM components that include this header also have the llvm_vcsrevision_h dependency. Fixes #60460. Reviewed By: #bolt, ayermolo Differential Revision: https://reviews.llvm.org/D143101
16 lines
197 B
CMake
16 lines
197 B
CMake
add_llvm_library(LLVMBOLTUtils
|
|
CommandLineOpts.cpp
|
|
Utils.cpp
|
|
|
|
DISABLE_LLVM_LINK_LLVM_DYLIB
|
|
|
|
LINK_LIBS
|
|
${LLVM_PTHREAD_LIB}
|
|
|
|
DEPENDS
|
|
llvm_vcsrevision_h
|
|
|
|
LINK_COMPONENTS
|
|
Support
|
|
)
|