diff options
author | Khem Raj <raj.khem@gmail.com> | 2008-08-20 22:52:51 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2008-08-20 22:52:51 +0000 |
commit | d49cee4689c6e667e0c4130b31a6859073090b52 (patch) | |
tree | cd6d82ea281fb1ee6a1a2a723f519ff262f67456 /packages/gcc/gcc-configure-common.inc | |
parent | 33bc0316c926255c879cd7415ca737ac6dc2764e (diff) |
Disable building objc for uclibc targets.
Right now it does not build for uclibc. If that it fixed then we can enable it.
Till then it stays.
Diffstat (limited to 'packages/gcc/gcc-configure-common.inc')
-rw-r--r-- | packages/gcc/gcc-configure-common.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/gcc/gcc-configure-common.inc b/packages/gcc/gcc-configure-common.inc index 1b3f398789..795911db74 100644 --- a/packages/gcc/gcc-configure-common.inc +++ b/packages/gcc/gcc-configure-common.inc @@ -9,10 +9,14 @@ JAVA_arm ?= "" JAVA_armeb ?= "" JAVA_mipsel ?= "" JAVA_sh3 ?= "" +OBJC_linux-uclibcgnueabi ?= "" +OBJC_linux-uclibc ?= "" +OBJC_avr ?= "" +OBJC ?= ",objc" + # gcc 3.x expects 'f77', 4.0 expects 'f95', 4.1 and 4.2 expect 'fortran' FORTRAN ?= ",f77" -LANGUAGES ?= "c,objc,c++${FORTRAN}${JAVA}" -LANGUAGES_avr32 = "c,c++${FORTRAN}${JAVA}" +LANGUAGES ?= "c,c++${OBJC}${FORTRAN}${JAVA}" EXTRA_OECONF_BASE ?= "" EXTRA_OECONF_PATHS ?= "" |