Script to build OpenSSL, nghttp2 and libcurl for MacOS (OS X), iOS and tvOS devices (x86_64, armv7, armv7s, arm64 and arm64e). Includes patching for tvOS to not use fork() and adds HTTP2 support with nghttp2.
The build.sh
script calls the three build scripts below (openssl, nghttp and curl) which pull down the specified release version. Versions are specified in the build.sh
script:
########################################
# EDIT this section to Select Versions #
########################################
OPENSSL="1.1.1b"
LIBCURL="7.64.1"
NGHTTP2="1.37.0"
########################################
The build script requires:
brew
to auto-install)The openssl-build.sh
script creates separate bitcode enabled target libraries for:
The tvOS build has fork() disable as the AppleTV tvOS does not support fork().
Edit build.sh
to change the version of OpenSSL that will be downloaded and built.
|____lib
|____libcrypto.a
|____libssl.a
NOTE: This script allows building the OpenSSL 1.1.1 and 1.0.2 series libraries. The 1.0.2 series will be end of life soon so it is recommended that you use the new long term support (LTS) 1.1.1 version.
The nghttp2-build.sh
script builds the nghttp2 libraries used by libcurl for the HTTP2 protocol.
Edit build.sh
to change the version of nghttp2 that will be downloaded and built. Include the relevant library into your project. The pkg-config tool is required. The build script tests for this and will attempt to install if it is missing. Rename the appropriate file to libnghttp2.a:
|____lib
|____libnghttp2_iOS.a
|____libnghttp2_Mac.a
|____libnghttp2_tvOS.a
DISABLE HTTP2: The nghttp2 build can be disabled by using build.sh --disable-http2
The libcurl-build.sh
script create separate bitcode enabled targets libraries for:
The curl build uses --with-ssl
pointing to the above OpenSSL builds and --with-nghttp2
pointing to the above nghttp2 builds..
Edit build.sh
to change the version of cURL that will be downloaded and built. Include the relevant library into your project. Rename the appropriate file to libcurl.a:
|____lib
|____libcurl_iOS.a
|____libcurl_Mac.a
|____libcurl_tvOS.a
NOTE: By default, this script only builds bitcode versions. To build non-bitcode versions uncommend this line:
NOBITCODE="yes"
Xcode7.1b or later is required for the tvOS SDK.
To include the OpenSSL and libcurl libraries in your Xcode projects, import the appropriate libraries for your project from:
See the example 'iOS Test App'.
Edit and Run build.sh
Libraries are created in curl/lib, openssl/*/lib, nghttp2/lib
Copy libs and headers to your project.
Import appropriate "libssl.a", "libcrypto.a", "libcurl.a", "libnghttp2.a".
Reference Headers, "Headers/openssl", "Headers/curl".
Specifying the flag "-lz" in "Other Linker Flags" (OTHER_LDFLAGS) setting in the "Linking" section in the Build settings of the target.
To use cURL, see below:
#include <curl/curl.h>
- (void)foo {
CURL* cURL = curl_easy_init();
...
}
NOTE: For iOS project with 64 bit targets, you may need to edit the curlbuild.h
header if you get an error simliar to this: 'curl_rule_01' declared as an array with a negative size
curlbuild.h
/* The size of `long', as computed by sizeof. */
// ADD Condition for 64 Bit
#ifdef __LP64__
#define CURL_SIZEOF_LONG 8
#else
#define CURL_SIZEOF_LONG 4
#endif
You may also need to edit this section:
/* Signed integral data type used for curl_off_t. */
//#define CURL_TYPEOF_CURL_OFF_T long
//ADD Condition for 64 Bit
#define CURL_TYPEOF_CURL_OFF_T int64_t
curl/curlbuild-ios-universal.h
is a universal example, tested on iOS platforms, made out of libcurl-7.50.3. You'd better check the diff between this file and curlbuild.h
before using it.
Example Xcode project "iOS Test App" is located in the examples folder. This project builds an iPhone Objective C App using libcurl, openssl, and nghttp2 libraries. The app provides a simple single text field interface for URL input and produces a curl respone.
|
|____archive
|
|____curl
| |____lib
| |____libcurl-build.sh
|
|____examples
| |____iOS Test App
|
|____nghttp2
| |____nghttp2-build.sh
|
|____openssl
| |____openssl-build.sh
|
|____build.sh
|____clean.sh
xcrun -sdk iphoneos lipo -info openssl/*/lib/*.a
xcrun -sdk iphoneos lipo -info nghttp2/lib/*.a
xcrun -sdk iphoneos lipo -info curl/lib/*.a
The build.sh
script will create an ./archive folder and store all the *.a libraries built along with the header files and a MacOS binaries for curl
and openssl
.
archive
|___libcurl-7.64.1-openssl-1.1.1b-nghttp2-1.37.0
|____libcrypto.a
|____libcurl_iOS.a
|____libcurl_Mac.a
|____libcurl_tvOS.a
|____libnghttp2_iOS.a
|____libnghttp2_Mac.a
|____libnghttp2_tvOS.a
|____libssl.a
|____curl*
|____openssl*
|____include
|____curl
|____openssl
The MIT License is used for this project. See LICENSE file.
Daniel Stenberg, @bagder, author and maintainer of cURL and libcurl https://daniel.haxx.se/
OpenSSL Software Foundation, maintainer of OpenSSL https://www.openssl.org/
Tatsuhiro Tsujikawa, @tatsuhiro_t, author and maintainer of nghttp2 library and tools https://github.com/nghttp2/nghttp2
Felix Schwarz, IOSPIRIT GmbH, @@felix_schwarz. https://gist.github.com/c61c0f7d9ab60f53ebb0.git
Stefan Arentz https://github.com/st3fan/ios-openssl
Felix Schulze https://github.com/x2on/OpenSSL-for-iPhone/blob/master/build-libssl.sh
James Moore https://gist.github.com/foozmeat/5154962
Peter Steinberger, PSPDFKit GmbH, @steipete. https://gist.github.com/felix-schwarz/c61c0f7d9ab60f53ebb0
Jason Cox, @jasonacox https://github.com/jasonacox/Build-OpenSSL-cURL
The AppleTVOS curl build may fail due to a macports "ar" program being picked up (it was in the path - You will see a log message about /opt/local/bin/ar failing in the curl log). A quick cleanup of the path (so that the build uses /usr/bin/ar) fixed the problem. - Thanks to Preston Jennings (prestonj) for this tip.
If the build.sh
script fails during iOS build phase with an error "C Compiler cannot create executables" this is likely due to not having a clean installation of the Xcode command line tools. Launch Xcode and re-install the command line tools.
If you see "FATAL ERROR" during the nghttp2 build phase, this is likely due to not having 'pkg-config' tools installed. Install manually or install 'brew' to have the script install it for you.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。