This reverts commit 1ee32055ea.
We hit additional bot failures; in particular, Fuchsia's seems to be
related to how CMakeLists are ingested, see https://ci.chromium.org/ui/p/fuchsia/builders/toolchain.ci/clang-linux-x64/b8830380874445931681/overview
17 lines
388 B
CMake
17 lines
388 B
CMake
include(FeatureSummary)
|
||
|
||
find_program(LLVMNM_EXECUTABLE
|
||
NAMES llvm-nm
|
||
DOC "The llvm-nm executable"
|
||
)
|
||
|
||
include(FindPackageHandleStandardArgs)
|
||
find_package_handle_standard_args(LLVMNm
|
||
DEFAULT_MSG
|
||
LLVMNM_EXECUTABLE)
|
||
|
||
SET_PACKAGE_PROPERTIES(LLVMNm PROPERTIES
|
||
URL https://llvm.org/docs/CommandGuide/llvm-nm.html
|
||
DESCRIPTION "list LLVM bitcode and object file’s symbol table"
|
||
)
|