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# Build the host version of the awk executable and place it 18# at the right location 19 20PROGDIR=$(dirname $0) 21. $PROGDIR/prebuilt-common.sh 22 23PROGRAM_PARAMETERS="" 24PROGRAM_DESCRIPTION=\ 25"Rebuild the host awk tool used by the NDK." 26 27register_try64_option 28register_mingw_option 29register_jobs_option 30 31NDK_DIR=$ANDROID_NDK_ROOT 32register_var_option "--ndk-dir=<path>" NDK_DIR "Specify NDK install directory" 33 34PACKAGE_DIR= 35register_var_option "--package-dir=<path>" PACKAGE_DIR "Archive to package directory" 36 37GNUMAKE=make 38register_var_option "--make=<path>" GNUMAKE "Specify GNU Make program" 39 40extract_parameters "$@" 41 42SUBDIR=$(get_prebuilt_host_exec awk) 43OUT=$NDK_DIR/$SUBDIR 44 45AWK_VERSION=20071023 46AWK_SRCDIR=$ANDROID_NDK_ROOT/sources/host-tools/nawk-$AWK_VERSION 47if [ ! -d "$AWK_SRCDIR" ]; then 48 echo "ERROR: Can't find sed-$AWK_VERSION source tree: $AWK_SRCDIR" 49 exit 1 50fi 51 52log "Using sources from: $AWK_SRCDIR" 53 54prepare_host_build 55 56BUILD_DIR=$NDK_TMPDIR 57BUILD_MINGW= 58if [ "$MINGW" = "yes" ]; then 59 BUILD_MINGW=yes 60fi 61 62log "Configuring the build" 63mkdir -p $BUILD_DIR && rm -rf $BUILD_DIR/* 64prepare_mingw_toolchain $BUILD_DIR 65log "Building $HOST_TAG awk" 66export HOST_CC="$CC" && 67run $GNUMAKE \ 68 -C "$AWK_SRCDIR" \ 69 -j $NUM_JOBS \ 70 BUILD_DIR="$BUILD_DIR" \ 71 MINGW="$BUILD_MINGW" 72fail_panic "Failed to build the sed-$AWK_VERSION executable!" 73 74log "Copying executable to prebuilt location" 75run mkdir -p $(dirname "$OUT") && cp "$BUILD_DIR/$(get_host_exec_name ndk-awk)" "$OUT" 76fail_panic "Could not copy executable to: $OUT" 77 78if [ "$PACKAGE_DIR" ]; then 79 ARCHIVE=ndk-awk-$HOST_TAG.tar.bz2 80 dump "Packaging: $ARCHIVE" 81 mkdir -p "$PACKAGE_DIR" && 82 pack_archive "$PACKAGE_DIR/$ARCHIVE" "$NDK_DIR" "$SUBDIR" 83 fail_panic "Could not package archive: $PACKAGE_DIR/$ARCHIVE" 84fi 85 86log "Cleaning up" 87rm -rf $BUILD_DIR 88 89log "Done." 90 91