diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-08-11 16:11:23 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-08-11 19:40:36 +0300 |
commit | 5c37960d9507fac206f0b90d36f778db9fe2b6a5 (patch) | |
tree | 0f2853e9d28a0b8aded3abd2bec4f88cecae8df7 /bin/lo-all-static-libs | |
parent | aacdc61b5da2f30b16361b8e22ff081352fc69d6 (diff) |
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
Diffstat (limited to 'bin/lo-all-static-libs')
-rwxr-xr-x | bin/lo-all-static-libs | 2 |
1 files changed, 2 insertions, 0 deletions
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 \ |