summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorAlper Ak <alperyasinak1@gmail.com>2025-06-23 11:58:09 +0300
committerKhem Raj <raj.khem@gmail.com>2025-06-27 00:55:42 -0700
commit5b4e26adb80784be59e5b82c098ec050c93c1ca4 (patch)
tree52f780bf138beb6da1ca11f2c6b75da18a28e284 /meta-oe
parentdcc8eb8f44ce99b71e4dbe54f4adcfe36a0b0d2f (diff)
downloadmeta-openembedded-master.tar.gz
ace: Fix contains reference to TMPDIR [buildpaths] errorHEADmaster
- The project uses CCFLAGS instead of CXXFLAGS to add C++ compiler flags. Assign the value of CXXFLAGS to the CCFLAGS variable and export CCFLAGS for use in the build environment. It fixes the contains reference TMPDIR because DEBUG_PREFIX_MAP is already included in CXXFLAGS (poky/meta/conf/bitbake.conf) - Fix typo -Wnodeprecated-declarations -> -Wno-deprecated-declarations ERROR: ace-8.0.2-r0 do_package_qa: QA Issue: File /usr/lib/.debug/libACE_Compression.so.8.0.2 in package ace-dbg contains reference to TMPDIR [buildpaths] ERROR: ace-8.0.2-r0 do_package_qa: QA Issue: File /usr/lib/.debug/libACE_ETCL_Parser.so.8.0.2 in package ace-dbg contains reference to TMPDIR [buildpaths] ERROR: ace-8.0.2-r0 do_package_qa: QA Issue: File /usr/lib/.debug/libACE_ETCL.so.8.0.2 in package ace-dbg contains reference to TMPDIR [buildpaths] ERROR: ace-8.0.2-r0 do_package_qa: QA Issue: File /usr/lib/.debug/libACE.so.8.0.2 in package ace-dbg contains reference to TMPDIR [buildpaths] ERROR: ace-8.0.2-r0 do_package_qa: QA Issue: File /usr/lib/.debug/libACE_Monitor_Control.so.8.0.2 in package ace-dbg contains reference to TMPDIR [buildpaths] ERROR: ace-8.0.2-r0 do_package_qa: QA Issue: File /usr/lib/.debug/libACE_RLECompression.so.8.0.2 in package ace-dbg contains reference to TMPDIR [buildpaths] ERROR: ace-8.0.2-r0 do_package_qa: Fatal QA errors were found, failing task. Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Suggested-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-connectivity/ace/ace_8.0.2.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb b/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb
index b730b0a86c..35252c3efc 100644
--- a/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb
+++ b/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb
@@ -26,8 +26,10 @@ export ACE_ROOT = "${UNPACKDIR}/ACE_wrappers"
26 26
27inherit pkgconfig 27inherit pkgconfig
28 28
29CXXFLAGS:append = " -fpermissive -Wnodeprecated-declarations" 29CXXFLAGS:append = " -fpermissive -Wno-deprecated-declarations"
30CXX:append = " -ffile-prefix-map=${UNPACKDIR}= " 30CXX:append = " -ffile-prefix-map=${UNPACKDIR}= "
31export CCFLAGS = "${CXXFLAGS}"
32
31EXTRA_OEMAKE += "INSTALL_LIB=${baselib} install_rpath=0" 33EXTRA_OEMAKE += "INSTALL_LIB=${baselib} install_rpath=0"
32 34
33do_install() { 35do_install() {