mirror of
https://github.com/gosticks/SwiftGit2.git
synced 2025-10-16 11:55:34 +00:00
commit fbc6bb0c42c3f35725fbe98db4e537e22c9a3aed
Author: Ben Chatelain <ben@octop.ad>
Date: Mon Apr 11 09:40:00 2016 -0600
Add clean_externals script
commit f250c3dd8330732d27b49af93a7defae6df0629e
Author: Ben Chatelain <ben@octop.ad>
Date: Mon Apr 4 22:32:04 2016 -0600
Enable pipefail
commit 7813f12c75381d87d5ab345c591d00f7184ab150
Author: Ben Chatelain <ben@octop.ad>
Date: Mon Apr 4 22:19:42 2016 -0600
Configure cibuild to echo commands and fail on first error
commit 6f802a4b82c634f115b7f941d697ccee3f557a8b
Author: Ben Chatelain <ben@octop.ad>
Date: Sun Apr 3 13:01:45 2016 -0600
Overhaul cibuild
- Replaced xctool with xcodebuild + xcpretty
- Removed unused cruft and awk scripts
commit 5978a65d53def353ab34d63f02553d7ff7622d1f
Merge: 41d4e28 de7f644
Author: Ben Chatelain <ben@octop.ad>
Date: Sun Feb 28 21:06:56 2016 -0700
Merge pull request #554 from libgit2/piet/travis-matrix
Add matrix build for iOS and Mac
commit 1e3f6c5bdf38c1da26c7cc2b5bd4f6b3098bca2e
Author: Piet Brauer <piet@nerdishbynature.com>
Date: Wed Feb 24 17:40:52 2016 +0800
Add matrix build for iOS and Mac
commit 9c13681d06decdb8de327633dc80d9b742a54423
Author: Piet Brauer <piet@nerdishbynature.com>
Date: Wed Feb 24 16:23:11 2016 +0800
Enable Bitcode
56 lines
2.0 KiB
Bash
Executable File
56 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# source the common build functions
|
|
SCRIPT_DIR=$(dirname "$0")
|
|
source "${SCRIPT_DIR}/ios_build_functions.sh"
|
|
|
|
function setup ()
|
|
{
|
|
if [ -f "${ROOT_PATH}/External/libssh2-ios/lib/libssh2-ios.a" ]
|
|
then
|
|
echo "No update needed."
|
|
exit 0
|
|
fi
|
|
LIBRARY_NAME="libssh2"
|
|
}
|
|
|
|
function build_ssh2 ()
|
|
{
|
|
mkdir -p "${ROOT_PATH}/External/libssh2-ios/lib" "${ROOT_PATH}/External/libssh2-ios/lib" "${ROOT_PATH}/External/libssh2-ios/src"
|
|
|
|
rm -rf "${ROOT_PATH}/External/libssh2-ios/src/libssh2"
|
|
cp -R "${ROOT_PATH}/External/libssh2" "${ROOT_PATH}/External/libssh2-ios/src/"
|
|
pushd "${ROOT_PATH}/External/libssh2-ios/src/libssh2" > /dev/null
|
|
|
|
export CFLAGS="-arch ${ARCH} -fembed-bitcode -pipe -no-cpp-precomp -isysroot ${SDKROOT} -miphoneos-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"
|
|
export CPPFLAGS="-arch ${ARCH} -fembed-bitcode -pipe -no-cpp-precomp -isysroot ${SDKROOT} -miphoneos-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"
|
|
|
|
mkdir -p "${ROOT_PATH}/External/libssh2-ios/bin/${SDKNAME}-${ARCH}.sdk"
|
|
LOG="${ROOT_PATH}/External/libssh2-ios/bin/${SDKNAME}-${ARCH}.sdk/build-libssh2.log"
|
|
|
|
echo "${LOG}"
|
|
|
|
./buildconf >> "${LOG}" 2>&1
|
|
./configure --host=${HOST} --prefix="${ROOT_PATH}/External/libssh2-ios/bin/${SDKNAME}-${ARCH}.sdk" --with-openssl --with-libssl-prefix="${ROOT_PATH}/External/ios-openssl" --disable-shared --enable-static >> "${LOG}" 2>&1
|
|
make >> "${LOG}" 2>&1
|
|
make install >> "${LOG}" 2>&1
|
|
popd > /dev/null
|
|
|
|
BUILT_LIBS+=("${ROOT_PATH}/External/libssh2-ios/bin/${SDKNAME}-${ARCH}.sdk/lib/libssh2.a")
|
|
}
|
|
|
|
function fat_binary ()
|
|
{
|
|
echo "Building fat binary..."
|
|
|
|
lipo -create "${BUILT_LIBS[@]}" -output "${ROOT_PATH}/External/libssh2-ios/lib/libssh2-ios.a"
|
|
mkdir -p "${ROOT_PATH}/External/libssh2-ios/include/libssh2"
|
|
cp -R "${ROOT_PATH}/External/libssh2-ios/bin/iphonesimulator${SDKVERSION}-i386.sdk/include/libssh2.h" "${ROOT_PATH}/External/libssh2-ios/include/libssh2/"
|
|
|
|
echo "Building done."
|
|
}
|
|
|
|
build_all_archs setup build_ssh2 fat_binary
|