#!/bin/sh # # Copyright (C) 2010 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # This shell script is used to rebuild the prebuilt STLport binaries from # their sources. It requires a working NDK installation. # # include common function and variable definitions . `dirname $0`/prebuilt-common.sh . `dirname $0`/builder-funcs.sh PROGRAM_PARAMETERS="" PROGRAM_DESCRIPTION=\ "Rebuild the prebuilt STLport binaries for the Android NDK. This script is called when packaging a new NDK release. It will simply rebuild the STLport static and shared libraries from sources. This requires a temporary NDK installation containing platforms and toolchain binaries for all target architectures. By default, this will try with the current NDK directory, unless you use the --ndk-dir=<path> option. The output will be placed in appropriate sub-directories of <ndk>/$STLPORT_SUBDIR, but you can override this with the --out-dir=<path> option. " PACKAGE_DIR= register_var_option "--package-dir=<path>" PACKAGE_DIR "Put prebuilt tarballs into <path>." NDK_DIR= register_var_option "--ndk-dir=<path>" NDK_DIR "Specify NDK root path for the build." BUILD_DIR= OPTION_BUILD_DIR= register_var_option "--build-dir=<path>" OPTION_BUILD_DIR "Specify temporary build dir." OUT_DIR= register_var_option "--out-dir=<path>" OUT_DIR "Specify output directory directly." ABIS="$PREBUILT_ABIS" register_var_option "--abis=<list>" ABIS "Specify list of target ABIs." NO_MAKEFILE= register_var_option "--no-makefile" NO_MAKEFILE "Do not use makefile to speed-up build" register_jobs_option extract_parameters "$@" ABIS=$(commas_to_spaces $ABIS) # Handle NDK_DIR if [ -z "$NDK_DIR" ] ; then NDK_DIR=$ANDROID_NDK_ROOT log "Auto-config: --ndk-dir=$NDK_DIR" else if [ ! -d "$NDK_DIR" ] ; then echo "ERROR: NDK directory does not exists: $NDK_DIR" exit 1 fi fi if [ -z "$OPTION_BUILD_DIR" ]; then BUILD_DIR=$NDK_TMPDIR/build-stlport else BUILD_DIR=$OPTION_BUILD_DIR fi mkdir -p "$BUILD_DIR" fail_panic "Could not create build directory: $BUILD_DIR" GABIXX_SRCDIR=$ANDROID_NDK_ROOT/$GABIXX_SUBDIR GABIXX_CFLAGS="-fPIC -O2 -DANDROID -D__ANDROID__ -I$GABIXX_SRCDIR/include" GABIXX_CXXFLAGS="-fno-exceptions -frtti" GABIXX_SOURCES=$(cd $ANDROID_NDK_ROOT/$GABIXX_SUBDIR && ls src/*.cc) GABIXX_LDFLAGS= # Location of the STLPort source tree STLPORT_SRCDIR=$ANDROID_NDK_ROOT/$STLPORT_SUBDIR STLPORT_CFLAGS="-DGNU_SOURCE -fPIC -O2 -I$STLPORT_SRCDIR/stlport -DANDROID -D__ANDROID__" STLPORT_CFLAGS=$STLPORT_CFLAGS" -I$ANDROID_NDK_ROOT/$GABIXX_SUBDIR/include" STLPORT_CXXFLAGS="-fuse-cxa-atexit -fno-exceptions -frtti" STLPORT_SOURCES=\ "src/dll_main.cpp \ src/fstream.cpp \ src/strstream.cpp \ src/sstream.cpp \ src/ios.cpp \ src/stdio_streambuf.cpp \ src/istream.cpp \ src/ostream.cpp \ src/iostream.cpp \ src/codecvt.cpp \ src/collate.cpp \ src/ctype.cpp \ src/monetary.cpp \ src/num_get.cpp \ src/num_put.cpp \ src/num_get_float.cpp \ src/num_put_float.cpp \ src/numpunct.cpp \ src/time_facets.cpp \ src/messages.cpp \ src/locale.cpp \ src/locale_impl.cpp \ src/locale_catalog.cpp \ src/facets_byname.cpp \ src/complex.cpp \ src/complex_io.cpp \ src/complex_trig.cpp \ src/string.cpp \ src/bitset.cpp \ src/allocators.cpp \ src/c_locale.c \ src/cxa.c" # If the --no-makefile flag is not used, we're going to put all build # commands in a temporary Makefile that we will be able to invoke with # -j$NUM_JOBS to build stuff in parallel. # if [ -z "$NO_MAKEFILE" ]; then MAKEFILE=$BUILD_DIR/Makefile else MAKEFILE= fi build_stlport_libs_for_abi () { local ARCH BINPREFIX SYSROOT local ABI=$1 local BUILDDIR="$2" local DSTDIR="$3" local SRC OBJ OBJECTS CFLAGS CXXFLAGS mkdir -p "$BUILDDIR" # If the output directory is not specified, use default location if [ -z "$DSTDIR" ]; then DSTDIR=$NDK_DIR/$STLPORT_SUBDIR/libs/$ABI fi mkdir -p "$DSTDIR" builder_begin_android $ABI "$BUILDDIR" "$MAKEFILE" builder_set_dstdir "$DSTDIR" builder_set_srcdir "$GABIXX_SRCDIR" builder_cflags "$GABIXX_CFLAGS" builder_cxxflags "$GABIXX_CXXFLAGS" builder_ldflags "$GABIXX_LDFLAGS" builder_sources $GABIXX_SOURCES builder_set_srcdir "$STLPORT_SRCDIR" builder_reset_cflags builder_cflags "$STLPORT_CFLAGS" builder_reset_cxxflags builder_cxxflags "$STLPORT_CXXFLAGS" builder_sources $STLPORT_SOURCES log "Building $DSTDIR/libstlport_static.a" builder_static_library libstlport_static log "Building $DSTDIR/libstlport_shared.so" builder_shared_library libstlport_shared builder_end } for ABI in $ABIS; do build_stlport_libs_for_abi $ABI "$BUILD_DIR/$ABI" done # If needed, package files into tarballs if [ -n "$PACKAGE_DIR" ] ; then for ABI in $ABIS; do FILES="" for LIB in libstlport_static.a libstlport_shared.so; do FILES="$FILES $STLPORT_SUBDIR/libs/$ABI/$LIB" done PACKAGE="$PACKAGE_DIR/stlport-libs-$ABI.tar.bz2" log "Packaging: $PACKAGE" pack_archive "$PACKAGE" "$NDK_DIR" "$FILES" fail_panic "Could not package $ABI STLport binaries!" dump "Packaging: $PACKAGE" done fi if [ -z "$OPTION_BUILD_DIR" ]; then log "Cleaning up..." rm -rf $BUILD_DIR else log "Don't forget to cleanup: $BUILD_DIR" fi log "Done!"