Skip to content

Commit 7182883

Browse files
committed
update_libssh2_ios more verbose
1 parent 7db1fac commit 7182883

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

script/update_libssh2_ios

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@ function setup ()
1818

1919
function build_ssh2 ()
2020
{
21+
echo "cp -R ${ROOT_PATH}/External/libssh2 ${ARCH_INSTALL_PATH}/libssh2"
22+
2123
cp -R "${ROOT_PATH}/External/libssh2" "${ARCH_INSTALL_PATH}/libssh2"
2224
pushd "${ARCH_INSTALL_PATH}/libssh2" > /dev/null
2325

2426
export CFLAGS="-arch ${ARCH} -fembed-bitcode -pipe -no-cpp-precomp -isysroot ${SDKROOT} -miphoneos-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"
2527
export CPPFLAGS="-arch ${ARCH} -fembed-bitcode -pipe -no-cpp-precomp -isysroot ${SDKROOT} -miphoneos-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"
2628

27-
./buildconf >> "${LOG}" 2>&1
29+
./buildconf | tee "${LOG}" 2>&1
2830
./configure --host=${HOST} --prefix="${ARCH_INSTALL_PATH}" --with-openssl --with-libssl-prefix="${INSTALL_PATH}" --disable-shared --enable-static >> "${LOG}" 2>&1
2931
make >> "${LOG}" 2>&1
3032
make install >> "${LOG}" 2>&1

0 commit comments

Comments
 (0)