summaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/gcc-uclibc-2.95.mk
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-10-19 19:20:38 +0000
committerEric Andersen <andersen@codepoet.org>2004-10-19 19:20:38 +0000
commitdbfd77f671a30254b954e4faa5da5e570b82dcab (patch)
tree30fe67a05fae86bc44b1f0e0f499cb61ac8c4d6b /toolchain/gcc/gcc-uclibc-2.95.mk
parent8500fcd5fd3d8ed19bf231032de3de74708b2c8f (diff)
downloadbuildroot-novena-dbfd77f671a30254b954e4faa5da5e570b82dcab.tar.gz
buildroot-novena-dbfd77f671a30254b954e4faa5da5e570b82dcab.zip
Kristian Hoffmann writes:
TARGET_LANGUAGES wasn't being set correctly if you enable GCJ or C++ in the buildroot config. It looks like INSTALL_LIBSTDCPP and INSTALL_LIBGCJ were renamed to BR2_INSTALL_... in the config system, but not in the gcc and ccache makefiles. -Kristian
Diffstat (limited to 'toolchain/gcc/gcc-uclibc-2.95.mk')
-rw-r--r--toolchain/gcc/gcc-uclibc-2.95.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gcc/gcc-uclibc-2.95.mk b/toolchain/gcc/gcc-uclibc-2.95.mk
index fa6e0869f..327a0d9a4 100644
--- a/toolchain/gcc/gcc-uclibc-2.95.mk
+++ b/toolchain/gcc/gcc-uclibc-2.95.mk
@@ -36,7 +36,7 @@ GCC_STRIP_HOST_BINARIES:=true
#
#############################################################
-ifeq ($(INSTALL_LIBSTDCPP),true)
+ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
TARGET_LANGUAGES:=c,c++
STLPORT_TARGET=stlport
else