Fix build on Haiku. Some tools were missing libstdc++ and beos-compatible build platforms weren't setting the host compat lib dir at all, resulting in the icu build libs not being found.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33190 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2009-09-19 19:52:30 +00:00
parent 8362330647
commit b25f8906fb
3 changed files with 3 additions and 1 deletions

View File

@ -657,7 +657,7 @@ if $(HOST_PLATFORM_BEOS_COMPATIBLE) {
HOST_LIBROOT = root ;
HOST_STATIC_LIBROOT = $(HOST_LIBROOT) ;
HOST_LIBBE = be ;
HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR = ;
HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR = "export LIBRARY_PATH=$LIBRARY_PATH:$(HOST_BUILD_COMPATIBILITY_LIB_DIR)" ;
HOST_LIBRARY_NAME_MAP_input_server = /system/servers/input_server ;
} else {
HOST_LIBSTDC++ = stdc++ ;

View File

@ -16,5 +16,6 @@ BuildPlatformMain <build>gencfu :
<build>libicu-common.so
<build!stub>libicu-data.so
$(HOST_LIBSUPC++)
$(HOST_LIBSTDC++)
$(HOST_LIBROOT)
;

View File

@ -16,5 +16,6 @@ BuildPlatformMain <build>genctd :
<build>libicu-common.so
<build!stub>libicu-data.so
$(HOST_LIBSUPC++)
$(HOST_LIBSTDC++)
$(HOST_LIBROOT)
;