diff options
| author | Gyorgy Sarvari <skandigraun@gmail.com> | 2026-03-09 09:48:37 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-03-17 13:25:17 -0700 |
| commit | 19af995bc185735d5d880682ce057599fd0698dc (patch) | |
| tree | fc2b44a8bb9583333b1272488c2f7f30039d72ee | |
| parent | d4bc3fe962e3aef4a0dae43186a4929c1fa3b504 (diff) | |
| download | meta-openembedded-19af995bc185735d5d880682ce057599fd0698dc.tar.gz | |
aom: add bindir to SYSROOT
The cmake files files installed by this recipe check the existence of
the binaries in ${bindir}, and throw a fatal error in case it cannot
find the expexted files.
Due to this, it is not possible to include aom in other cmake project,
because it errors out:
The imported target "AOM::aomdec" references the file
|
| ".../recipe-sysroot/usr/bin/aomdec"
|
| but this file does not exist. Possible reasons include: ...
To avoid this error, incldue the content of bindir in the sysroot.
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-multimedia/recipes-multimedia/aom/aom_3.13.1.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/aom/aom_3.13.1.bb b/meta-multimedia/recipes-multimedia/aom/aom_3.13.1.bb index 141b02306d..b157dc79ec 100644 --- a/meta-multimedia/recipes-multimedia/aom/aom_3.13.1.bb +++ b/meta-multimedia/recipes-multimedia/aom/aom_3.13.1.bb | |||
| @@ -25,3 +25,5 @@ EXTRA_OECMAKE:append:riscv32 = " -DENABLE_RVV=OFF" | |||
| 25 | do_generate_toolchain_file:append() { | 25 | do_generate_toolchain_file:append() { |
| 26 | echo "set(AOM_AS_FLAGS --debug-prefix-map ${S}=${TARGET_DBGSRC_DIR})" >> ${WORKDIR}/toolchain.cmake | 26 | echo "set(AOM_AS_FLAGS --debug-prefix-map ${S}=${TARGET_DBGSRC_DIR})" >> ${WORKDIR}/toolchain.cmake |
| 27 | } | 27 | } |
| 28 | |||
| 29 | SYSROOT_DIRS += "${bindir}" | ||
