1#!/bin/sh 2# 3# Copyright (C) 2011 The Android Open Source Project 4# 5# Licensed under the Apache License, Version 2.0 (the "License"); 6# you may not use this file except in compliance with the License. 7# You may obtain a copy of the License at 8# 9# http://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, software 12# distributed under the License is distributed on an "AS IS" BASIS, 13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14# See the License for the specific language governing permissions and 15# limitations under the License. 16# 17# This script is used to rebuild the host 'ndk-stack' tool from the 18# sources under sources/host-tools/ndk-stack. 19# 20# Note: The tool is installed under prebuilt/$HOST_TAG/bin/ndk-stack 21# by default. 22# 23PROGDIR=$(dirname $0) 24. $PROGDIR/prebuilt-common.sh 25 26PROGRAM_PARAMETERS="" 27PROGRAM_DESCRIPTION=\ 28"This script is used to rebuild the host ndk-stack binary program." 29 30register_jobs_option 31 32BUILD_DIR= 33register_var_option "--build-dir=<path>" BUILD_DIR "Specify build directory" 34 35NDK_DIR=$ANDROID_NDK_ROOT 36register_var_option "--ndk-dir=<path>" NDK_DIR "Place binary in NDK installation path" 37 38GNUMAKE= 39register_var_option "--make=<path>" GNUMAKE "Specify GNU Make program" 40 41DEBUG= 42register_var_option "--debug" DEBUG "Build debug version" 43 44PROGNAME=ndk-stack 45register_var_option "--program-name=<name>" PROGNAME "Alternate NDK tool program name" 46 47PACKAGE_DIR= 48register_var_option "--package-dir=<path>" PACKAGE_DIR "Archive binary into specific directory" 49 50register_canadian_option 51register_try64_option 52 53extract_parameters "$@" 54 55prepare_host_build 56 57# Choose a build directory if not specified by --build-dir 58if [ -z "$BUILD_DIR" ]; then 59 BUILD_DIR=$NDK_TMPDIR/build-$PROGNAME 60 log "Auto-config: --build-dir=$BUILD_DIR" 61fi 62prepare_canadian_toolchain $BUILD_DIR 63 64OUT=$NDK_DIR/$(get_host_exec_name $PROGNAME) 65 66# GNU Make 67if [ -z "$GNUMAKE" ]; then 68 GNUMAKE=make 69 log "Auto-config: --make=$GNUMAKE" 70fi 71 72if [ "$PACKAGE_DIR" ]; then 73 mkdir -p "$PACKAGE_DIR" 74 fail_panic "Could not create package directory: $PACKAGE_DIR" 75fi 76 77# Create output directory 78mkdir -p $(dirname $OUT) 79if [ $? != 0 ]; then 80 echo "ERROR: Could not create output directory: $(dirname $OUT)" 81 exit 1 82fi 83 84SRCDIR=$ANDROID_NDK_ROOT/sources/host-tools/$PROGNAME 85 86# Let's roll 87export CFLAGS=$HOST_CFLAGS" -O2 -s" 88export LDFLAGS=$HOST_LDFLAGS 89run $GNUMAKE -C $SRCDIR -f $SRCDIR/GNUmakefile \ 90 -B -j$NUM_JOBS \ 91 PROGNAME="$OUT" \ 92 BUILD_DIR="$BUILD_DIR" \ 93 CC="$CXX" CXX="$CXX" \ 94 STRIP="$STRIP" \ 95 DEBUG=$DEBUG 96 97if [ $? != 0 ]; then 98 echo "ERROR: Could not build host program!" 99 exit 1 100fi 101 102if [ "$PACKAGE_DIR" ]; then 103 ARCHIVE=$PROGNAME-$HOST_TAG.tar.bz2 104 SUBDIR=$(get_host_exec_name $PROGNAME $HOST_TAG) 105 dump "Packaging: $ARCHIVE" 106 pack_archive "$PACKAGE_DIR/$ARCHIVE" "$NDK_DIR" "$SUBDIR" 107 fail_panic "Could not create package: $PACKAGE_DIR/$ARCHIVE from $OUT" 108fi 109 110log "Cleaning up" 111rm -rf $BUILD_DIR 112 113log "Done!" 114exit 0 115