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
1 change: 1 addition & 0 deletions conf/template/bblayers.conf.sample
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,4 @@ BBLAYERS =+ " \
${@d.getVar('MANIFEST_PATH_REGION_CONFIG') if d.getVar('MANIFEST_PATH_REGION_CONFIG') is not None and os.path.isfile(d.getVar('MANIFEST_PATH_REGION_CONFIG') + '/conf/layer.conf') else ''} \
"
BBLAYERS =+ "${@d.getVar('MANIFEST_PATH_META_MIXIN') if d.getVar('MANIFEST_PATH_META_MIXIN') is not None and os.path.isfile(d.getVar('MANIFEST_PATH_META_MIXIN') + '/conf/layer.conf') else ''}"
BBLAYERS =+ "${@d.getVar('MANIFEST_PATH_META_CLANG') if d.getVar('MANIFEST_PATH_META_CLANG') is not None and os.path.isfile(d.getVar('MANIFEST_PATH_META_CLANG') + '/conf/layer.conf') else ''}"
Copy link

Copilot AI Dec 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description mentions "compiler version 1.72.0", but 1.72.0 is a Rust compiler version, not a clang version. Meta-clang provides the LLVM clang compiler toolchain, not Rust. If secclient-rs requires Rust 1.72.0, this should be clarified. Additionally, meta-clang typically requires specific dependencies and layer ordering (it often needs to come early in BBLAYERS, before layers that might use it). Placing it at the end of the configuration file may cause build issues if other layers need to use clang as their compiler.

Copilot uses AI. Check for mistakes.