aboutsummaryrefslogtreecommitdiff
path: root/sources/host-tools/ndk-stack/build-ndk-stack.sh
blob: 61a93e65d880535b65fd94aba8baa5192d59bd73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#!/bin/sh
#
# Copyright (C) 2011 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 script is used to rebuild the host 'ndk-stack' tool.
#
# Note: The tool is installed under prebuilt/$HOST_TAG/bin/ndk-stack
#       by default.
#
PROGDIR=$(dirname $0)
. $NDK_BUILDTOOLS_PATH/prebuilt-common.sh

PROGRAM_PARAMETERS=""
PROGRAM_DESCRIPTION=\
"This script is used to rebuild the host ndk-stack binary program."

register_jobs_option

BUILD_DIR=
register_var_option "--build-dir=<path>" BUILD_DIR "Specify build directory"

NDK_DIR=$ANDROID_NDK_ROOT
register_var_option "--ndk-dir=<path>" NDK_DIR "Place binary in NDK installation path"

GNUMAKE=
register_var_option "--make=<path>" GNUMAKE "Specify GNU Make program"

DEBUG=
register_var_option "--debug" DEBUG "Build debug version"

SRC_DIR=
register_var_option "--src-dir=<path>" SRC_DIR "Specify binutils source dir.  Must be set for --with-libbfd"

PACKAGE_DIR=
register_var_option "--package-dir=<path>" PACKAGE_DIR "Archive binary into specific directory"

register_canadian_option
register_try64_option

extract_parameters "$@"

if [ -z "$SRC_DIR" ]; then
    echo "ERROR: Missing source directory parameter. See --help for details."
    exit 1
fi

prepare_abi_configure_build
prepare_host_build

rm -rf $BUILD_DIR
mkdir -p $BUILD_DIR

prepare_canadian_toolchain $BUILD_DIR

CFLAGS=$HOST_CFLAGS" -O2 -s -ffunction-sections -fdata-sections"
LDFLAGS=$HOST_LDFLAGS
EXTRA_CONFIG=

if [ "$HOST_OS" != "darwin" -a "$DARWIN" != "yes" ]; then
    LDFLAGS=$LDFLAGS" -Wl,-gc-sections"
else
    # In darwin libbfd has to be built with some *linux* target or it won't understand ELF
    # Disable -Werror because binutils uses deprecated functions (e.g. sbrk).
    EXTRA_CONFIG="-target=arm-linux-androideabi --disable-werror"
fi

if [ "$MINGW" = "yes" ]; then
    LDFLAGS=$LDFLAGS" -static"
fi

BINUTILS_BUILD_DIR=$BUILD_DIR/binutils
BINUTILS_SRC_DIR=$SRC_DIR/binutils/binutils-$DEFAULT_BINUTILS_VERSION

# build binutils first
if [ -z "$ABI_CONFIGURE_HOST" ]; then
    ABI_CONFIGURE_HOST=$ABI_CONFIGURE_BUILD
fi
run mkdir -p $BINUTILS_BUILD_DIR
run export CC CFLAGS LDFLAGS
run cd $BINUTILS_BUILD_DIR && \
run $BINUTILS_SRC_DIR/configure \
    --host=$ABI_CONFIGURE_HOST \
    --build=$ABI_CONFIGURE_BUILD \
    --disable-nls \
    --with-bug-report-url=$DEFAULT_ISSUE_TRACKER_URL \
$EXTRA_CONFIG
fail_panic "Can't configure $BINUTILS_SRC_DIR"
run make -j$NUM_JOBS
fail_panic "Can't build $BINUTILS_SRC_DIR"

NAME=$(get_host_exec_name ndk-stack)
OUT=$BUILD_DIR/$NAME

# GNU Make
if [ -z "$GNUMAKE" ]; then
    GNUMAKE=make
    log "Auto-config: --make=$GNUMAKE"
fi

if [ "$PACKAGE_DIR" ]; then
    mkdir -p "$PACKAGE_DIR"
    fail_panic "Could not create package directory: $PACKAGE_DIR"
fi

# Create output directory
mkdir -p $(dirname $OUT)
if [ $? != 0 ]; then
    echo "ERROR: Could not create output directory: $(dirname $OUT)"
    exit 1
fi

SRCDIR=$ANDROID_NDK_ROOT/sources/host-tools/ndk-stack

# Let's roll
CFLAGS="$CFLAGS \
   -DHAVE_CONFIG_H \
   -I$BINUTILS_BUILD_DIR/binutils \
   -I$BINUTILS_SRC_DIR/binutils \
   -I$BINUTILS_BUILD_DIR/bfd \
   -I$BINUTILS_SRC_DIR/bfd \
   -I$BINUTILS_SRC_DIR/include \
   "
LDFLAGS="$LDFLAGS \
   $BINUTILS_BUILD_DIR/binutils/bucomm.o \
   $BINUTILS_BUILD_DIR/binutils/version.o \
   $BINUTILS_BUILD_DIR/binutils/filemode.o \
   $BINUTILS_BUILD_DIR/bfd/libbfd.a \
   $BINUTILS_BUILD_DIR/libiberty/libiberty.a \
   $BINUTILS_BUILD_DIR/zlib/libz.a \
   "
if [ "$MINGW" != "yes" ]; then
    LDFLAGS="$LDFLAGS -ldl"
fi

export CFLAGS LDFLAGS
run $GNUMAKE -C $SRCDIR -f $SRCDIR/GNUmakefile \
    -B -j$NUM_JOBS \
    PROGNAME="$OUT" \
    BUILD_DIR="$BUILD_DIR" \
    CC="$CC" CXX="$CXX" \
    STRIP="$STRIP" \
    DEBUG=$DEBUG

if [ $? != 0 ]; then
    echo "ERROR: Could not build host program!"
    exit 1
fi

log "Done!"
exit 0