Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions recipes/llvm-wasm/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,12 @@ def _wasm_dist_components(build_dir: Path) -> list[str]:
return [
"clang-headers", "clang-cmake-exports", "clang-resource-headers",
"clangInterpreter",
# lld-cmake-exports installs lib/cmake/lld/LLDConfig.cmake; without
# it, consumers passing `-DLLD_DIR=$LLVM_BUILD_DIR/lib/cmake/lld`
# hit `Could not find a package configuration file provided by "LLD"`.
# lld-headers ships include/lld/ for `#include "lld/..."` from the
# consumer side.
"lld-cmake-exports", "lld-headers",
"cmake-exports", "llvm-headers",
] + _walk_built_libs(build_dir)

Expand Down
Loading