File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 6
6
7
7
export LC_ALL=C.UTF-8
8
8
9
+ BITCOIN_CONFIG_ALL=" --enable-suppress-external-warnings --disable-dependency-tracking --prefix=$DEPENDS_DIR /$HOST "
10
+ if [ -z " $NO_WERROR " ]; then
11
+ BITCOIN_CONFIG_ALL=" ${BITCOIN_CONFIG_ALL} --enable-werror"
12
+ fi
13
+
9
14
if [ -n " $ANDROID_TOOLS_URL " ]; then
10
15
CI_EXEC make distclean || true
11
16
CI_EXEC ./autogen.sh
12
- CI_EXEC ./configure " $BITCOIN_CONFIG " --prefix= " ${DEPENDS_DIR} /aarch64-linux-android " || ( (CI_EXEC cat config.log) && false)
17
+ CI_EXEC ./configure " $BITCOIN_CONFIG_ALL " " $BITCOIN_CONFIG " || ( (CI_EXEC cat config.log) && false)
13
18
CI_EXEC " make $MAKEJOBS && cd src/qt && ANDROID_HOME=${ANDROID_HOME} ANDROID_NDK_HOME=${ANDROID_NDK_HOME} make apk"
14
19
exit 0
15
20
fi
16
21
17
- BITCOIN_CONFIG_ALL=" --enable-external-signer --enable-suppress-external-warnings --disable-dependency-tracking --prefix=$DEPENDS_DIR /$HOST --bindir=$BASE_OUTDIR /bin --libdir=$BASE_OUTDIR /lib"
18
- if [ -z " $NO_WERROR " ]; then
19
- BITCOIN_CONFIG_ALL=" ${BITCOIN_CONFIG_ALL} --enable-werror"
20
- fi
22
+ BITCOIN_CONFIG_ALL=" ${BITCOIN_CONFIG_ALL} --enable-external-signer --bindir=$BASE_OUTDIR /bin --libdir=$BASE_OUTDIR /lib"
21
23
CI_EXEC " ccache --zero-stats --max-size=$CCACHE_SIZE "
22
24
23
25
if [ -n " $CONFIG_SHELL " ]; then
You can’t perform that action at this time.
0 commit comments