加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

XCode5下编译lua;curl;openssl;xvid;x264;ffmpeg;isofs;libuv FO

发布时间:2020-12-15 07:09:16 所属栏目:安全 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 #!/bin/sh# The MIT License (MIT)# # Copyright (c) 2013 Pi# # Permission is hereby granted,free of charge,to any person obtaining a copy of#

以下代码由PHP站长网 52php.cn收集自互联网

现在PHP站长网小编把它分享给大家,仅供参考

#!/bin/sh
# The MIT License (MIT)
# 
# Copyright (c) 2013 Pi
# 
# Permission is hereby granted,free of charge,to any person obtaining a copy of
# this software and associated documentation files (the "Software"),to deal in
# the Software without restriction,including without limitation the rights to
# use,copy,modify,merge,publish,distribute,sublicense,and/or sell copies of
# the Software,and to permit persons to whom the Software is furnished to do so,# subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS",WITHOUT WARRANTY OF ANY KIND,EXPRESS OR
# IMPLIED,INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,DAMAGES OR OTHER LIABILITY,WHETHER
# IN AN ACTION OF CONTRACT,TORT OR OTHERWISE,ARISING FROM,OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


###########################################################################
# HELPER FUNCTIONS
###########################################################################
iOS_SDK_MIN=4.3
cib_check_build_enviroment()
{
    if [ ! ( -e "`whereis make`" ) ] ; then
       echo "The 'Command Line Tools' of Xcode could not be found. Install this component in Xcode first."
       exit 1
    fi

    NCPU=`sysctl -n hw.ncpu`
    if test x$NJOB = x; then
        NJOB=$NCPU
    fi

    XCODE_PATH=`xcode-select --print-path`

    if [ -z "$XCODE_PATH" ]; then
        echo "Could not find XCode location (use xcode-select -switch to set the correct path)"
        exit 1
    fi

    iOS_SDK=`xcodebuild -showsdks | grep iphoneos | sed "s|.*iphoneos||"`

}

#cib_download_and_extract tar_url tar_name
cib_download_and_extract()
{
    URL=$1
    TAR=$2

    mkdir -p "${BUILD_TARBALLS_PATH}"
    
    set -e
    if [ ! -e ${BUILD_TARBALLS_PATH}/${TAR} ]; then
        echo "Downloading '${TAR}'"
        if /bin/sh -c "wget -V > /dev/null 2>&1"; then
            wget --no-check-certificate ${URL} -O "${BUILD_TARBALLS_PATH}/${TAR}"
        else
            if /bin/sh -c "curl -V > /dev/null 2>&1"; then
                curl -L ${URL} -o "${BUILD_TARBALLS_PATH}/${TAR}"
            else
                echo "NOT found command 'curl' or 'wget' for download tarball,exit"
                exit 1
            fi
        fi
    else
        echo "Using ${TAR}"
    fi

    mkdir -p "${BUILD_SRC_PATH}"
    tar xf "${BUILD_TARBALLS_PATH}/${TAR}" -C "${BUILD_SRC_PATH}"
}

#check and load require file FILE_PATH 
cib_load_required_file()
{
    FILE_PATH=$1
    if [ -f $FILE_PATH ]
    then
        echo "require '$FILE_PATH' successful. "
        . $FILE_PATH
    else
        echo "require '$FILE_PATH' not exist."
        return 1;
    fi
    return 0;
}

#usage_print
cib_usage_print()
{
    echo "usage: $0 lua|curl|openssl|uv"
}

# cib_module_lib_create "name1 name2"
cib_module_lib_create()
{
    libs=$1
    mkdir -p ${CURRENTPATH}/lib
    for lib_name in ${libs}; do
        lipo -create 

            `find ${BUILD_ROOT_PATH} -name lib${lib_name}.a` 

            -output ${CURRENTPATH}/lib/lib${lib_name}.a
    done
}

# cib_module_inc_copy "name1 name2"
cib_module_inc_copy()
{
    includes=$1
    mkdir -p ${CURRENTPATH}/include
    for inc in ${includes}; do
        cp -R ${BUILD_ROOT_PATH}/iPhoneSimulator-i386.sdk/include/${inc} ${CURRENTPATH}/include
    done
}

###########################################################################
#Build stage
###########################################################################

cib_check_build_enviroment

CURRENTPATH=`pwd`
BUILD_TARBALLS_PATH=${CURRENTPATH}/build/tarballs
BUILD_SRC_PATH=${CURRENTPATH}/build/src
BUILD_ROOT_PATH=${CURRENTPATH}/build/bin
MODULE=$1


if ! cib_load_required_file ./packages/$MODULE; then 
    cib_usage_print;
    exit 1;
fi

#begin download and build 
module_building

以上内容由PHP站长网【52php.cn】收集整理供大家参考研究

如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读