mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
gcc: remove g77/f77
g77/f77 has been removed from gcc 4.0.0 via commit:
* b4117c30610 Makefile.def, [...]: Remove all mention of libf2c.
When set
FORTRAN = ",f77"
it complains with error:
| The following requested languages could not be built: f77
| Supported languages are: c,c,c++,fortran,go,lto,m2,objc,obj-c++
So remove g77/f77 from gcc recipes.
[1]: https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=b4117c30610
(From OE-Core rev: 6469c6a00066af24c87ec5dd7994ebbc610c3782)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -6,7 +6,7 @@ require gcc-shared-source.inc
|
|||||||
# These can be overridden by the version specific .inc file.
|
# These can be overridden by the version specific .inc file.
|
||||||
|
|
||||||
# gcc 3.x expects 'f77', 4.0 expects 'f95', 4.1 and 4.2 expect 'fortran'
|
# gcc 3.x expects 'f77', 4.0 expects 'f95', 4.1 and 4.2 expect 'fortran'
|
||||||
FORTRAN ?= ",f77"
|
FORTRAN ?= ",fortran"
|
||||||
LANGUAGES ?= "c,c++${FORTRAN}"
|
LANGUAGES ?= "c,c++${FORTRAN}"
|
||||||
|
|
||||||
EXTRA_OECONF_BASE ?= ""
|
EXTRA_OECONF_BASE ?= ""
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ RUNTIMELIBSSP ?= ""
|
|||||||
RUNTIMELIBSSP:mingw32 ?= "libssp"
|
RUNTIMELIBSSP:mingw32 ?= "libssp"
|
||||||
|
|
||||||
RUNTIMETARGET = "${RUNTIMELIBSSP} libstdc++-v3 libgomp libatomic ${RUNTIMELIBITM} \
|
RUNTIMETARGET = "${RUNTIMELIBSSP} libstdc++-v3 libgomp libatomic ${RUNTIMELIBITM} \
|
||||||
${@bb.utils.contains_any('FORTRAN', [',fortran',',f77'], 'libquadmath', '', d)} \
|
${@bb.utils.contains('FORTRAN', ',fortran', 'libquadmath', '', d)} \
|
||||||
"
|
"
|
||||||
# Only build libstdc++ for newlib
|
# Only build libstdc++ for newlib
|
||||||
RUNTIMETARGET:libc-newlib = "libstdc++-v3"
|
RUNTIMETARGET:libc-newlib = "libstdc++-v3"
|
||||||
@@ -164,8 +164,6 @@ PACKAGES = "\
|
|||||||
libstdc++-precompile-dev \
|
libstdc++-precompile-dev \
|
||||||
libstdc++-dev \
|
libstdc++-dev \
|
||||||
libstdc++-staticdev \
|
libstdc++-staticdev \
|
||||||
libg2c \
|
|
||||||
libg2c-dev \
|
|
||||||
libssp \
|
libssp \
|
||||||
libssp-dev \
|
libssp-dev \
|
||||||
libssp-staticdev \
|
libssp-staticdev \
|
||||||
@@ -196,15 +194,6 @@ FILES:${PN}-dbg += "\
|
|||||||
# So it needs to be added manually to images sadly.
|
# So it needs to be added manually to images sadly.
|
||||||
# RDEPENDS:${PN}-dbg += "python3-datetime"
|
# RDEPENDS:${PN}-dbg += "python3-datetime"
|
||||||
|
|
||||||
FILES:libg2c = "${target_libdir}/libg2c.so.*"
|
|
||||||
SUMMARY:libg2c = "Companion runtime library for g77"
|
|
||||||
FILES:libg2c-dev = "\
|
|
||||||
${libdir}/libg2c.so \
|
|
||||||
${libdir}/libg2c.a \
|
|
||||||
${libdir}/libfrtbegin.a \
|
|
||||||
"
|
|
||||||
SUMMARY:libg2c-dev = "Companion runtime library for g77 - development files"
|
|
||||||
|
|
||||||
FILES:libstdc++ = "${libdir}/libstdc++.so.*"
|
FILES:libstdc++ = "${libdir}/libstdc++.so.*"
|
||||||
SUMMARY:libstdc++ = "GNU standard C++ library"
|
SUMMARY:libstdc++ = "GNU standard C++ library"
|
||||||
FILES:libstdc++-dev = "\
|
FILES:libstdc++-dev = "\
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ PACKAGES = "\
|
|||||||
${PN} ${PN}-plugins ${PN}-symlinks \
|
${PN} ${PN}-plugins ${PN}-symlinks \
|
||||||
g++ g++-symlinks \
|
g++ g++-symlinks \
|
||||||
cpp cpp-symlinks \
|
cpp cpp-symlinks \
|
||||||
g77 g77-symlinks \
|
|
||||||
gfortran gfortran-symlinks \
|
gfortran gfortran-symlinks \
|
||||||
gcov gcov-symlinks \
|
gcov gcov-symlinks \
|
||||||
${PN}-doc \
|
${PN}-doc \
|
||||||
@@ -81,19 +80,6 @@ FILES:${PN}-plugins = "\
|
|||||||
"
|
"
|
||||||
ALLOW_EMPTY:${PN}-plugins = "1"
|
ALLOW_EMPTY:${PN}-plugins = "1"
|
||||||
|
|
||||||
FILES:g77 = "\
|
|
||||||
${bindir}/${TARGET_PREFIX}g77 \
|
|
||||||
${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f771 \
|
|
||||||
"
|
|
||||||
FILES:g77-symlinks = "\
|
|
||||||
${bindir}/g77 \
|
|
||||||
${bindir}/f77 \
|
|
||||||
"
|
|
||||||
RRECOMMENDS:g77 = "\
|
|
||||||
libg2c \
|
|
||||||
libg2c-dev \
|
|
||||||
"
|
|
||||||
|
|
||||||
FILES:gfortran = "\
|
FILES:gfortran = "\
|
||||||
${bindir}/${TARGET_PREFIX}gfortran \
|
${bindir}/${TARGET_PREFIX}gfortran \
|
||||||
${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f951 \
|
${libexecdir}/gcc/${TARGET_SYS}/${BINV}/f951 \
|
||||||
@@ -198,11 +184,6 @@ do_install () {
|
|||||||
# Not sure why we end up with these but we don't want them...
|
# Not sure why we end up with these but we don't want them...
|
||||||
rm -f ${TARGET_PREFIX}${TARGET_PREFIX}*
|
rm -f ${TARGET_PREFIX}${TARGET_PREFIX}*
|
||||||
|
|
||||||
# Symlinks so we can use these trivially on the target
|
|
||||||
if [ -e ${TARGET_PREFIX}g77 ]; then
|
|
||||||
ln -sf ${TARGET_PREFIX}g77 g77 || true
|
|
||||||
ln -sf g77 f77 || true
|
|
||||||
fi
|
|
||||||
if [ -e ${TARGET_PREFIX}gfortran ]; then
|
if [ -e ${TARGET_PREFIX}gfortran ]; then
|
||||||
ln -sf ${TARGET_PREFIX}gfortran gfortran || true
|
ln -sf ${TARGET_PREFIX}gfortran gfortran || true
|
||||||
ln -sf gfortran f95 || true
|
ln -sf gfortran f95 || true
|
||||||
|
|||||||
Reference in New Issue
Block a user