All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] gcc-cross-sdk: fix C++ headers include, bump PR.
@ 2010-07-20 11:26 Andreas Fenkart
  2010-07-20 11:26 ` [PATCH 1/1] " Andreas Fenkart
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Andreas Fenkart @ 2010-07-20 11:26 UTC (permalink / raw)
  To: openembedded-devel; +Cc: trini

Hi

The location of C++ headers has changed in gcc-cross-sdk_4.3.x
and above. See error message during packaging step:

NOTE: the following files were installed but not shipped in any package:
NOTE: /opt/angstrom/arm/arm-angstrom-linux-uclibcgnueabi/include/c++/4.3.2/ios
NOTE: /opt/angstrom/arm/arm-angstrom-linux-uclibcgnueabi/include/c++/4.3.2/map
NOTE: /opt/angstrom/arm/arm-angstrom-linux-uclibcgnueabi/include/c++/4.3.2/new
...


NOTE: the following files were installed but not shipped in any package:
NOTE:   /opt/angstrom/arm/include/c++/4.1.1/debug/deque
NOTE:   /opt/angstrom/arm/include/c++/4.1.1/debug/map.h
NOTE:   /opt/angstrom/arm/include/c++/4.1.1/debug/safe_base.h
NOTE:   /opt/angstrom/arm/include/c++/4.1.1/debug/set.h

This latter error occurs after removing the includedir directive:

--- a/recipes/gcc/gcc-package-sdk.inc
+++ b/recipes/gcc/gcc-package-sdk.inc
@@ -17,10 +17,8 @@ FILES_${PN} = "\
     ${gcclibdir}/${TARGET_SYS}/${BINV}/specs \
     ${gcclibdir}/${TARGET_SYS}/${BINV}/lib* \
     ${gcclibdir}/${TARGET_SYS}/${BINV}/include* \
-    ${includedir}/c++/${BINV} \
     ${prefix}/${TARGET_SYS}/bin/* \
     ${prefix}/${TARGET_SYS}/lib/* \


My includedir definition:
export includedir="/opt/angstrom/arm/include"

This seems related to patch:
gcc-cross-sdk: Fix relocation of the toolchain and bump PR.
sha1: f8bf7421bfe8eb86a3f17f269db4fb3667260c38

The patch places C++ headers directly into /include, no longer
/usr/include. So I adjusted the gcc-package-sdk.inc. I also
removed the now unecessary relocation step from
meta-toolchain.bb.

--- a/recipes/gcc/gcc-package-sdk.inc
+++ b/recipes/gcc/gcc-package-sdk.inc
@@ -17,10 +17,8 @@ FILES_${PN} = "\
     ${prefix}/${TARGET_SYS}/bin/* \
     ${prefix}/${TARGET_SYS}/lib/* \
-    ${prefix}/${TARGET_SYS}/usr/include/* \
+    ${prefix}/${TARGET_SYS}/include/* \
     "

Tested on ARM:
gcc-cross-sdk_4.1.1 -- ok
gcc-cross-sdk_4.2.4 -- ok
gcc-cross-sdk_4.3.1 -- needs, patch
gcc-cross-sdk_4.3.2 -- needs, patch
gcc-cross-sdk_4.3.3 -- needs, patch
gcc-cross-sdk_4.4.2 -- needs, patch

/Andreas



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-07-20 19:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-20 11:26 [PATCH 0/1] gcc-cross-sdk: fix C++ headers include, bump PR Andreas Fenkart
2010-07-20 11:26 ` [PATCH 1/1] " Andreas Fenkart
2010-07-20 18:29 ` [PATCH 0/1] " Tom Rini
2010-07-20 19:46 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.