From 5c37960d9507fac206f0b90d36f778db9fe2b6a5 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 11 Aug 2014 16:11:23 +0300 Subject: First attempt at building NSS for iOS, too Let's hope that the various static archives that get built by the NSS build machinery contain what an iOS app that needs NSS services requires. I patch out the construction of any dylibs and executables in nss. We don't use any dylibs on iOS anyway, and of course don't need any NSS executables either. Change-Id: Ic977c6e3d6c4e953202e78f8e08c4e61f6c9cb1b --- bin/lo-all-static-libs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bin') diff --git a/bin/lo-all-static-libs b/bin/lo-all-static-libs index 77c0507b0d25..01fc3cfc8b51 100755 --- a/bin/lo-all-static-libs +++ b/bin/lo-all-static-libs @@ -42,6 +42,7 @@ ANDROID) ;; IOS) oslibs="$WORKDIR/UnpackedTarball/icu/source/stubdata/*.a" + nsslibs=`find $WORKDIR/UnpackedTarball/nss -name 'lib*.a'` ;; *) oslibs= @@ -52,6 +53,7 @@ echo $INSTDIR/$LIBO_LIB_FOLDER/lib*.a \ $foolibs \ $WORKDIR/LinkTarget/StaticLibrary/lib*.a \ $oslibs \ + $nsslibs \ $WORKDIR/UnpackedTarball/coinmp/Cbc/src/.libs/*.a \ $WORKDIR/UnpackedTarball/coinmp/Cgl/src/.libs/*.a \ $WORKDIR/UnpackedTarball/coinmp/Clp/src/.libs/*.a \ -- cgit