Browse Source

add check for static libstdc++ version, when icu4c is build

Waldemar Brodkorb 9 years ago
parent
commit
d410f7d94a
1 changed files with 20 additions and 0 deletions
  1. 20 0
      scripts/scan-pkgs.sh

+ 20 - 0
scripts/scan-pkgs.sh

@@ -27,6 +27,10 @@ if [[ -n $ADK_PACKAGE_KODI ]]; then
 	NEED_JAVA="$NEED_JAVA kodi"
 fi
 
+if [[ -n $ADK_PACKAGE_ICU4C ]]; then
+	NEED_STATIC_LIBSTDCXX="$NEED_STATIC_LIBSTDCXX icu4c"
+fi
+
 if [[ -n $ADK_PACKAGE_XKEYBOARD_CONFIG ]]; then
 	NEED_XKBCOMP="$NEED_XKBCOMP xkeyboard-config"
 fi
@@ -68,4 +72,20 @@ if [[ -n $NEED_JAVA ]]; then
 	fi
 fi
 
+if [[ -n $NEED_STATIC_LIBSTDCXX ]]; then
+cat >test.c <<-'EOF'
+	#include <stdio.h>
+	int
+	main()
+	{
+		return (0);
+	}
+EOF
+	if ! g++ -static-libstdc++ -o test test.c ; then
+		echo >&2 You need static version of libstdc++ installed to build $NEED_STATIC_LIBSTDCXX
+		out=1
+		rm test 2>/dev/null
+	fi
+fi
+
 exit $out