summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* common-source: fix create-spdx handlingdunfell-clang12Konrad Weihmann2023-10-271-0/+6
| | | | | | | | | | | | | | | | | | - do_create_spdx does have to wait till the shared source tree is properly populated - override the spdx class code detection to determine if sources are under work-shared. the core code does only look at WORKDIR, which isn’t overridden in every case, more likely only S and B are touched, which make the spdx class code assume that these are per-workdir sources and starts to remove the shared sources via bitbake’s cleandirs settings. Avoid that by let the code always handle recipes including common-source as shared sources. Closes #721 Signed-off-by: Konrad Weihmann <kweihmann@witekio.com>
* llvm-project-source: fix create-spdx handlingKonrad Weihmann2023-10-271-0/+2
| | | | | | | | as the recipe populates the shared source tree as part of do_patch, but create-spdx does only wait for do_unpack. Add an explicit dependency to wait to avoid race conditions Signed-off-by: Konrad Weihmann <kweihmann@witekio.com>
* nativesdk-clang-glue: delete spdx tasksAndres Beltran2023-10-271-0/+2
| | | | | | | | | | Extending poky's create-spdx class for SDKs results in a dependency loop: nativesdk-clang-glue.bb:do_create_spdx ->clang_git.bb:do_create_spdx -> clang-crosssdk_git.bb:do_create_spdx -> nativesdk-clang-glue.bb:do_create_spdx. Delete spdx tasks from nativesdk-clang-blue.bb Signed-off-by: Andres Beltran <abeltran@microsoft.com>
* compiler-rt-sanitizers: allow tsan to be built since clang 12 works byFlorian Wühr2023-05-162-41/+0
| | | | default
* clang.bbclass: Replace mcpu with mtune to match dunfellCaner Altinbasak2023-02-231-1/+1
| | | | | | | | dunfell meta/conf/machine/include/tune-cortexa57-cortexa53.inc defines mtune, not, mcpu. clang.bbclass attempts to remove these optimisations but it fails due to mismatch. Signed-off-by: Caner Altinbasak <cal@brightsign.biz>
* Backport fix for no matching constructorRandy MacLeod2023-01-172-0/+380
| | | | | | | | | | | | | | Fixes: ../../chrome/common/extensions/chrome_manifest_url_handlers.cc:101:7: error: no matching constructor for initialization of 'std::map<const char *, std::reference_wrapper<const absl::optionalstd::string>>' (aka 'map<const char , reference_wrapper<const optional<basic_string>>>') std::map<const char, as seen with chromium-109: https://github.com/OSSystems/meta-browser/issues/674 Thanks to Raphael Kubo da Costa for finding the commit to be backported! Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
* Update Readme.md - fix typofwuehr952022-10-131-1/+1
|
* nativesdk-clang: Fix build on hosts with older ncursesKhem Raj2022-09-284-0/+378
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Fix patch fuzzFlorian Wühr2022-08-304-23/+19
|
* Fix mesa build with newer clang (port fixes from mesa)Florian Wühr2022-08-305-0/+142
|
* clang: Backport libcxx-native build and dependency fixes from main.Chris Wulff2022-07-052-7/+22
| | | | Signed-off-by: Chris Wulff <chris.wulff@biamp.com>
* Merge pull request #565 from kraj/kraj/clang12Khem Raj2022-02-114-2/+28
|\ | | | | merge dunfell branch into clang12
| * Merge remote-tracking branch 'upstream/dunfell' into kraj/clang12kraj/clang12Khem Raj2022-02-110-0/+0
| |\
| | * fix openmp patch filenameAlexander Thoma2022-02-111-0/+0
| | |
| * | Merge remote-tracking branch 'upstream/dunfell' into kraj/clang12Khem Raj2022-02-102-26/+1
| |\|
| | * openmp: Move the openmp patch to common clangKhem Raj2022-02-102-4/+1
| | | | | | | | | | | | | | | | | | | | | This ensures the common llvm sources are identical and can be re-used. Signed-off-by: Khem Raj <raj.khem@gmail.com>
| * | Drop 0029-OpenMP-link-fix.patchKhem Raj2022-02-101-4/+0
| | | | | | | | | | | | | | | | | | This is not needed with clang12 Signed-off-by: Khem Raj <raj.khem@gmail.com>
| * | Merge remote-tracking branch 'upstream/dunfell' into kraj/clang12Khem Raj2022-02-102-0/+30
| |\|
| | * OpenMP Link fixJoel Winarske2022-02-102-0/+30
| | | | | | | | | | | | | | | | | | -fixes "version node not found for symbol omp_get_num_places_@@VERSION" Signed-off-by: Joel Winarske <joel.winarske@gmail.com>
| * | Merge remote-tracking branch 'upstream/dunfell' into clang12Khem Raj2022-02-045-3/+28
|/| | | |/
| * clang: Backport missing include fix from upstream.Raphael Kubo da Costa2021-11-012-0/+29
| | | | | | | | | | | | | | | | This affects LLVM < 12, so backport directly to dunfell. This adds a missing include that was breaking the build with recent libstdc++ releases on the host system (versions 11 and above). Signed-off-by: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
| * Compiler-rt: Backport clang 12 implementation to be able to build libtsanFlorian Wühr2021-09-223-41/+55
| |
| * chromium,gn: Fix typo in depends specKhem Raj2021-08-133-3/+3
| | | | | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
| * chromium,gn: Do not use runtime-llvm to remove libc++ native depsKhem Raj2021-08-133-9/+9
| | | | | | | | | | | | This override may not exist in old releases Signed-off-by: Khem Raj <raj.khem@gmail.com>
| * chromium,gn-native: Remove dependency on native libc++Khem Raj2021-08-136-12/+28
| | | | | | | | | | | | | | native versions of libcxx and compiler-rt are only available in honister and newer Signed-off-by: Khem Raj <raj.khem@gmail.com>
| * llvm: Do not crash on weird `bitcast <1 x i8*> to i8*`Naveen Saini2020-11-042-0/+52
| | | | | | | | | | | | | | | | | | This patch is already merged in llvm-11. Ref: https://github.com/llvm/llvm-project/commit/381054a989ebd0b585fee46f2a01a7c5de10acf7 Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
| * Remove compiler arguments from CLANG_TIDY_EXEMQueiros2020-10-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cclang-tidy doesn't process compilation flags like "-mlittle-endian" and "sysroot". The current export tries to use those flags, which makes clang-tidy fail like in the following example: > $ aarch64-poky-linux-clang-tidy fibonacci.cpp -mlittle-endian --sysroot=/opt/mgu22/sysroots/aarch64-poky-linux > LLVM ERROR: CommonOptionsParser: failed to parse command-line arguments. [CommonOptionsParser]: aarch64-poky-linux-clang-tidy: Unknown command line argument '-mlittle-endian'. Try: 'aarch64-poky-linux-clan$ > aarch64-poky-linux-clang-tidy: Did you mean '--list-checks'? > aarch64-poky-linux-clang-tidy: Unknown command line argument '--sysroot=/opt/mgu22/sysroots/aarch64-poky-linux'. Try: 'aarch64-poky-linux-clang-tidy --help' > aarch64-poky-linux-clang-tidy: Did you mean '--color=/opt/mgu22/sysroots/aarch64-poky-linux'? This change removes those compiler arguments: > $ aarch64-poky-linux-clang-tidy fibonacci.cpp > Error while trying to load a compilation database: > Could not auto-detect compilation database for file "fibonacci.cpp" > No compilation database found in /home/mqueiros/workspace/minimal-working-example/fibonacci or any parent directory > fixed-compilation-database: Error while opening fixed database: No such file or directory > json-compilation-database: Error while opening JSON database: No such file or directory > Running without flags. Signed-off-by: Mauro Queiros <maurofrqueiros@gmail.com> Backported from master to dunfell branch (cherry picked from commit 9d5fd8357d2f00a273f3d80fb37bb07cc537a155). Signed-off-by: Daniel Dittmann <daniel.dittmann@rohde-schwarz.com>
| * clang: Enable C functions for cl_khr_mipmap_image_write extensionNaveen Saini2020-10-192-0/+115
| | | | | | | | | | | | This patch is already merged in llvm-11. Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
| * drone: Fix branch name to detach from yoe branchKhem Raj2020-08-041-2/+6
| | | | | | | | | | | | | | Currently it expect the common branch names like master and dunfell match between meta-clang and yoe which may not be case Signed-off-by: Khem Raj <raj.khem@gmail.com>
| * clang: Add packageconfig to select default unwinderKhem Raj2020-08-011-0/+1
| | | | | | | | | | | | | | | | | | | | a choice is needed to be made for selecting unwinder library defaults ( --unwindlib ), by default we choose libgcc unwinder when packageconfig is disabled and only use llvm unwinder when this option is enabled Fixes Issue #332 Signed-off-by: Khem Raj <raj.khem@gmail.com>
| * libcxx: Fix linking based upon chosen compiler runtimeKhem Raj2020-08-011-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libcxx can use either libgcc_s or llvm libunwind for unwinder functionality, the defaults are platform dependent, therefore with this patch we make intentional choice based on RUNTIME settings chosen, e.g. when using GNU runtime we use libgcc and also ensure that it add right compiler options to build as well, since libcxx build looks C runtime by calling $($CC --print-libgcc-file-name) to build libc++abi.so unless we use right -rtlib option it will result in linking wrong library Enable RTTI as well do not enable llvm unwinder unless we chose llvm runtime, even that might not work since libpthread from glibc explicitly dlopens libgcc_s.so to enable unwinding https://github.com/bminor/glibc/blob/5f72f9800b250410cad3abfeeb09469ef12b2438/sysdeps/nptl/unwind-forcedunwind.c#L53...L58 Fixes Issue #332 Signed-off-by: Khem Raj <raj.khem@gmail.com>
| * drone: Switch triggers to use dunfell branchKhem Raj2020-07-101-3/+3
| | | | | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* | intel-mediasdk,optee-os-stm32mp: Use dynamic-layersKhem Raj2022-02-035-0/+4
| | | | | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* | chromium,gn: Do not depend on libc++ native recipesKhem Raj2021-08-134-2/+20
| | | | | | | | | | | | | | | | | | Master meta-browser has moved away from gcc completely even for native portions, but those changes require master branch of meta-clang as well for older layers where older than clang 13 is used, lets undo those changes Signed-off-by: Khem Raj <raj.khem@gmail.com>
* | Fix OP-TEE build with clangBernhard Rosenkränzer2021-07-142-0/+74
| | | | | | | | Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | Fix meta-intel/meta-clang collisionsBernhard Rosenkränzer2021-07-143-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | meta-intel assumes LLVM 10 or 11 is being built, and forces a version of SPIRV-LLVM-Translator that doesn't work with LLVM 12. Override this with an LLVM 12 compatible version. Also, meta-intel pulls in intel-mediasdk which, out of the box, doesn't build with compiler-rt. Add a patch to intel-mediasdk that fixes this. Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com> Upstream-Status: Pending
* | nonclangable: Remove no-integrated-as workarounds for opensslBernhard Rosenkränzer2021-07-141-11/+0
| | | | | | | | | | | | The problem is fixed and the workaround actually breaks things Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | valgrind: update builtin_setjmp to work with current clang, fix testsBernhard Rosenkränzer2021-07-143-39/+674
| | | | | | | | Signed-off-by: Bernhard Rosenkraenzer <bernhard.rosenkraenzer.ext@huawei.com>
* | valgrind: Allow building with clangBernhard Rosenkränzer2021-07-143-1/+127
| | | | | | | | | | | | | | | | Allow building valgrind with clang -- merge a patch from the Android NDK to fix the valgrind+clang aarch64 combo Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | Build profiling versions of compiler-rtBernhard Rosenkränzer2021-07-141-1/+1
| | | | | | | | | | | | | | | | Revert the upstream change moving the profiling version to compiler-rt-sanitizers - we need the profiling version (but not yet the sanitizers) for ACTS Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | nonclangable.conf: Remove workaround for a clang bug that has been fixedBernhard Rosenkränzer2021-07-141-3/+0
| | | | | | | | Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | Allow building cpufrequtils with clangBernhard Rosenkränzer2021-07-143-5/+34
| | | | | | | | | | | | | | Make sure invalid assembly code isn't included even in unreachable code; remove TOOLCHAIN=gcc workaround. Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | Allow building ppp with clangBernhard Rosenkränzer2021-07-141-4/+0
| | | | | | | | | | | | | | ppp's use of nested functions and gcc specific flags has been fixed. The workaround is no longer necessary. Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | Allow mongodb to be built with clangBernhard Rosenkränzer2021-07-141-2/+0
| | | | | | | | | | | | | | Building it with gcc was a workaround for a bug that has been fixed a long time ago. The workaround is no longer necessary. Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | libffi: Allow building with clang integrated-asBernhard Rosenkränzer2021-07-141-5/+0
| | | | | | | | | | | | | | The problem preventing this from succeeding earlier has already been fixed in libffi. There's no reason to keep the workaround. Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | Document why cpufrequtils isn't built with clangBernhard Rosenkränzer2021-07-141-0/+4
| | | | | | | | Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | clang: Allow building babeltrace2 with clangBernhard Rosenkränzer2021-07-143-2/+33
| | | | | | | | | | | | | | babeltrace2 failed to build with clang because of a bug in babeltrace. Fixing babeltrace is a better fix than forcing it to build with gcc. Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | clang: Fix pixman on 32-bit armBernhard Rosenkränzer2021-07-141-5/+5
| | | | | | | | | | | | Pixman needs workarounds for clang on 32-bit ARM Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | Drop unnecessary TOOLCHAIN-*="gcc" workaroundsBernhard Rosenkränzer2021-07-141-5/+8
| | | | | | | | Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>
* | Build u-boot-seco-imx with gccBernhard Rosenkränzer2021-07-141-0/+1
| | | | | | | | | | | | | | | | | | Makefiles in u-boot-seco-imx hardcode gcc use - make sure the requested compiler is available even with TOOLCHAIN="clang" Fixes https://git.ostc-eu.org/OSTC/OHOS/meta-clang/-/issues/2 Signed-off-by: Bernhard Rosenkränzer <bernhard.rosenkraenzer.ext@huawei.com>