解决方案 »

  1.   

    附上build_native.sh文件的代码
    APPNAME="SimpleGame"# options
    NDK_ROOT=/cydrive/d/android-ndk-r4bbuildexternalsfromsource=usage(){
    cat << EOF
    usage: $0 [options]Build C/C++ code for $APPNAME using Android NDKOPTIONS:
    -s Build externals from source
    -h this help
    EOF
    }while getopts "sh" OPTION; do
    case "$OPTION" in
    s)
    buildexternalsfromsource=1
    ;;
    h)
    usage
    exit 0
    ;;
    esac
    done# read local.properties_LOCALPROPERTIES_FILE=$(dirname "$0")"/local.properties"
    if [ -f "$_LOCALPROPERTIES_FILE" ]
    then
        [ -r "$_LOCALPROPERTIES_FILE" ] || die "Fatal Error: $_LOCALPROPERTIES_FILE exists but is unreadable"    # strip out entries with a "." because Bash cannot process variables with a "."
        _PROPERTIES=`sed '/\./d' "$_LOCALPROPERTIES_FILE"`
        for line in "$_PROPERTIES"; do
            declare "$line";
        done
    fi# pathsif [ -z "${NDK_ROOT+aaa}" ];then
    echo "NDK_ROOT not defined. Please define NDK_ROOT in your environment or in local.properties"
    exit 1
    fiDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    # ... use paths relative to current directory
    COCOS2DX_ROOT=/cydrive/j/cocos2d-2.1rc0-x-2.1.2-hotfix/cocos2d-2.1rc0-x-2.1.2
    APP_ROOT="$DIR/.."
    APP_ANDROID_ROOT="$DIR"echo "NDK_ROOT = $NDK_ROOT"
    echo "COCOS2DX_ROOT = $COCOS2DX_ROOT"
    echo "APP_ROOT = $APP_ROOT"
    echo "APP_ANDROID_ROOT = $APP_ANDROID_ROOT"# make sure assets is exist
    if [ -d "$APP_ANDROID_ROOT"/assets ]; then
        rm -rf "$APP_ANDROID_ROOT"/assets
    fimkdir "$APP_ANDROID_ROOT"/assets# copy resources
    for file in "$APP_ROOT"/Resources/*
    do
    if [ -d "$file" ]; then
        cp -rf "$file" "$APP_ANDROID_ROOT"/assets
    fiif [ -f "$file" ]; then
        cp "$file" "$APP_ANDROID_ROOT"/assets
    fi
    done# copy icons (if they exist)
    file="$APP_ANDROID_ROOT"/assets/Icon-72.png
    if [ -f "$file" ]; then
    cp "$file" "$APP_ANDROID_ROOT"/res/drawable-hdpi/icon.png
    fi
    file="$APP_ANDROID_ROOT"/assets/Icon-48.png
    if [ -f "$file" ]; then
    cp "$file" "$APP_ANDROID_ROOT"/res/drawable-mdpi/icon.png
    fi
    file="$APP_ANDROID_ROOT"/assets/Icon-32.png
    if [ -f "$file" ]; then
    cp "$file" "$APP_ANDROID_ROOT"/res/drawable-ldpi/icon.png
    fi
    if [[ "$buildexternalsfromsource" ]]; then
        echo "Building external dependencies from source"
        "$NDK_ROOT"/ndk-build -C "$APP_ANDROID_ROOT" $* \
            "NDK_MODULE_PATH=${COCOS2DX_ROOT}:${COCOS2DX_ROOT}/cocos2dx/platform/third_party/android/source"
    else
        echo "Using prebuilt externals"
        "$NDK_ROOT"/ndk-build -C "$APP_ANDROID_ROOT" $* \
            "NDK_MODULE_PATH=${COCOS2DX_ROOT}:${COCOS2DX_ROOT}/cocos2dx/platform/third_party/android/prebuilt"
    fi
      

  2.   

    # pathsif [ -z "${NDK_ROOT+aaa}" ];then
    echo "NDK_ROOT not defined. Please define NDK_ROOT in your environment or in local.properties"
    exit 1
    fi在這裡(#paths下面)試試把NDK的路徑加進去
    例如:NDK_ROOT=/cygdrive/c/xxxxxxxxxxx