More verbose
This commit is contained in:
parent
ae252f2d30
commit
86e3926087
|
@ -150,11 +150,19 @@ do
|
||||||
|
|
||||||
echo " Configure...\c"
|
echo " Configure...\c"
|
||||||
set +e
|
set +e
|
||||||
|
if [ "$1" == "verbose" ]; then
|
||||||
|
if [ "${ARCH}" == "x86_64" ]; then
|
||||||
|
./Configure no-asm darwin64-x86_64-cc --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS}
|
||||||
|
else
|
||||||
|
./Configure iphoneos-cross --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS}
|
||||||
|
fi
|
||||||
|
else
|
||||||
if [ "${ARCH}" == "x86_64" ]; then
|
if [ "${ARCH}" == "x86_64" ]; then
|
||||||
(./Configure no-asm darwin64-x86_64-cc --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS} > "${LOG}" 2>&1) & spinner
|
(./Configure no-asm darwin64-x86_64-cc --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS} > "${LOG}" 2>&1) & spinner
|
||||||
else
|
else
|
||||||
(./Configure iphoneos-cross --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS} > "${LOG}" 2>&1) & spinner
|
(./Configure iphoneos-cross --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS} > "${LOG}" 2>&1) & spinner
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if [ $? != 0 ]; then
|
if [ $? != 0 ]; then
|
||||||
echo "Problem while configure - Please check ${LOG}"
|
echo "Problem while configure - Please check ${LOG}"
|
||||||
|
@ -190,8 +198,13 @@ do
|
||||||
fi
|
fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
if [ "$1" == "verbose" ]; then
|
||||||
|
make install_sw
|
||||||
|
make clean
|
||||||
|
else
|
||||||
make install_sw >> "${LOG}" 2>&1
|
make install_sw >> "${LOG}" 2>&1
|
||||||
make clean >> "${LOG}" 2>&1
|
make clean >> "${LOG}" 2>&1
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "Build library for iOS..."
|
echo "Build library for iOS..."
|
||||||
|
|
Loading…
Reference in New Issue