Skip to content

Commit 0acdf93

Browse files
committedJan 9, 2019
Android build fixes
This fixes #8079
1 parent 4b04268 commit 0acdf93

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

Diff for: ‎build/android/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ $(OPENSSL_LIB): $(OPENSSL_TIMESTAMP)
312312
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
313313
export CFLAGS="$${CFLAGS} ${TARGET_CFLAGS_ADDON}"; \
314314
export LDFLAGS="$${LDFLAGS} ${TARGET_LDFLAGS_ADDON}"; \
315-
CC=${CROSS_CC} ./Configure -DL_ENDIAN android-${TARGET_ARCH} \
315+
CC=${CROSS_CC} ./Configure -DL_ENDIAN no-asm android-${TARGET_ARCH} \
316316
-D__ANDROID_API__=$(API); \
317317
CC=${CROSS_CC} ANDROID_DEV=/tmp/ndk-${TARGET_HOST} make depend; \
318318
CC=${CROSS_CC} ANDROID_DEV=/tmp/ndk-${TARGET_HOST} make build_libs; \

Diff for: ‎src/client/tile.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
1919

2020
#include "tile.h"
2121

22+
#include <cstring>
2223
#include <algorithm>
2324
#include <ICameraSceneNode.h>
2425
#include "util/string.h"

0 commit comments

Comments
 (0)
Please sign in to comment.