OpenTTD: disabled arm64 arch, maybe this will fix some of the crashes

This commit is contained in:
Sergii Pylypenko
2017-10-02 21:41:32 +03:00
parent a209bee64f
commit a6f20b699b
4 changed files with 9 additions and 9 deletions

View File

@@ -7,10 +7,10 @@ AppName="OpenTTD JGR"
AppFullName=org.openttd.jgrpp
# Application version code (integer)
AppVersionCode=021074
AppVersionCode=021075
# Application user-visible version name (string)
AppVersionName="0.21.0.74"
AppVersionName="0.21.0.75"
# Specify path to download application data in zip archive in the form 'Description|URL|MirrorURL^Description2|URL2|MirrorURL2^...'
# If you'll start Description with '!' symbol it will be enabled by default, other downloads should be selected by user from startup config menu
@@ -244,7 +244,7 @@ NDK_TOOLCHAIN_VERSION=clang
# Specify architectures to compile, 'all' or 'y' to compile for all architectures.
# Available architectures: armeabi armeabi-v7a x86 mips arm64-v8a x86_64
MultiABI='armeabi-v7a x86 arm64-v8a'
MultiABI='armeabi-v7a x86' # arm64-v8a
# Optional shared libraries to compile - removing some of them will save space
# MP3 support by libMAD is encumbered by patents and libMAD is GPL-ed

View File

@@ -18,9 +18,9 @@ cd bin
export LD_LIBRARY_PATH=/usr/local/lib
if [ -z "$1" ]; then
./openttd -d 2 -r 854x480 -g opntitle.sav
./openttd -d 2 -r 854x480 -b 16bpp-simple -g opntitle.sav
else
#valgrind --track-fds=yes --log-file=valgrind.log --leak-check=full \
gdb -ex run --args \
./openttd -d 2 -r 854x480 -g opntitle.sav
#gdb -ex run --args \
valgrind --track-fds=yes --log-file=valgrind.log --leak-check=full --read-var-info=yes \
./openttd -d 2 -r 854x480 -b 16bpp-simple # -g opntitle.sav
fi