summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/gcc/gcc-target.inc9
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc
index 8e9693b4cb..e9187fc444 100644
--- a/meta/recipes-devtools/gcc/gcc-target.inc
+++ b/meta/recipes-devtools/gcc/gcc-target.inc
@@ -33,7 +33,7 @@ PACKAGES = "\
33 ${PN} ${PN}-plugins ${PN}-symlinks \ 33 ${PN} ${PN}-plugins ${PN}-symlinks \
34 g++ g++-symlinks \ 34 g++ g++-symlinks \
35 cpp cpp-symlinks \ 35 cpp cpp-symlinks \
36 gfortran gfortran-symlinks \ 36 ${@bb.utils.contains('FORTRAN', ',fortran', 'gfortran gfortran-symlinks', '', d)} \
37 gcov gcov-symlinks \ 37 gcov gcov-symlinks \
38 ${PN}-doc \ 38 ${PN}-doc \
39 ${PN}-dev \ 39 ${PN}-dev \
@@ -60,7 +60,7 @@ RRECOMMENDS:${PN} += "\
60 libssp \ 60 libssp \
61 libssp-dev \ 61 libssp-dev \
62" 62"
63RDEPENDS:${PN} += "cpp" 63RDEPENDS:${PN} += "binutils cpp"
64 64
65FILES:${PN}-dev = "\ 65FILES:${PN}-dev = "\
66 ${gcclibdir}/${TARGET_SYS}/${BINV}/lib*${SOLIBSDEV} \ 66 ${gcclibdir}/${TARGET_SYS}/${BINV}/lib*${SOLIBSDEV} \
@@ -80,10 +80,15 @@ FILES:${PN}-plugins = "\
80" 80"
81ALLOW_EMPTY:${PN}-plugins = "1" 81ALLOW_EMPTY:${PN}-plugins = "1"
82 82
83INSANE_SKIP:${MLPREFIX}gfortran += "dev-deps"
83FILES:gfortran = "\ 84FILES:gfortran = "\
84 ${bindir}/${TARGET_PREFIX}gfortran \ 85 ${bindir}/${TARGET_PREFIX}gfortran \
85 ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f951 \ 86 ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f951 \
86" 87"
88RDEPENDS:gfortran = "\
89 gcc \
90 libgfortran-dev \
91"
87RRECOMMENDS:gfortran = "\ 92RRECOMMENDS:gfortran = "\
88 libquadmath \ 93 libquadmath \
89 libquadmath-dev \ 94 libquadmath-dev \