diff options
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-target.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc index 3412aa89a8..3df21737e6 100644 --- a/meta/recipes-devtools/gcc/gcc-target.inc +++ b/meta/recipes-devtools/gcc/gcc-target.inc | |||
@@ -102,8 +102,16 @@ FILES_${PN}-doc = "\ | |||
102 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include/README \ | 102 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include/README \ |
103 | " | 103 | " |
104 | 104 | ||
105 | do_compile () { | ||
106 | oe_runmake all-host | ||
107 | } | ||
108 | |||
105 | do_install () { | 109 | do_install () { |
106 | oe_runmake 'DESTDIR=${D}' install-host | 110 | oe_runmake 'DESTDIR=${D}' install-host |
111 | |||
112 | # Add unwind.h, it comes from libgcc which we don't want to build again | ||
113 | install ${STAGING_LIBDIR_NATIVE}/${TARGET_SYS}/gcc/${TARGET_SYS}/${BINV}/include/unwind.h ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/ | ||
114 | |||
107 | # Info dir listing isn't interesting at this point so remove it if it exists. | 115 | # Info dir listing isn't interesting at this point so remove it if it exists. |
108 | if [ -e "${D}${infodir}/dir" ]; then | 116 | if [ -e "${D}${infodir}/dir" ]; then |
109 | rm -f ${D}${infodir}/dir | 117 | rm -f ${D}${infodir}/dir |