Clear HAIKU_SHARED_LIBSTDC++ and HAIKU_SHARED_LIBSUPC++ when the compiler

doesn't know them. Not sure why that was commented out -- only this way the
build system knows that the libs aren't available. Fixes the non-Haiku build.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35397 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2010-02-03 20:37:23 +00:00
parent 25daf1cf1e
commit ffe8b20cda
Vendored
+6 -9
View File
@@ -180,7 +180,6 @@ standard_gcc_settings()
$headers/$d"
done
# when not building the crosscompiler, to use cpp headers from
# tree first, but fallback to local C++ system headers (like <new>)
# if [ "$buildCrossTools" = "" ]; then
@@ -190,17 +189,15 @@ standard_gcc_settings()
if [ $HAIKU_STATIC_LIBSTDCXX = libstdc++.a ]; then
HAIKU_STATIC_LIBSTDCXX=
fi
# we build libstdc++.so ourselves, so we can leave it as is
# if [ $HAIKU_SHARED_LIBSTDCXX = libstdc++.so ]; then
# HAIKU_SHARED_LIBSTDCXX=
# fi
if [ $HAIKU_SHARED_LIBSTDCXX = libstdc++.so ]; then
HAIKU_SHARED_LIBSTDCXX=
fi
if [ $HAIKU_STATIC_LIBSUPCXX = libsupc++.a ]; then
HAIKU_STATIC_LIBSUPCXX=
fi
# we build libsupc++.so ourselves, so we can leave it as is
# if [ $HAIKU_SHARED_LIBSUPCXX = libsupc++.so ]; then
# HAIKU_SHARED_LIBSUPCXX=
# fi
if [ $HAIKU_SHARED_LIBSUPCXX = libsupc++.so ]; then
HAIKU_SHARED_LIBSUPCXX=
fi
;;
2.9*)
# check for correct (most up-to-date) legacy compiler and complain