mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
gcc: add runtime packages to RRECOMMENDS
In order to use certain features of gcc, you need the corresponding runtime library. It seems to me that these ought to be installed by default when installing the compiler since they are required if certain command line options are used, so add them to RRECOMMENDS. I used RRECOMMENDS since some of these packages may or may not exist depending on architecture and build options; additionally it makes it possible to use BAD_RECOMMENDATIONS if you really want to exclude them. The impact of this isn't too bad in the context of an image providing on-target compilation - about a 30MB increase in size for an image containing gcc and g++. (From OE-Core rev: 658d9a764e91f394472c9082a3ed3fa7b9b417d2) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
7355e4ef97
commit
1c0fc7fcf7
@@ -42,6 +42,10 @@ FILES_${PN} = "\
|
||||
${gcclibdir}/${TARGET_SYS}/${BINV}/include-fixed \
|
||||
"
|
||||
INSANE_SKIP_${PN} += "dev-so"
|
||||
RRECOMMENDS_${PN} += "\
|
||||
libssp \
|
||||
libssp-dev \
|
||||
"
|
||||
|
||||
FILES_${PN}-dev = "\
|
||||
${gcclibdir}/${TARGET_SYS}/${BINV}/lib*${SOLIBSDEV} \
|
||||
@@ -69,10 +73,19 @@ FILES_g77-symlinks = "\
|
||||
${bindir}/g77 \
|
||||
${bindir}/f77 \
|
||||
"
|
||||
RRECOMMENDS_g77 = "\
|
||||
libg2c \
|
||||
libg2c-dev \
|
||||
"
|
||||
|
||||
FILES_gfortran = "\
|
||||
${bindir}/${TARGET_PREFIX}gfortran \
|
||||
${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f951 \
|
||||
"
|
||||
RRECOMMENDS_gfortran = "\
|
||||
libquadmath \
|
||||
libquadmath-dev \
|
||||
"
|
||||
FILES_gfortran-symlinks = "\
|
||||
${bindir}/gfortran \
|
||||
${bindir}/f95"
|
||||
@@ -98,6 +111,12 @@ FILES_g++-symlinks = "\
|
||||
${bindir}/c++ \
|
||||
${bindir}/g++ \
|
||||
"
|
||||
RRECOMMENDS_g++ = "\
|
||||
libstdc++ \
|
||||
libstdc++-dev \
|
||||
libatomic \
|
||||
libatomic-dev \
|
||||
"
|
||||
|
||||
FILES_${PN}-doc = "\
|
||||
${infodir} \
|
||||
|
||||
Reference in New Issue
Block a user