diff options
author | Alper Ak <alperyasinak1@gmail.com> | 2025-06-23 18:56:21 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-06-26 07:26:19 -0700 |
commit | 3ccd1ffae81a1d2af6308c71d18c09ca44af20ec (patch) | |
tree | ed8065e04374d7ea5d4e5573d8ae525daede7a9a /meta-python | |
parent | fda19bec196fda3898c5ea12f0051ac2f4ea9fc6 (diff) | |
download | meta-openembedded-3ccd1ffae81a1d2af6308c71d18c09ca44af20ec.tar.gz |
android-tools: Drop workaround flag for incompatible pointer types
- The build completes successfully without adding the flag. In fact, the flag is never actually added. Because:
If we use the += operator to add flags to the CC variable early in the recipe, changes will be overwritten because BitBake applies class assignments to CC at a later stage, which replaces any previous modifications. We should use :append to ensure that additions are applied to the final value, after all assignments from core classes have been processed.
- Additionally, the standard way to pass compiler flags in C projects is to use CFLAGS.
Signed-off-by: Alper Ak <alperyasinak1@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
0 files changed, 0 insertions, 0 deletions