summaryrefslogtreecommitdiffstats
path: root/package/gcc
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2014-12-01 11:16:58 -0300
committerPeter Korsgaard <peter@korsgaard.com>2014-12-01 20:05:59 +0100
commit65d5ec37081c41c963c67454afae5765cdc4da47 (patch)
tree87ea2363048df886c90d7648c6da398274669f05 /package/gcc
parentf61e0a1fc8d1a0a0b088aa6f350c3f4b232000eb (diff)
downloadbuildroot-65d5ec37081c41c963c67454afae5765cdc4da47.tar.gz
buildroot-65d5ec37081c41c963c67454afae5765cdc4da47.zip
package/gcc/mpfr: remove deprecated features
Remove the fortran and objective C language support since these have been deprecated since more than a year ago. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/gcc')
-rw-r--r--package/gcc/Config.in.host19
-rw-r--r--package/gcc/gcc-final/gcc-final.mk10
2 files changed, 0 insertions, 29 deletions
diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
index 3bccf3646c..9d08ccbbfd 100644
--- a/package/gcc/Config.in.host
+++ b/package/gcc/Config.in.host
@@ -118,25 +118,6 @@ config BR2_TOOLCHAIN_BUILDROOT_CXX
comment "C++ support broken in uClibc with locale enabled with gcc 4.2"
depends on BR2_GCC_VERSION_4_2_2_AVR32_2_1_5 && BR2_TOOLCHAIN_BUILDROOT_LOCALE
-config BR2_INSTALL_OBJC
- bool "Enable Objective-C support"
- depends on !BR2_avr32
- depends on BR2_DEPRECATED_SINCE_2013_11
- help
- Enable the support for the Objective-C language in the
- cross-compiler, and install the Objective-C runtime to the
- target.
-
-config BR2_INSTALL_FORTRAN
- bool "Enable Fortran support"
- depends on !BR2_avr32
- depends on BR2_DEPRECATED_SINCE_2013_11
- select BR2_PACKAGE_LIBMPFR
- help
- Enable the support for the Fortran language in the
- cross-compiler, and install the Fortran runtime to the
- target.
-
config BR2_GCC_ENABLE_TLS
bool "Enable compiler tls support" if BR2_TOOLCHAIN_BUILDROOT_UCLIBC
default y
diff --git a/package/gcc/gcc-final/gcc-final.mk b/package/gcc/gcc-final/gcc-final.mk
index 9579b63507..46ef5c6bc0 100644
--- a/package/gcc/gcc-final/gcc-final.mk
+++ b/package/gcc/gcc-final/gcc-final.mk
@@ -44,8 +44,6 @@ endef
# Languages supported by the cross-compiler
GCC_FINAL_CROSS_LANGUAGES-y = c
GCC_FINAL_CROSS_LANGUAGES-$(BR2_INSTALL_LIBSTDCPP) += c++
-GCC_FINAL_CROSS_LANGUAGES-$(BR2_INSTALL_FORTRAN) += fortran
-GCC_FINAL_CROSS_LANGUAGES-$(BR2_INSTALL_OBJC) += objc
GCC_FINAL_CROSS_LANGUAGES = $(subst $(space),$(comma),$(GCC_FINAL_CROSS_LANGUAGES-y))
HOST_GCC_FINAL_CONF_OPTS = \
@@ -131,14 +129,6 @@ ifeq ($(BR2_GCC_ENABLE_OPENMP),y)
HOST_GCC_FINAL_USR_LIBS += libgomp
endif
-ifeq ($(BR2_INSTALL_FORTRAN),y)
-HOST_GCC_FINAL_USR_LIBS += libgfortran
-endif
-
-ifeq ($(BR2_INSTALL_OBJC),y)
-HOST_GCC_FINAL_USR_LIBS += libobjc
-endif
-
ifeq ($(BR2_GCC_ENABLE_LIBMUDFLAP),y)
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
HOST_GCC_FINAL_USR_LIBS += libmudflapth
OpenPOWER on IntegriCloud