On 26-02-2026 21:01, Randy MacLeod wrote:
On 2026-02-20 1:02 a.m., [email protected] wrote:
From: Deepesh Varatharajan<[email protected]>
This patch series introduces a test framework to run selftests for
target builds of Clang, LLVM, and LLD.
Summary of changes:
-Patch 1: Disable clang-tools-extra tests, as Clang's CMake cannot
detect the llvm-bcanalyzer target.
-Patch 2: Enabled the necessary CMake flags for clang, llvm & lld tests
-Patch 3: Selftest script for Clang, LLVM, and LLD including exclude list
-Patch 4: Fix rust build failure by replacing target llvm-config with native
Testing:
1. The test suite has been successfully validated on x86-64, arm64, riscv64
and arm32 for all Clang, LLD & LLVM components.
2. Clang and LLD tests passed successfully on x86. LLVM tests are skipped
on x86 since it's broken. A follow-up bug will be filed and addressed.
3. Clang, LLVM & LLD all together ~80K tests are there and we currently
~250 tests to exclude list which are failing (0.32%).
Impact on build time:
These builds were executed in a controlled environment without poky-sstate
enabled.
Default(without changes):
| Target | Run 1 | Run 2 | Run 3 | Average |
| --------- | ---------- | ---------- | ---------- | -------------- |
| llvm | 22m18.441s | 22m31.905s | 22m23.718s | 22m24.688s |
| clang | 30m09.774s | 30m22.680s | 30m15.312s | 30m15.922s |
| lld | 1m26.994s | 1m30.415s | 1m29.006s | 1m28.805s |
With the testsuite changes applied:
| Target | Run 1 | Run 2 | Run 3 | Average |
| --------- | ---------- | ---------- | ---------- | -------------- |
| llvm | 23m32.104s | 23m45.887s | 23m38.157s | 23m38.716s |
| clang | 30m31.402s | 30m46.198s | 30m39.445s | 30m39.015s |
| lld | 1m29.845s | 1m34.212s | 1m31.925s | 1m31.994s |
Comparison:
| Target | Default Avg | With Changes Avg | **Diff** |
| --------- | ----------- | ---------------- | ---------------- |
| llvm | 22m24.688s | 23m38.716s | +1m14.028s |
| clang | 30m15.922s | 30m39.015s | +0m23.093s |
| lld | 1m28.805s | 1m31.994s | +0m3.189s |
Impact on tmpdir size:
| Metric | Size |
| ------------------------------------ | ----- |
| Default target `tmpdir` size | 74 GB |
| Target `tmpdir` size (after changes) | 79 GB |
| Difference | +5 GB |
Nice data and nicely presented. Thanks.
I was wondering if there was any other impact due to the changes so I
added clang and llvm to my local.conf:
IMAGE_INSTALL:append = " clang llvm"
I know this isn't a common work-flow but I was curious.
I also added:
INHERIT += "buildhistory"
BUILDHISTORY_COMMIT = "1"
as explained here:
https://docs.yoctoproject.org/dev-manual/build-quality.html#enabling-and-disabling-build-history
I made sure there were -no- llvm or clang files in my tmp dir or
sstate-cache, then I ran:
❯ bitbake core-image-minimal
...
I applied your patches and built again:
❯ bitbake core-image-minimal
...
and ran (1).
My summary (with some AI bot help) is:
|+---------------------+----------+----------+-----------+------------+
| Package | Old (MB) | New (MB) | Diff (MB) | Change (%) |
+=====================+==========+==========+===========+============+
| clang/clang-dbg | 44.99 | 59.79 | +14.81 | +32.92% | |
clang/clang-dev | 30.22 | 30.22 | -0.00 | -0.00% | | clang/clang-tools
| 5.05 | 29.58 | +24.53 | +485.87% | | llvm/llvm-bin | 16.40 | 71.77 |
+55.36 | +337.50% | | llvm/llvm-dbg | 386.79 | 646.12 | +259.33 |
+67.05% | | llvm/llvm-dev | 32.67 | 33.67 | +1.00 | +3.05% | |
llvm/llvm-src | 387.54 | 389.44 | +1.90 | +0.49% | |
llvm/llvm-staticdev | 609.68 | 616.80 | +7.12 | +1.17% |
+---------------------+----------+----------+-----------+------------+|
I think you already have a solution to this target package size bloat
that you mentioned in private chat.
Please explain here and send a new patchset when ready.
Thank you, Randy, for putting in the effort to gather this data.
To address this impact, we implemented a fix that ensures the test suite
related flags are enabled
only during test execution, controlled through the
CLANG_ENABLE_TESTSUITE variable. The relevant
changes were made and sent V2.
Regards,
Deepesh
Thanks,
../Randy
1)
❯ buildhistory-diff -a
images/qemux86_64/glibc/core-image-minimal: IMAGESIZE changed from
273524 to 273528 (+0%)
packages/x86-64-v3-oe-linux/clang/clang-dbg: FILELIST: added
"/usr/bin/.debug/c-index-test"
packages/x86-64-v3-oe-linux/clang/clang-dbg: PKGSIZE changed from
47171320 to 62698976 (+33%)
packages/x86-64-v3-oe-linux/clang/clang-dbg: RRECOMMENDS: added
"libclang-dbg libxml2-dbg"
packages/x86-64-v3-oe-linux/clang/clang-dev: PKGSIZE changed from
31692933 to 31692927 (-0%)
packages/x86-64-v3-oe-linux/clang/clang-tools: RDEPENDS: added
"libxml2 (['>= 2.15.1']) libclang (['>= 21.1.8'])"
packages/x86-64-v3-oe-linux/clang/clang-tools: FILELIST: added
"/usr/bin/c-index-test"
packages/x86-64-v3-oe-linux/clang/clang-tools: PKGSIZE changed from
5294619 to 31019723 (+486%)
packages/x86-64-v3-oe-linux/llvm/llvm-bin: RDEPENDS: added "libzstd
(['>= 1.5.7']) zlib (['>= 1.3.2'])"
packages/x86-64-v3-oe-linux/llvm/llvm-bin: FILELIST: added
"/usr/bin/llvm-exegesis /usr/bin/obj2yaml /usr/bin/yaml2obj"
packages/x86-64-v3-oe-linux/llvm/llvm-bin: PKGSIZE changed from
17200574 to 75253038 (+338%)
packages/x86-64-v3-oe-linux/llvm/llvm-dbg: FILELIST: added
"/usr/bin/.debug/obj2yaml /usr/bin/.debug/llvm-exegesis
/usr/bin/.debug/yaml2obj"
packages/x86-64-v3-oe-linux/llvm/llvm-dbg: PKGSIZE changed from
405577928 to 677509048 (+67%)
packages/x86-64-v3-oe-linux/llvm/llvm-dev: FILELIST: added
"/usr/include/llvm-gtest/gtest/internal/gtest-param-util.h
/usr/include/llvm-gmock/gmock/internal/custom/gmock-generated-actions.h
/usr/include/llvm-gtest/gtest/internal/gtest-filepath.h
/usr/include/llvm-gmock/gmock/gmock-actions.h
/usr/include/llvm-gmock/gmock/gmock.h
/usr/include/llvm-gtest/gtest/gtest-test-part.h
/usr/include/llvm-gtest/gtest/gtest-param-test.h
/usr/include/llvm-gtest/gtest/internal/custom/gtest-port.h
/usr/include/llvm-gtest/gtest/internal/custom/raw-ostream.h
/usr/include/llvm-gtest/gtest/gtest-spi.h
/usr/include/llvm-gtest/gtest/gtest-assertion-result.h
/usr/include/llvm-gtest/gtest/internal/gtest-death-test-internal.h
/usr/include/llvm-gtest/gtest/internal/custom/README.md
/usr/include/llvm-gtest/gtest/gtest-printers.h
/usr/include/llvm-gtest/gtest/internal/gtest-type-util.h
/usr/include/llvm-gtest/gtest/internal/gtest-internal.h
/usr/include/llvm-gmock/gmock/internal/gmock-port.h
/usr/include/llvm-gtest/gtest/gtest_prod.h
/usr/include/llvm-gmock/gmock/gmock-more-actions.h
/usr/include/llvm-gmock/gmock/internal/gmock-pp.h
/usr/include/llvm-gtest/gtest/internal/custom/gtest-printers.h
/usr/include/llvm-gtest/gtest/gtest.h
/usr/include/llvm-gtest/gtest/gtest-typed-test.h
/usr/include/llvm-gmock/gmock/internal/custom/gmock-matchers.h
/usr/include/llvm-gtest/gtest/gtest-message.h
/usr/include/llvm-gmock/gmock/gmock-more-matchers.h
/usr/include/llvm-gmock/gmock/gmock-cardinalities.h
/usr/include/llvm-gtest/gtest/gtest-death-test.h
/usr/include/llvm-gtest/gtest/internal/custom/gtest.h
/usr/include/llvm-gtest/gtest/internal/gtest-port-arch.h
/usr/include/llvm-gtest/gtest/internal/gtest-string.h
/usr/include/llvm-gmock/gmock/internal/gmock-internal-utils.h
/usr/include/llvm-gmock/gmock/internal/custom/README.md
/usr/include/llvm-gmock/gmock/internal/custom/gmock-port.h
/usr/include/llvm-gtest/gtest/internal/gtest-port.h
/usr/include/llvm-gmock/gmock/gmock-spec-builders.h
/usr/include/llvm-gtest/gtest/gtest-matchers.h
/usr/include/llvm-gmock/gmock/gmock-matchers.h
/usr/include/llvm-gmock/gmock/gmock-function-mocker.h
/usr/include/llvm-gmock/gmock/gmock-nice-strict.h
/usr/include/llvm-gtest/gtest/gtest_pred_impl.h"
packages/x86-64-v3-oe-linux/llvm/llvm-dev: PKGSIZE changed from
34258809 to 35304811 (+3%)
packages/x86-64-v3-oe-linux/llvm/llvm-src: FILELIST: added
"/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/DisassemblerHelper.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest.cc
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/include/gmock/gmock-matchers.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/BenchmarkCode.h
/usr/src/debug/llvm/21.1.8/llvm/include/llvm/ADT/CombinationGenerator.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/RISCV/Target.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/RISCV/RISCVExegesisPreprocessing.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/ParallelSnippetGenerator.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SubprocessMemory.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/include/gmock/gmock-cardinalities.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SchedClassResolution.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/RegisterValue.h
/usr/src/debug/llvm/21.1.8/llvm/include/llvm/ADT/PackedVector.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/RegisterAliasing.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/wasm2yaml.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/xcoff2yaml.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/elf2yaml.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/PowerPC/Target.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/gtest-death-test.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/gtest-test-part.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SnippetFile.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/RegisterAliasing.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/src/gmock-internal-utils.cc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/PerfHelper.h
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/archive2yaml.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/UnitTestMain/TestMain.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SerialSnippetGenerator.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest-internal-inl.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SnippetRepetitor.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/AArch64/Target.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/ResultAggregator.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/ValidationEvent.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Analysis.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/ParallelSnippetGenerator.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/RISCV/RISCVExegesisPasses.h
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/obj2yaml.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Target.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/UopsBenchmarkRunner.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest-typed-test.cc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/CodeTemplate.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Target.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/UopsBenchmarkRunner.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/LatencyBenchmarkRunner.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest-test-part.cc
/usr/src/debug/llvm/21.1.8/llvm/include/llvm/Support/raw_os_ostream.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/src/gmock-spec-builders.cc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Error.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/gtest-matchers.h
/usr/src/debug/llvm/21.1.8/lib/Target/AArch64/AArch64GenExegesis.inc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SnippetGenerator.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest-matchers.cc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/DisassemblerHelper.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/X86/Target.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/gtest-printers.h
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/offload2yaml.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/dxcontainer2yaml.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/gtest-message.h
/usr/src/debug/llvm/21.1.8/lib/Target/X86/X86GenExegesis.inc
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest-assertion-result.cc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/RISCV/RISCVExegesisPostprocessing.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Assembler.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Analysis.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest-port.cc
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/internal/gtest-port.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/TargetSelect.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp
/usr/src/debug/llvm/21.1.8/llvm/lib/Testing/Support/Error.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/internal/gtest-internal.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/internal/gtest-filepath.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/internal/custom/raw-ostream.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SubprocessMemory.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/obj2yaml.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/minidump2yaml.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/src/gmock-matchers.cc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Error.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/include/gmock/internal/gmock-internal-utils.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/LlvmState.h
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/dwarf2yaml.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/MCInstrDescView.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest-filepath.cc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SerialSnippetGenerator.cpp
/usr/src/debug/llvm/21.1.8/llvm/lib/Testing/Annotations/Annotations.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SnippetRepetitor.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Assembler.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Clustering.h
/usr/src/debug/llvm/21.1.8/include/llvm/Config/TargetExegesis.def
/usr/src/debug/llvm/21.1.8/llvm/tools/yaml2obj/yaml2obj.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Mips/Target.cpp
/usr/src/debug/llvm/21.1.8/lib/Target/RISCV/RISCVGenExegesis.inc
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/coff2yaml.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/CodeTemplate.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/ProgressMeter.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/src/gmock.cc
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/include/gmock/gmock.h
/usr/src/debug/llvm/21.1.8/llvm/tools/obj2yaml/macho2yaml.cpp
/usr/src/debug/llvm/21.1.8/lib/Target/Mips/MipsGenExegesis.inc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SnippetGenerator.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/src/gmock-cardinalities.cc
/usr/src/debug/llvm/21.1.8/lib/Target/PowerPC/PPCGenExegesis.inc
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/llvm-exegesis.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/LatencyBenchmarkRunner.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SchedClassResolution.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/SnippetFile.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/LlvmState.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest-death-test.cc
/usr/src/debug/llvm/21.1.8/third-party/unittest/googlemock/include/gmock/gmock-spec-builders.h
/usr/src/debug/llvm/21.1.8/llvm/lib/Testing/Support/SupportHelpers.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/ValidationEvent.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/gtest.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/Clustering.cpp
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/internal/gtest-param-util.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/RegisterValue.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/src/gtest-printers.cc
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/gtest-assertion-result.h
/usr/src/debug/llvm/21.1.8/third-party/unittest/googletest/include/gtest/internal/gtest-death-test-internal.h
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/ResultAggregator.cpp
/usr/src/debug/llvm/21.1.8/llvm/tools/llvm-exegesis/lib/PerfHelper.cpp"
packages/x86-64-v3-oe-linux/llvm/llvm-src: PKGSIZE changed from
406369891 to 408360607 (+0%)
packages/x86-64-v3-oe-linux/llvm/llvm-staticdev: FILELIST: added
"/usr/lib/libllvm_gtest_main.a /usr/lib/libLLVMTestingAnnotations.a
/usr/lib/libLLVMExegesisMips.a /usr/lib/libLLVMExegesis.a
/usr/lib/libLLVMTestingSupport.a /usr/lib/libLLVMExegesisPowerPC.a
/usr/lib/libLLVMExegesisX86.a /usr/lib/libLLVMExegesisAArch64.a
/usr/lib/libllvm_gtest.a /usr/lib/libLLVMExegesisRISCV.a"
packages/x86-64-v3-oe-linux/llvm/llvm-staticdev: PKGSIZE changed from
639292726 to 646763728 (+1%)
Changes to packages/x86-64-v3-oe-linux/llvm (sysroot):
/usr/bin/bugpoint was added
/usr/bin/count was added
/usr/bin/dsymutil was added
/usr/bin/FileCheck was added
/usr/bin/llc was added
/usr/bin/lli was added
/usr/bin/lli-child-target was added
/usr/bin/llvm-addr2line was added
/usr/bin/llvm-ar was added
/usr/bin/llvm-as was added
/usr/bin/llvm-bcanalyzer was added
/usr/bin/llvm-bitcode-strip was added
/usr/bin/llvm-cat was added
/usr/bin/llvm-cfi-verify was added
/usr/bin/llvm-cgdata was added
/usr/bin/llvm-config was added
/usr/bin/llvm-cov was added
/usr/bin/llvm-c-test was added
/usr/bin/llvm-ctxprof-util was added
/usr/bin/llvm-cvtres was added
/usr/bin/llvm-cxxdump was added
/usr/bin/llvm-cxxfilt was added
/usr/bin/llvm-cxxmap was added
/usr/bin/llvm-debuginfo-analyzer was added
/usr/bin/llvm-debuginfod was added
/usr/bin/llvm-debuginfod-find was added
/usr/bin/llvm-diff was added
/usr/bin/llvm-dis was added
/usr/bin/llvm-dlang-demangle-fuzzer was added
/usr/bin/llvm-dlltool was added
/usr/bin/llvm-dwarfdump was added
/usr/bin/llvm-dwarfutil was added
/usr/bin/llvm-dwp was added
/usr/bin/llvm-exegesis was added
/usr/bin/llvm-extract was added
/usr/bin/llvm-gsymutil was added
/usr/bin/llvm-ifs was added
/usr/bin/llvm-install-name-tool was added
/usr/bin/llvm-isel-fuzzer was added
/usr/bin/llvm-itanium-demangle-fuzzer was added
/usr/bin/llvm-jitlink was added
/usr/bin/llvm-jitlink-executor was added
/usr/bin/llvm-lib was added
/usr/bin/llvm-libtool-darwin was added
/usr/bin/llvm-link was added
/usr/bin/llvm-lipo was added
/usr/bin/llvm-lit was added
/usr/bin/llvm-locstats was added
/usr/bin/llvm-lto was added
/usr/bin/llvm-lto2 was added
/usr/bin/llvm-mc was added
/usr/bin/llvm-mca was added
/usr/bin/llvm-microsoft-demangle-fuzzer was added
/usr/bin/llvm-ml was added
/usr/bin/llvm-ml64 was added
/usr/bin/llvm-modextract was added
/usr/bin/llvm-mt was added
/usr/bin/llvm-nm was added
/usr/bin/llvm-objcopy was added
/usr/bin/llvm-objdump was added
/usr/bin/llvm-opt-fuzzer was added
/usr/bin/llvm-opt-report was added
/usr/bin/llvm-otool was added
/usr/bin/llvm-pdbutil was added
/usr/bin/llvm-PerfectShuffle was added
/usr/bin/llvm-profdata was added
/usr/bin/llvm-profgen was added
/usr/bin/llvm-ranlib was added
/usr/bin/llvm-rc was added
/usr/bin/llvm-readelf was added
/usr/bin/llvm-readobj was added
/usr/bin/llvm-readtapi was added
/usr/bin/llvm-reduce was added
/usr/bin/llvm-remarkutil was added
/usr/bin/llvm-rtdyld was added
/usr/bin/llvm-rust-demangle-fuzzer was added
/usr/bin/llvm-sim was added
/usr/bin/llvm-size was added
/usr/bin/llvm-special-case-list-fuzzer was added
/usr/bin/llvm-split was added
/usr/bin/llvm-stress was added
/usr/bin/llvm-strings was added
/usr/bin/llvm-strip was added
/usr/bin/llvm-symbolizer was added
/usr/bin/llvm-tblgen was added
/usr/bin/llvm-test-mustache-spec was added
/usr/bin/llvm-tli-checker was added
/usr/bin/llvm-undname was added
/usr/bin/llvm-windres was added
/usr/bin/llvm-xray was added
/usr/bin/llvm-yaml-numeric-parser-fuzzer was added
/usr/bin/llvm-yaml-parser-fuzzer was added
/usr/bin/not was added
/usr/bin/obj2yaml was added
/usr/bin/opt was added
/usr/bin/reduce-chunk-list was added
/usr/bin/sancov was added
/usr/bin/sanstats was added
/usr/bin/split-file was added
/usr/bin/UnicodeNameMappingGenerator was added
/usr/bin/verify-uselistorder was added
/usr/bin/yaml2obj was added
/usr/bin/yaml-bench was added
/usr/include/llvm-gmock was added
/usr/include/llvm-gmock/gmock was added
/usr/include/llvm-gmock/gmock/gmock-actions.h was added
/usr/include/llvm-gmock/gmock/gmock-cardinalities.h was added
/usr/include/llvm-gmock/gmock/gmock-function-mocker.h was added
/usr/include/llvm-gmock/gmock/gmock.h was added
/usr/include/llvm-gmock/gmock/gmock-matchers.h was added
/usr/include/llvm-gmock/gmock/gmock-more-actions.h was added
/usr/include/llvm-gmock/gmock/gmock-more-matchers.h was added
/usr/include/llvm-gmock/gmock/gmock-nice-strict.h was added
/usr/include/llvm-gmock/gmock/gmock-spec-builders.h was added
/usr/include/llvm-gmock/gmock/internal was added
/usr/include/llvm-gmock/gmock/internal/custom was added
/usr/include/llvm-gmock/gmock/internal/custom/gmock-generated-actions.h
was added
/usr/include/llvm-gmock/gmock/internal/custom/gmock-matchers.h was added
/usr/include/llvm-gmock/gmock/internal/custom/gmock-port.h was added
/usr/include/llvm-gmock/gmock/internal/custom/README.md was added
/usr/include/llvm-gmock/gmock/internal/gmock-internal-utils.h was added
/usr/include/llvm-gmock/gmock/internal/gmock-port.h was added
/usr/include/llvm-gmock/gmock/internal/gmock-pp.h was added
/usr/include/llvm-gtest was added
/usr/include/llvm-gtest/gtest was added
/usr/include/llvm-gtest/gtest/gtest-assertion-result.h was added
/usr/include/llvm-gtest/gtest/gtest-death-test.h was added
/usr/include/llvm-gtest/gtest/gtest.h was added
/usr/include/llvm-gtest/gtest/gtest-matchers.h was added
/usr/include/llvm-gtest/gtest/gtest-message.h was added
/usr/include/llvm-gtest/gtest/gtest-param-test.h was added
/usr/include/llvm-gtest/gtest/gtest_pred_impl.h was added
/usr/include/llvm-gtest/gtest/gtest-printers.h was added
/usr/include/llvm-gtest/gtest/gtest_prod.h was added
/usr/include/llvm-gtest/gtest/gtest-spi.h was added
/usr/include/llvm-gtest/gtest/gtest-test-part.h was added
/usr/include/llvm-gtest/gtest/gtest-typed-test.h was added
/usr/include/llvm-gtest/gtest/internal was added
/usr/include/llvm-gtest/gtest/internal/custom was added
/usr/include/llvm-gtest/gtest/internal/custom/gtest.h was added
/usr/include/llvm-gtest/gtest/internal/custom/gtest-port.h was added
/usr/include/llvm-gtest/gtest/internal/custom/gtest-printers.h was added
/usr/include/llvm-gtest/gtest/internal/custom/raw-ostream.h was added
/usr/include/llvm-gtest/gtest/internal/custom/README.md was added
/usr/include/llvm-gtest/gtest/internal/gtest-death-test-internal.h was
added
/usr/include/llvm-gtest/gtest/internal/gtest-filepath.h was added
/usr/include/llvm-gtest/gtest/internal/gtest-internal.h was added
/usr/include/llvm-gtest/gtest/internal/gtest-param-util.h was added
/usr/include/llvm-gtest/gtest/internal/gtest-port-arch.h was added
/usr/include/llvm-gtest/gtest/internal/gtest-port.h was added
/usr/include/llvm-gtest/gtest/internal/gtest-string.h was added
/usr/include/llvm-gtest/gtest/internal/gtest-type-util.h was added
/usr/lib/libLLVMExegesis.a was added
/usr/lib/libLLVMExegesisAArch64.a was added
/usr/lib/libLLVMExegesisMips.a was added
/usr/lib/libLLVMExegesisPowerPC.a was added
/usr/lib/libLLVMExegesisRISCV.a was added
/usr/lib/libLLVMExegesisX86.a was added
/usr/lib/libllvm_gtest.a was added
/usr/lib/libllvm_gtest_main.a was added
/usr/lib/libLLVMTestingAnnotations.a was added
/usr/lib/libLLVMTestingSupport.a was added
Changes to packages/x86_64-linux/llvm-native (sysroot):
/usr/bin/llvm-exegesis was added
/usr/lib/libLLVMExegesis.a was added
/usr/lib/libLLVMExegesisAArch64.a was added
/usr/lib/libLLVMExegesisMips.a was added
/usr/lib/libLLVMExegesisPowerPC.a was added
/usr/lib/libLLVMExegesisRISCV.a was added
/usr/lib/libLLVMExegesisX86.a was added
Deepesh Varatharajan (4):
clang-tools-extra: disable tests
clang: Enable cmake flags for llvm, clang, lld tests
oeqa/selftest/clang: Add oe-seltests for Clang/LLVM/LLD
rust: Fix rust build failure
meta/lib/oeqa/selftest/cases/clang.py | 298 ++++++++++++++++++
.../0042-guard-clang-tools-extra-test.patch | 74 +++++
meta/recipes-devtools/clang/clang_git.bb | 2 +
meta/recipes-devtools/clang/common.inc | 1 +
meta/recipes-devtools/clang/lld_git.bb | 2 +
meta/recipes-devtools/clang/llvm_git.bb | 8 +-
meta/recipes-devtools/rust/rust_1.93.0.bb | 5 +-
7 files changed, 387 insertions(+), 3 deletions(-)
create mode 100644 meta/lib/oeqa/selftest/cases/clang.py
create mode 100644
meta/recipes-devtools/clang/clang/0042-guard-clang-tools-extra-test.patch
--
# Randy MacLeod
# Wind River Linux
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#232178):
https://lists.openembedded.org/g/openembedded-core/message/232178
Mute This Topic: https://lists.openembedded.org/mt/117906162/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-