Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't Make an APK via Buildozer #712

Closed
nicolasshu opened this issue Sep 13, 2018 · 6 comments
Closed

Can't Make an APK via Buildozer #712

nicolasshu opened this issue Sep 13, 2018 · 6 comments

Comments

@nicolasshu
Copy link

nicolasshu commented Sep 13, 2018

Versions

  • Python: 3.6
  • OS: Ubuntu 18.04
  • Kivy: 1.10.1
  • Cython: 0.28.2

Description

Hello, I'm trying to make an APK via buildozer, but it creates a config.status file that doesn't seem to follow the correct syntax? I'm not sure how to fix this issue

buildozer.spec

Command:

buildozer android debug

Spec file:

[app]

# (str) Title of your application
title = My Application

# (str) Package name
package.name = myapp

# (str) Package domain (needed for android/ios packaging)
package.domain = org.test

# (str) Source code where the main.py live
source.dir = .

# (list) Source files to include (let empty to include all the files)
source.include_exts = py,png,jpg,kv,atlas

# (list) List of inclusions using pattern matching
#source.include_patterns = assets/*,images/*.png

# (list) Source files to exclude (let empty to not exclude anything)
#source.exclude_exts = spec

# (list) List of directory to exclude (let empty to not exclude anything)
#source.exclude_dirs = tests, bin

# (list) List of exclusions using pattern matching
#source.exclude_patterns = license,images/*/*.jpg

# (str) Application versioning (method 1)
version = 0.1

# (str) Application versioning (method 2)
# version.regex = __version__ = ['"](.*)['"]
# version.filename = %(source.dir)s/main.py

# (list) Application requirements
# comma seperated e.g. requirements = sqlite3,kivy
requirements = kivy

# (str) Custom source folders for requirements
# Sets custom source for any requirements with recipes
# requirements.source.kivy = ../../kivy

# (list) Garden requirements
#garden_requirements =

# (str) Presplash of the application
#presplash.filename = %(source.dir)s/data/presplash.png

# (str) Icon of the application
#icon.filename = %(source.dir)s/data/icon.png

# (str) Supported orientation (one of landscape, portrait or all)
orientation = portrait

# (list) List of service to declare
#services = NAME:ENTRYPOINT_TO_PY,NAME2:ENTRYPOINT2_TO_PY

#
# OSX Specific
#

#
# author = © Copyright Info

# change the major version of python used by the app
osx.python_version = 3

# Kivy version to use
osx.kivy_version = 1.9.1

#
# Android specific
#

# (bool) Indicate if the application should be fullscreen or not
fullscreen = 0

# (string) Presplash background color (for new android toolchain)
# Supported formats are: #RRGGBB #AARRGGBB or one of the following names:
# red, blue, green, black, white, gray, cyan, magenta, yellow, lightgray,
# darkgray, grey, lightgrey, darkgrey, aqua, fuchsia, lime, maroon, navy,
# olive, purple, silver, teal.
#android.presplash_color = #FFFFFF

# (list) Permissions
#android.permissions = INTERNET

# (int) Android API to use
#android.api = 19

# (int) Minimum API required
#android.minapi = 9

# (int) Android SDK version to use
#android.sdk = 20

# (str) Android NDK version to use
#android.ndk = 9c

# (bool) Use --private data storage (True) or --dir public storage (False)
#android.private_storage = True

# (str) Android NDK directory (if empty, it will be automatically downloaded.)
#android.ndk_path =

# (str) Android SDK directory (if empty, it will be automatically downloaded.)
#android.sdk_path =

# (str) ANT directory (if empty, it will be automatically downloaded.)
#android.ant_path =

# (bool) If True, then skip trying to update the Android sdk
# This can be useful to avoid excess Internet downloads or save time
# when an update is due and you just want to test/build your package
# android.skip_update = False

# (str) Android entry point, default is ok for Kivy-based app
#android.entrypoint = org.renpy.android.PythonActivity

# (list) Pattern to whitelist for the whole project
#android.whitelist =

# (str) Path to a custom whitelist file
#android.whitelist_src =

# (str) Path to a custom blacklist file
#android.blacklist_src =

# (list) List of Java .jar files to add to the libs so that pyjnius can access
# their classes. Don't add jars that you do not need, since extra jars can slow
# down the build process. Allows wildcards matching, for example:
# OUYA-ODK/libs/*.jar
#android.add_jars = foo.jar,bar.jar,path/to/more/*.jar

# (list) List of Java files to add to the android project (can be java or a
# directory containing the files)
#android.add_src =

# (list) Android AAR archives to add (currently works only with sdl2_gradle
# bootstrap)
#android.add_aars =

# (list) Gradle dependencies to add (currently works only with sdl2_gradle
# bootstrap)
#android.gradle_dependencies =

# (list) Java classes to add as activities to the manifest.
#android.add_activites = com.example.ExampleActivity

# (str) python-for-android branch to use, defaults to stable
#p4a.branch = stable

# (str) OUYA Console category. Should be one of GAME or APP
# If you leave this blank, OUYA support will not be enabled
#android.ouya.category = GAME

# (str) Filename of OUYA Console icon. It must be a 732x412 png image.
#android.ouya.icon.filename = %(source.dir)s/data/ouya_icon.png

# (str) XML file to include as an intent filters in <activity> tag
#android.manifest.intent_filters =

# (str) launchMode to set for the main activity
#android.manifest.launch_mode = standard

# (list) Android additionnal libraries to copy into libs/armeabi
#android.add_libs_armeabi = libs/android/*.so
#android.add_libs_armeabi_v7a = libs/android-v7/*.so
#android.add_libs_x86 = libs/android-x86/*.so
#android.add_libs_mips = libs/android-mips/*.so

# (bool) Indicate whether the screen should stay on
# Don't forget to add the WAKE_LOCK permission if you set this to True
#android.wakelock = False

# (list) Android application meta-data to set (key=value format)
#android.meta_data =

# (list) Android library project to add (will be added in the
# project.properties automatically.)
#android.library_references =

# (str) Android logcat filters to use
#android.logcat_filters = *:S python:D

# (bool) Copy library instead of making a libpymodules.so
#android.copy_libs = 1

# (str) The Android arch to build for, choices: armeabi-v7a, arm64-v8a, x86
android.arch = armeabi-v7a

#
# Python for android (p4a) specific
#

# (str) python-for-android git clone directory (if empty, it will be automatically cloned from github)
#p4a.source_dir =

# (str) The directory in which python-for-android should look for your own build recipes (if any)
#p4a.local_recipes =

# (str) Filename to the hook for p4a
#p4a.hook =

# (str) Bootstrap to use for android builds
# p4a.bootstrap = sdl2

# (int) port number to specify an explicit --port= p4a argument (eg for bootstrap flask)
#p4a.port =


#
# iOS specific
#

# (str) Path to a custom kivy-ios folder
#ios.kivy_ios_dir = ../kivy-ios

# (str) Name of the certificate to use for signing the debug version
# Get a list of available identities: buildozer ios list_identities
#ios.codesign.debug = "iPhone Developer: <lastname> <firstname> (<hexstring>)"

# (str) Name of the certificate to use for signing the release version
#ios.codesign.release = %(ios.codesign.debug)s


[buildozer]

# (int) Log level (0 = error only, 1 = info, 2 = debug (with command output))
log_level = 2

# (int) Display warning if buildozer is run as root (0 = False, 1 = True)
warn_on_root = 1

# (str) Path to build artifact storage, absolute or relative to spec file
# build_dir = ./.buildozer

# (str) Path to build output (i.e. .apk, .ipa) storage
# bin_dir = ./bin

#    -----------------------------------------------------------------------------
#    List as sections
#
#    You can define all the "list" as [section:key].
#    Each line will be considered as a option to the list.
#    Let's take [app] / source.exclude_patterns.
#    Instead of doing:
#
#[app]
#source.exclude_patterns = license,data/audio/*.wav,data/images/original/*
#
#    This can be translated into:
#
#[app:source.exclude_patterns]
#license
#data/audio/*.wav
#data/images/original/*
#


#    -----------------------------------------------------------------------------
#    Profiles
#
#    You can extend section / key with a profile
#    For example, you want to deploy a demo version of your application without
#    HD content. You could first change the title to add "(demo)" in the name
#    and extend the excluded directories to remove the HD content.
#
#[app@demo]
#title = My Application (demo)
#
#[app:source.exclude_patterns@demo]
#images/hd/*
#
#    Then, invoke the command line with the "demo" profile:
#
#buildozer --profile demo android debug

Logs

checking for is_term_resized... no
checking for resize_term... no
checking for resizeterm... no
checking for /dev/ptmx... yes
checking for /dev/ptc... no
checking for %lld and %llu printf() format support... yes
checking for %zd printf() format support... yes
checking for socklen_t... yes
checking for build directories... done
configure: creating ./config.status
./config.status: line 487: syntax error near unexpected token `)'
./config.status: line 487: `    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;'


  STDERR:

# Command failed: /usr/bin/python -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=kivy --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build"
# 
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2

@AndreMiras
Copy link
Member

Thanks for the bug report!
Could you share more of the log context. I mean at more lines above the error, so we could see which package it tried to compile and all that stuff. In fact if you could attach the full log (maybe gist or pastebin) it would be even better. Sometimes there're some relevant info that we don't think about unless we see it.

@nicolasshu
Copy link
Author

Hey! Thank you so much for being so quick!
Of course!

$ buildozer android debug
# Check configuration tokens
# Ensure build layout
# Check configuration tokens
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
Debian 'dpkg' package management program version 1.19.0.5 (amd64).
This is free software; see the GNU General Public License version 2 or
later for copying conditions. There is NO warranty.
# Search for Git (git)
#  -> found at /usr/bin/git
# Search for Cython (cython)
#  -> found at /home/nickshu/anaconda3/bin/cython
# Search for Java compiler (javac)
#  -> found at /usr/lib/jvm/java-11-openjdk-amd64/bin/javac
# Search for Java keytool (keytool)
#  -> found at /usr/lib/jvm/java-11-openjdk-amd64/bin/keytool
# Install platform
# Run 'pip install -q --user "appdirs" "colorama>=0.3.3" "sh>=1.10,<1.12.5" "jinja2" "six"'
# Cwd None
distributed 1.21.8 requires msgpack, which is not installed.
tensorflow 1.10.0 has requirement numpy<=1.14.5,>=1.13.3, but you'll have numpy 1.15.1 which is incompatible.
tensorflow 1.10.0 has requirement setuptools<=39.1.0, but you'll have setuptools 40.2.0 which is incompatible.
You are using pip version 10.0.1, however version 18.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
# Apache ANT found at /home/nickshu/.buildozer/android/platform/apache-ant-1.9.4
# Android SDK found at /home/nickshu/.buildozer/android/platform/android-sdk-20
# Android NDK found at /home/nickshu/.buildozer/android/platform/android-ndk-r9c
# Check application requirements
# Check garden requirements
# Compile platform
# Run '/usr/bin/python -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=kivy --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O\'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build"'
# Cwd /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Will compile for the following archs: armeabi-v7a
[INFO]:    Found Android API target in $ANDROIDAPI
[INFO]:    Available Android APIs are (19)
[INFO]:    Requested API target 19 is available, continuing.
[INFO]:    Found NDK dir in $ANDROIDNDK
[INFO]:    Got NDK version from $ANDROIDNDKVER
[INFO]:    Using Google NDK r9c
[INFO]:    Found virtualenv at /usr/local/bin/virtualenv
[INFO]:    Found the following toolchain versions: ['4.6', '4.8', 'clang3.3']
[INFO]:    Picking the latest gcc toolchain, here 4.8
[INFO]:    No existing dists meet the given requirements!
[INFO]:    No dist exists that meets your requirements, so one will be built.
[INFO]:    Found multiple valid dependency orders:
[INFO]:        ['hostpython2', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'python2', 'sdl2', 'six', 'pyjnius', u'kivy']
[INFO]:        ['hostpython3crystax', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'python3crystax', 'sdl2', 'six', 'pyjnius', u'kivy']
[INFO]:        ['hostpython2', 'pygame_bootstrap_components', 'python2', 'sdl', 'six', 'pygame', 'pyjnius', u'kivy']
[INFO]:    Using the first of these: ['hostpython2', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'python2', 'sdl2', 'six', 'pyjnius', u'kivy']
[INFO]:    The selected bootstrap is sdl2_gradle
[INFO]:    # Creating dist with sdl2_gradle bootstrap
[INFO]:    Dist will have name myapp and recipes (kivy)
[INFO]:    Dist will also contain modules () installed from pip
[INFO]:    -> running cp -r /home/nickshu/...(and 400 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Recipe build order is ['hostpython2', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'python2', 'sdl2', 'six', 'pyjnius', u'kivy']
[INFO]:    # Downloading recipes 
[INFO]:    Downloading hostpython2
[INFO]:    -> running mkdir -p /home/nicks...(and 162 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/hostpython2
[INFO]:    -> running basename https://pyth...(and 44 more)
[INFO]:    hostpython2 download already cached, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading sdl2_image
[INFO]:    -> running mkdir -p /home/nicks...(and 161 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/sdl2_image
[INFO]:    -> running basename https://www...(and 62 more)
[INFO]:    sdl2_image download already cached, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading sdl2_mixer
[INFO]:    -> running mkdir -p /home/nicks...(and 161 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/sdl2_mixer
[INFO]:    -> running basename https://www...(and 62 more)
[INFO]:    sdl2_mixer download already cached, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading sdl2_ttf
[INFO]:    -> running mkdir -p /home/nicks...(and 159 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/sdl2_ttf
[INFO]:    -> running basename https://www....(and 58 more)
[INFO]:    sdl2_ttf download already cached, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading python2
[INFO]:    -> running mkdir -p /home/nicks...(and 158 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/python2
[INFO]:    -> running basename https://pyth...(and 44 more)
[INFO]:    python2 download already cached, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading sdl2
[INFO]:    -> running mkdir -p /home/nicks...(and 155 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/sdl2
[INFO]:    -> running basename https://www....(and 36 more)
[INFO]:    sdl2 download already cached, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading six
[INFO]:    -> running mkdir -p /home/nicks...(and 154 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/six
[INFO]:    -> running basename https://pypi...(and 50 more)
                                                   [INFO]:    six download already cached, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading pyjnius
[INFO]:    -> running mkdir -p /home/nicks...(and 158 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/pyjnius
[INFO]:    -> running basename https://gith...(and 38 more)
[INFO]:    pyjnius download already cached, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading kivy
[INFO]:    -> running mkdir -p /home/nicks...(and 155 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/kivy
[INFO]:    -> running basename https://gith...(and 35 more)
[INFO]:    kivy download already cached, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    # Building all recipes for arch armeabi-v7a
[INFO]:    # Unpacking recipes
[INFO]:    Unpacking hostpython2 for armeabi-v7a
[INFO]:    -> running basename https://pyth...(and 44 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/hostpython2/desktop
[INFO]:    hostpython2 is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking sdl2_image for armeabi-v7a
[INFO]:    -> running basename https://www...(and 62 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni
[INFO]:    sdl2_image is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking sdl2_mixer for armeabi-v7a
[INFO]:    -> running basename https://www...(and 62 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni
[INFO]:    sdl2_mixer is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking sdl2_ttf for armeabi-v7a
[INFO]:    -> running basename https://www....(and 58 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni
[INFO]:    sdl2_ttf is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking python2 for armeabi-v7a
[INFO]:    -> running basename https://pyth...(and 44 more)
                                [INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a
[INFO]:    python2 is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking sdl2 for armeabi-v7a
[INFO]:    -> running basename https://www....(and 36 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni
[INFO]:    sdl2 is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking six for armeabi-v7a
[INFO]:    -> running basename https://pypi...(and 50 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/six-python2/armeabi-v7a
[INFO]:    six is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking pyjnius for armeabi-v7a
[INFO]:    -> running basename https://gith...(and 38 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/pyjnius-python2-sdl2/armeabi-v7a
[INFO]:    pyjnius is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking kivy for armeabi-v7a
[INFO]:    -> running basename https://gith...(and 35 more)
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/kivy-python2-sdl2/armeabi-v7a
[INFO]:    kivy is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    # Prebuilding recipes
[INFO]:    Prebuilding hostpython2 for armeabi-v7a
[INFO]:    -> running cp /home/nickshu/Des...(and 423 more)
[INFO]:    Prebuilding sdl2_image for armeabi-v7a
[INFO]:    sdl2_image has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for sdl2_image[armeabi-v7a]
[INFO]:    sdl2_image already patched, skipping
[INFO]:    Prebuilding sdl2_mixer for armeabi-v7a
[INFO]:    sdl2_mixer has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for sdl2_mixer[armeabi-v7a]
[INFO]:    sdl2_mixer already patched, skipping
[INFO]:    Prebuilding sdl2_ttf for armeabi-v7a
[INFO]:    sdl2_ttf has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding python2 for armeabi-v7a
[INFO]:    python2 has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for python2[armeabi-v7a]
[INFO]:    python2 already patched, skipping
[INFO]:    Prebuilding sdl2 for armeabi-v7a
[INFO]:    sdl2 has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for sdl2[armeabi-v7a]
[INFO]:    sdl2 already patched, skipping
[INFO]:    Prebuilding six for armeabi-v7a
[INFO]:    six has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding pyjnius for armeabi-v7a
[INFO]:    pyjnius has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for pyjnius[armeabi-v7a]
[INFO]:    pyjnius already patched, skipping
[INFO]:    Prebuilding kivy for armeabi-v7a
[INFO]:    kivy has no prebuild_armeabi_v7a, skipping
[INFO]:    # Building recipes
[INFO]:    Building hostpython2 for armeabi-v7a
[INFO]:    -> directory context /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/hostpython2/desktop/hostpython2
[INFO]:    -> running configure
           workException in thread background thread for pid 25566:  
Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner
    self.run()
  File "/usr/lib/python2.7/threading.py", line 754, in run
    self.__target(*self.__args, **self.__kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 1540, in wrap
    fn(*args, **kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2459, in background_thread
    handle_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2157, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
ErrorReturnCode_1: 

  RAN: /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/hostpython2/desktop/hostpython2/configure

  STDOUT:
checking for --enable-universalsdk... no
checking for --with-universal-archs... 32-bit
checking MACHDEP... linux4
checking EXTRAPLATDIR... 
checking machine type as reported by uname -m... x86_64
checking for --without-gcc... no
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for --with-cxx-main=<compiler>... no
checking for g++... g++
configure: WARNING:

  By default, distutils will build C++ extension modules with "g++".
  If this is not intended, then set CXX on the configure command line.
  
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for --with-suffix... 
checking for case-insensitive build directory... no
checking LIBRARY... libpython$(VERSION).a
checking LINKCC... $(PURIFY) $(MAINCC)
checking for GNU ld... yes
checking for --enable-shared... no
checking for --enable-profiling... 
checking LDLIBRARY... libpython$(VERSION).a
checking for ranlib... ranlib
checking for ar... ar
checking for svnversion... not-found
checking for hg... found
checking for a BSD-compatible install... /usr/bin/install -c
checking for --with-pydebug... no
checking whether gcc accepts -fno-strict-aliasing... yes
checking whether gcc accepts -OPT:Olimit=0... no
checking whether gcc accepts -Olimit 1500... no
checking whether gcc supports ParseTuple __format__... no
checking whether pthreads are available without options... no
checking whether gcc accepts -Kpthread... no
checking whether gcc accepts -Kthread... no
checking whether gcc accepts -pthread... yes
checking whether g++ also accepts flags for thread support... yes
checking for ANSI C header files... (cached) yes
checking asm/types.h usability... yes
checking asm/types.h presence... yes
checking for asm/types.h... yes
checking conio.h usability... no
checking conio.h presence... no
checking for conio.h... no
checking curses.h usability... no
checking curses.h presence... no
checking for curses.h... no
checking direct.h usability... no
checking direct.h presence... no
checking for direct.h... no
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking ncurses.h usability... no
checking ncurses.h presence... no
checking for ncurses.h... no
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking shadow.h usability... yes
checking shadow.h presence... yes
checking for shadow.h... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for stdint.h... (cached) yes
checking stropts.h usability... yes
checking stropts.h presence... yes
checking for stropts.h... yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking thread.h usability... no
checking thread.h presence... no
checking for thread.h... no
checking for unistd.h... (cached) yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking sys/audioio.h usability... no
checking sys/audioio.h presence... no
checking for sys/audioio.h... no
checking sys/bsdtty.h usability... no
checking sys/bsdtty.h presence... no
checking for sys/bsdtty.h... no
checking sys/epoll.h usability... yes
checking sys/epoll.h presence... yes
checking for sys/epoll.h... yes
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking sys/lock.h usability... no
checking sys/lock.h presence... no
checking for sys/lock.h... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/modem.h usability... no
checking sys/modem.h presence... no
checking for sys/modem.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking for sys/stat.h... (cached) yes
checking sys/termio.h usability... no
checking sys/termio.h presence... no
checking for sys/termio.h... no
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking for sys/types.h... (cached) yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking pty.h usability... yes
checking pty.h presence... yes
checking for pty.h... yes
checking libutil.h usability... no
checking libutil.h presence... no
checking for libutil.h... no
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking netpacket/packet.h usability... yes
checking netpacket/packet.h presence... yes
checking for netpacket/packet.h... yes
checking sysexits.h usability... yes
checking sysexits.h presence... yes
checking for sysexits.h... yes
checking bluetooth.h usability... no
checking bluetooth.h presence... no
checking for bluetooth.h... no
checking bluetooth/bluetooth.h usability... yes
checking bluetooth/bluetooth.h presence... yes
checking for bluetooth/bluetooth.h... yes
checking linux/tipc.h usability... yes
checking linux/tipc.h presence... yes
checking for linux/tipc.h... yes
checking spawn.h usability... yes
checking spawn.h presence... yes
checking for spawn.h... yes
checking util.h usability... no
checking util.h presence... no
checking for util.h... no
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking whether sys/types.h defines makedev... yes
checking for term.h... no
checking for linux/netlink.h... yes
checking for clock_t in time.h... yes
checking for makedev... yes
checking Solaris LFS bug... no
checking for mode_t... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking for uid_t in sys/types.h... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for ssize_t... yes
checking size of int... 4
checking size of long... 8
checking size of void *... 8
checking size of short... 2
checking size of float... 4
checking size of double... 8
checking size of fpos_t... 16
checking size of size_t... 8
checking size of pid_t... 4
checking for long long support... yes
checking size of long long... 8
checking for long double support... yes
checking size of long double... 16
checking for _Bool support... yes
checking size of _Bool... 1
checking for uintptr_t... yes
checking size of uintptr_t... 8
checking size of off_t... 8
checking whether to enable large file support... no
checking size of time_t... 8
checking for pthread_t... yes
checking size of pthread_t... 8
checking for --enable-toolbox-glue... no
checking for --enable-framework... no
checking for dyld... no
checking SO... .so
checking LDSHARED... $(CC) -shared
checking CCSHARED... -fPIC
checking LINKFORSHARED... -Xlinker -export-dynamic
checking CFLAGSFORSHARED... 
checking SHLIBS... $(LIBS)
checking for dlopen in -ldl... yes
checking for shl_load in -ldld... no
checking for library containing sem_init... -lpthread
checking for textdomain in -lintl... no
checking for t_open in -lnsl... no
checking for socket in -lsocket... no
checking for --with-libs... no
checking for pkg-config... /usr/bin/pkg-config
checking for --with-system-expat... no
checking for --with-system-ffi... no
checking for --with-dbmliborder... 
checking for --with-signal-module... yes
checking for --with-dec-threads... no
checking for --with-threads... yes
checking if PTHREAD_SCOPE_SYSTEM is supported... yes
checking for pthread_sigmask... yes
checking if --enable-ipv6 is specified... yes
checking if RFC2553 API is available... yes
checking ipv6 stack type... linux-glibc
checking for OSX 10.5 SDK or later... no
checking for --with-doc-strings... yes
checking for --with-tsc... no
checking for --with-pymalloc... yes
checking for --with-valgrind... no
checking for --with-wctype-functions... no
checking for dlopen... yes
checking DYNLOADFILE... dynload_shlib.o
checking MACHDEP_OBJS... MACHDEP_OBJS
checking for alarm... yes
checking for setitimer... yes
checking for getitimer... yes
checking for bind_textdomain_codeset... yes
checking for chown... yes
checking for clock... yes
checking for confstr... yes
checking for ctermid... yes
checking for execv... yes
checking for fchmod... yes
checking for fchown... yes
checking for fork... yes
checking for fpathconf... yes
checking for ftime... yes
checking for ftruncate... yes
checking for gai_strerror... yes
checking for getgroups... yes
checking for getlogin... yes
checking for getloadavg... yes
checking for getpeername... yes
checking for getpgid... yes
checking for getpid... yes
checking for getpriority... yes
checking for getresuid... yes
checking for getresgid... yes
checking for getpwent... yes
checking for getspnam... yes
checking for getspent... yes
checking for getsid... yes
checking for getwd... yes
checking for initgroups... yes
checking for kill... yes
checking for killpg... yes
checking for lchmod... no
checking for lchown... yes
checking for lstat... yes
checking for mkfifo... yes
checking for mknod... yes
checking for mktime... yes
checking for mremap... yes
checking for nice... yes
checking for pathconf... yes
checking for pause... yes
checking for plock... no
checking for poll... yes
checking for pthread_init... no
checking for putenv... yes
checking for readlink... yes
checking for realpath... yes
checking for select... yes
checking for sem_open... yes
checking for sem_timedwait... yes
checking for sem_getvalue... yes
checking for sem_unlink... yes
checking for setegid... yes
checking for seteuid... yes
checking for setgid... yes
checking for setlocale... yes
checking for setregid... yes
checking for setreuid... yes
checking for setsid... yes
checking for setpgid... yes
checking for setpgrp... yes
checking for setuid... yes
checking for setvbuf... yes
checking for snprintf... yes
checking for setlocale... (cached) yes
checking for setregid... (cached) yes
checking for setreuid... (cached) yes
checking for setresuid... yes
checking for setresgid... yes
checking for setsid... (cached) yes
checking for setpgid... (cached) yes
checking for setpgrp... (cached) yes
checking for setuid... (cached) yes
checking for setvbuf... (cached) yes
checking for snprintf... (cached) yes
checking for sigaction... yes
checking for siginterrupt... yes
checking for sigrelse... yes
checking for strftime... yes
checking for sysconf... yes
checking for tcgetpgrp... yes
checking for tcsetpgrp... yes
checking for tempnam... yes
checking for timegm... yes
checking for times... yes
checking for tmpfile... yes
checking for tmpnam... yes
checking for tmpnam_r... yes
checking for truncate... yes
checking for uname... yes
checking for unsetenv... yes
checking for utimes... yes
checking for waitpid... yes
checking for wait3... yes
checking for wait4... yes
checking for wcscoll... yes
checking for _getpty... no
checking for chroot... yes
checking for link... yes
checking for symlink... yes
checking for fchdir... yes
checking for fsync... yes
checking for fdatasync... yes
checking for epoll... yes
checking for kqueue... no
checking for ctermid_r... no
checking for flock declaration... yes
checking for flock... yes
checking for getpagesize... yes
checking for true... true
checking for inet_aton in -lc... yes
checking for chflags... no
checking for lchflags... no
checking for inflateCopy in -lz... yes
checking for hstrerror... yes
checking for inet_aton... yes
checking for inet_pton... yes
checking for setgroups... yes
checking for openpty... no
checking for openpty in -lutil... yes
checking for forkpty... yes
checking for memmove... yes
checking for fseek64... no
checking for fseeko... yes
checking for fstatvfs... yes
checking for ftell64... no
checking for ftello... yes
checking for statvfs... yes
checking for dup2... yes
checking for getcwd... yes
checking for strdup... yes
checking for getpgrp... yes
checking for setpgrp... (cached) yes
checking for gettimeofday... yes
checking for major... yes
checking for getaddrinfo... yes
checking getaddrinfo bug... no
checking for getnameinfo... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct stat.st_rdev... yes
checking for struct stat.st_blksize... yes
checking for struct stat.st_flags... no
checking for struct stat.st_gen... no
checking for struct stat.st_birthtime... no
checking for struct stat.st_blocks... yes
checking for time.h that defines altzone... no
checking whether sys/select.h and sys/time.h may both be included... yes
checking for addrinfo... yes
checking for sockaddr_storage... yes
checking whether char is unsigned... no
checking for an ANSI C-conforming const... yes
checking for working volatile... yes
checking for working signed char... yes
checking for prototypes... yes
checking for variable length prototypes and stdarg.h... yes
checking for socketpair... yes
checking if sockaddr has sa_len member... no
checking whether va_list is an array... yes
checking for gethostbyname_r... yes
checking gethostbyname_r with 6 args... yes
checking for __fpu_control... yes
checking for --with-fpectl... no
checking for --with-libm=STRING... default LIBM="-lm"
checking for --with-libc=STRING... default LIBC=""
checking whether C doubles are little-endian IEEE 754 binary64... yes
checking whether C doubles are big-endian IEEE 754 binary64... no
checking whether C doubles are ARM mixed-endian IEEE 754 binary64... no
checking whether we can use gcc inline assembler to get and set x87 control word... yes
checking for x87-style double rounding... no
checking whether tanh preserves the sign of zero... yes
checking for acosh... yes
checking for asinh... yes
checking for atanh... yes
checking for copysign... yes
checking for erf... yes
checking for erfc... yes
checking for expm1... yes
checking for finite... yes
checking for gamma... yes
checking for hypot... yes
checking for lgamma... yes
checking for log1p... yes
checking for round... yes
checking for tgamma... yes
checking whether isinf is declared... yes
checking whether isnan is declared... yes
checking whether isfinite is declared... yes
checking whether POSIX semaphores are enabled... yes
checking for broken sem_getvalue... no
checking digit size for Python's longs... no value specified
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking size of wchar_t... 4
checking for UCS-4 tcl... no
checking whether wchar_t is signed... yes
checking what type to use for unicode... unsigned short
checking whether byte ordering is bigendian... no
checking whether right shift extends the sign bit... yes
checking for getc_unlocked() and friends... yes
checking how to link readline libs... none
checking for rl_callback_handler_install in -lreadline... no
checking for rl_pre_input_hook in -lreadline... no
checking for rl_completion_display_matches_hook in -lreadline... no
checking for rl_completion_matches in -lreadline... no
checking for broken nice()... no
checking for broken poll()... no
checking for struct tm.tm_zone... (cached) yes
checking for working tzset()... yes
checking for tv_nsec in struct stat... yes
checking for tv_nsec2 in struct stat... no
checking whether mvwdelch is an expression... no
checking whether WINDOW has _flags... no
checking for is_term_resized... no
checking for resize_term... no
checking for resizeterm... no
checking for /dev/ptmx... yes
checking for /dev/ptc... no
checking for %lld and %llu printf() format support... yes
checking for %zd printf() format support... yes
checking for socklen_t... yes
checking for build directories... done
configure: creating ./config.status
./config.status: line 487: syntax error near unexpected token `)'
./config.status: line 487: `    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;'


  STDERR:


Traceback (most recent call last):
  File "/usr/lib/python2.7/runpy.py", line 174, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
    exec code in run_globals
  File "/home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 978, in <module>
    main()
  File "/home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 975, in main
    ToolchainCL()
  File "/home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 512, in __init__
    getattr(self, args.subparser_name.replace('-', '_'))(args)
  File "/home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 149, in wrapper_func
    build_dist_from_args(ctx, dist, args)
  File "/home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 193, in build_dist_from_args
    build_recipes(build_order, python_modules, ctx)
  File "pythonforandroid/build.py", line 573, in build_recipes
  File "/home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/recipes/hostpython2/__init__.py", line 44, in build_arch
    shprint(configure)
  File "pythonforandroid/logger.py", line 175, in shprint
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 863, in next
    self.wait()
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 792, in wait
    self.handle_command_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/hostpython2/desktop/hostpython2/configure

  STDOUT:
checking for --enable-universalsdk... no
checking for --with-universal-archs... 32-bit
checking MACHDEP... linux4
checking EXTRAPLATDIR... 
checking machine type as reported by uname -m... x86_64
checking for --without-gcc... no
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for --with-cxx-main=<compiler>... no
checking for g++... g++
configure: WARNING:

  By default, distutils will build C++ extension modules with "g++".
  If this is not intended, then set CXX on the configure command line.
  
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for --with-suffix... 
checking for case-insensitive build directory... no
checking LIBRARY... libpython$(VERSION).a
checking LINKCC... $(PURIFY) $(MAINCC)
checking for GNU ld... yes
checking for --enable-shared... no
checking for --enable-profiling... 
checking LDLIBRARY... libpython$(VERSION).a
checking for ranlib... ranlib
checking for ar... ar
checking for svnversion... not-found
checking for hg... found
checking for a BSD-compatible install... /usr/bin/install -c
checking for --with-pydebug... no
checking whether gcc accepts -fno-strict-aliasing... yes
checking whether gcc accepts -OPT:Olimit=0... no
checking whether gcc accepts -Olimit 1500... no
checking whether gcc supports ParseTuple __format__... no
checking whether pthreads are available without options... no
checking whether gcc accepts -Kpthread... no
checking whether gcc accepts -Kthread... no
checking whether gcc accepts -pthread... yes
checking whether g++ also accepts flags for thread support... yes
checking for ANSI C header files... (cached) yes
checking asm/types.h usability... yes
checking asm/types.h presence... yes
checking for asm/types.h... yes
checking conio.h usability... no
checking conio.h presence... no
checking for conio.h... no
checking curses.h usability... no
checking curses.h presence... no
checking for curses.h... no
checking direct.h usability... no
checking direct.h presence... no
checking for direct.h... no
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking ncurses.h usability... no
checking ncurses.h presence... no
checking for ncurses.h... no
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking shadow.h usability... yes
checking shadow.h presence... yes
checking for shadow.h... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for stdint.h... (cached) yes
checking stropts.h usability... yes
checking stropts.h presence... yes
checking for stropts.h... yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking thread.h usability... no
checking thread.h presence... no
checking for thread.h... no
checking for unistd.h... (cached) yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking sys/audioio.h usability... no
checking sys/audioio.h presence... no
checking for sys/audioio.h... no
checking sys/bsdtty.h usability... no
checking sys/bsdtty.h presence... no
checking for sys/bsdtty.h... no
checking sys/epoll.h usability... yes
checking sys/epoll.h presence... yes
checking for sys/epoll.h... yes
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking sys/lock.h usability... no
checking sys/lock.h presence... no
checking for sys/lock.h... no
checking sys/mkdev.h usability... no
checking sys/mkdev.h presence... no
checking for sys/mkdev.h... no
checking sys/modem.h usability... no
checking sys/modem.h presence... no
checking for sys/modem.h... no
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking for sys/stat.h... (cached) yes
checking sys/termio.h usability... no
checking sys/termio.h presence... no
checking for sys/termio.h... no
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking for sys/types.h... (cached) yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking pty.h usability... yes
checking pty.h presence... yes
checking for pty.h... yes
checking libutil.h usability... no
checking libutil.h presence... no
checking for libutil.h... no
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking netpacket/packet.h usability... yes
checking netpacket/packet.h presence... yes
checking for netpacket/packet.h... yes
checking sysexits.h usability... yes
checking sysexits.h presence... yes
checking for sysexits.h... yes
checking bluetooth.h usability... no
checking bluetooth.h presence... no
checking for bluetooth.h... no
checking bluetooth/bluetooth.h usability... yes
checking bluetooth/bluetooth.h presence... yes
checking for bluetooth/bluetooth.h... yes
checking linux/tipc.h usability... yes
checking linux/tipc.h presence... yes
checking for linux/tipc.h... yes
checking spawn.h usability... yes
checking spawn.h presence... yes
checking for spawn.h... yes
checking util.h usability... no
checking util.h presence... no
checking for util.h... no
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking whether sys/types.h defines makedev... yes
checking for term.h... no
checking for linux/netlink.h... yes
checking for clock_t in time.h... yes
checking for makedev... yes
checking Solaris LFS bug... no
checking for mode_t... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking for uid_t in sys/types.h... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for ssize_t... yes
checking size of int... 4
checking size of long... 8
checking size of void *... 8
checking size of short... 2
checking size of float... 4
checking size of double... 8
checking size of fpos_t... 16
checking size of size_t... 8
checking size of pid_t... 4
checking for long long support... yes
checking size of long long... 8
checking for long double support... yes
checking size of long double... 16
checking for _Bool support... yes
checking size of _Bool... 1
checking for uintptr_t... yes
checking size of uintptr_t... 8
checking size of off_t... 8
checking whether to enable large file support... no
checking size of time_t... 8
checking for pthread_t... yes
checking size of pthread_t... 8
checking for --enable-toolbox-glue... no
checking for --enable-framework... no
checking for dyld... no
checking SO... .so
checking LDSHARED... $(CC) -shared
checking CCSHARED... -fPIC
checking LINKFORSHARED... -Xlinker -export-dynamic
checking CFLAGSFORSHARED... 
checking SHLIBS... $(LIBS)
checking for dlopen in -ldl... yes
checking for shl_load in -ldld... no
checking for library containing sem_init... -lpthread
checking for textdomain in -lintl... no
checking for t_open in -lnsl... no
checking for socket in -lsocket... no
checking for --with-libs... no
checking for pkg-config... /usr/bin/pkg-config
checking for --with-system-expat... no
checking for --with-system-ffi... no
checking for --with-dbmliborder... 
checking for --with-signal-module... yes
checking for --with-dec-threads... no
checking for --with-threads... yes
checking if PTHREAD_SCOPE_SYSTEM is supported... yes
checking for pthread_sigmask... yes
checking if --enable-ipv6 is specified... yes
checking if RFC2553 API is available... yes
checking ipv6 stack type... linux-glibc
checking for OSX 10.5 SDK or later... no
checking for --with-doc-strings... yes
checking for --with-tsc... no
checking for --with-pymalloc... yes
checking for --with-valgrind... no
checking for --with-wctype-functions... no
checking for dlopen... yes
checking DYNLOADFILE... dynload_shlib.o
checking MACHDEP_OBJS... MACHDEP_OBJS
checking for alarm... yes
checking for setitimer... yes
checking for getitimer... yes
checking for bind_textdomain_codeset... yes
checking for chown... yes
checking for clock... yes
checking for confstr... yes
checking for ctermid... yes
checking for execv... yes
checking for fchmod... yes
checking for fchown... yes
checking for fork... yes
checking for fpathconf... yes
checking for ftime... yes
checking for ftruncate... yes
checking for gai_strerror... yes
checking for getgroups... yes
checking for getlogin... yes
checking for getloadavg... yes
checking for getpeername... yes
checking for getpgid... yes
checking for getpid... yes
checking for getpriority... yes
checking for getresuid... yes
checking for getresgid... yes
checking for getpwent... yes
checking for getspnam... yes
checking for getspent... yes
checking for getsid... yes
checking for getwd... yes
checking for initgroups... yes
checking for kill... yes
checking for killpg... yes
checking for lchmod... no
checking for lchown... yes
checking for lstat... yes
checking for mkfifo... yes
checking for mknod... yes
checking for mktime... yes
checking for mremap... yes
checking for nice... yes
checking for pathconf... yes
checking for pause... yes
checking for plock... no
checking for poll... yes
checking for pthread_init... no
checking for putenv... yes
checking for readlink... yes
checking for realpath... yes
checking for select... yes
checking for sem_open... yes
checking for sem_timedwait... yes
checking for sem_getvalue... yes
checking for sem_unlink... yes
checking for setegid... yes
checking for seteuid... yes
checking for setgid... yes
checking for setlocale... yes
checking for setregid... yes
checking for setreuid... yes
checking for setsid... yes
checking for setpgid... yes
checking for setpgrp... yes
checking for setuid... yes
checking for setvbuf... yes
checking for snprintf... yes
checking for setlocale... (cached) yes
checking for setregid... (cached) yes
checking for setreuid... (cached) yes
checking for setresuid... yes
checking for setresgid... yes
checking for setsid... (cached) yes
checking for setpgid... (cached) yes
checking for setpgrp... (cached) yes
checking for setuid... (cached) yes
checking for setvbuf... (cached) yes
checking for snprintf... (cached) yes
checking for sigaction... yes
checking for siginterrupt... yes
checking for sigrelse... yes
checking for strftime... yes
checking for sysconf... yes
checking for tcgetpgrp... yes
checking for tcsetpgrp... yes
checking for tempnam... yes
checking for timegm... yes
checking for times... yes
checking for tmpfile... yes
checking for tmpnam... yes
checking for tmpnam_r... yes
checking for truncate... yes
checking for uname... yes
checking for unsetenv... yes
checking for utimes... yes
checking for waitpid... yes
checking for wait3... yes
checking for wait4... yes
checking for wcscoll... yes
checking for _getpty... no
checking for chroot... yes
checking for link... yes
checking for symlink... yes
checking for fchdir... yes
checking for fsync... yes
checking for fdatasync... yes
checking for epoll... yes
checking for kqueue... no
checking for ctermid_r... no
checking for flock declaration... yes
checking for flock... yes
checking for getpagesize... yes
checking for true... true
checking for inet_aton in -lc... yes
checking for chflags... no
checking for lchflags... no
checking for inflateCopy in -lz... yes
checking for hstrerror... yes
checking for inet_aton... yes
checking for inet_pton... yes
checking for setgroups... yes
checking for openpty... no
checking for openpty in -lutil... yes
checking for forkpty... yes
checking for memmove... yes
checking for fseek64... no
checking for fseeko... yes
checking for fstatvfs... yes
checking for ftell64... no
checking for ftello... yes
checking for statvfs... yes
checking for dup2... yes
checking for getcwd... yes
checking for strdup... yes
checking for getpgrp... yes
checking for setpgrp... (cached) yes
checking for gettimeofday... yes
checking for major... yes
checking for getaddrinfo... yes
checking getaddrinfo bug... no
checking for getnameinfo... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct stat.st_rdev... yes
checking for struct stat.st_blksize... yes
checking for struct stat.st_flags... no
checking for struct stat.st_gen... no
checking for struct stat.st_birthtime... no
checking for struct stat.st_blocks... yes
checking for time.h that defines altzone... no
checking whether sys/select.h and sys/time.h may both be included... yes
checking for addrinfo... yes
checking for sockaddr_storage... yes
checking whether char is unsigned... no
checking for an ANSI C-conforming const... yes
checking for working volatile... yes
checking for working signed char... yes
checking for prototypes... yes
checking for variable length prototypes and stdarg.h... yes
checking for socketpair... yes
checking if sockaddr has sa_len member... no
checking whether va_list is an array... yes
checking for gethostbyname_r... yes
checking gethostbyname_r with 6 args... yes
checking for __fpu_control... yes
checking for --with-fpectl... no
checking for --with-libm=STRING... default LIBM="-lm"
checking for --with-libc=STRING... default LIBC=""
checking whether C doubles are little-endian IEEE 754 binary64... yes
checking whether C doubles are big-endian IEEE 754 binary64... no
checking whether C doubles are ARM mixed-endian IEEE 754 binary64... no
checking whether we can use gcc inline assembler to get and set x87 control word... yes
checking for x87-style double rounding... no
checking whether tanh preserves the sign of zero... yes
checking for acosh... yes
checking for asinh... yes
checking for atanh... yes
checking for copysign... yes
checking for erf... yes
checking for erfc... yes
checking for expm1... yes
checking for finite... yes
checking for gamma... yes
checking for hypot... yes
checking for lgamma... yes
checking for log1p... yes
checking for round... yes
checking for tgamma... yes
checking whether isinf is declared... yes
checking whether isnan is declared... yes
checking whether isfinite is declared... yes
checking whether POSIX semaphores are enabled... yes
checking for broken sem_getvalue... no
checking digit size for Python's longs... no value specified
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking size of wchar_t... 4
checking for UCS-4 tcl... no
checking whether wchar_t is signed... yes
checking what type to use for unicode... unsigned short
checking whether byte ordering is bigendian... no
checking whether right shift extends the sign bit... yes
checking for getc_unlocked() and friends... yes
checking how to link readline libs... none
checking for rl_callback_handler_install in -lreadline... no
checking for rl_pre_input_hook in -lreadline... no
checking for rl_completion_display_matches_hook in -lreadline... no
checking for rl_completion_matches in -lreadline... no
checking for broken nice()... no
checking for broken poll()... no
checking for struct tm.tm_zone... (cached) yes
checking for working tzset()... yes
checking for tv_nsec in struct stat... yes
checking for tv_nsec2 in struct stat... no
checking whether mvwdelch is an expression... no
checking whether WINDOW has _flags... no
checking for is_term_resized... no
checking for resize_term... no
checking for resizeterm... no
checking for /dev/ptmx... yes
checking for /dev/ptc... no
checking for %lld and %llu printf() format support... yes
checking for %zd printf() format support... yes
checking for socklen_t... yes
checking for build directories... done
configure: creating ./config.status
./config.status: line 487: syntax error near unexpected token `)'
./config.status: line 487: `    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;'


  STDERR:

# Command failed: /usr/bin/python -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=kivy --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/.buildozer/android/platform/build"
# 
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2

@AndreMiras
Copy link
Member

OK could be silly to ask, but I have to. Could you try to move your project to a different path, that doesn't have special characters like you have. I mean this is a bit uncommon path: /home/nickshu/Desktop/Backup/Research/AM_2018-09-12_-_GUI_for_Recording/DustyPhillips_O'Reilly/03_AdjustSize_sizehints/
So please trying building your project from your home directory, e.g. /home/nickshu/03_AdjustSize_sizehints/ to begin with and let see how it behave.
If that doesn't work too, please also share the new log, because it would still help to be sure to be sure you made it the way I imagine 😉

@nicolasshu
Copy link
Author

nicolasshu commented Sep 13, 2018

Hey! I did move it to the home directory and here was the log that it output!
This is interesting. I also tried to run it again on the original folder again but this time changing
DustyPhillips_O'Reilly/ to DustyPhillips_OReilly/ removing the apostrophe and I got the same output as the one below. I guess it doesn't like apostrophes =]

buildozer android debug
# Check configuration tokens
# Ensure build layout
# Check configuration tokens
# Preparing build
# Check requirements for android
# Run 'dpkg --version'
# Cwd None
Debian 'dpkg' package management program version 1.19.0.5 (amd64).
This is free software; see the GNU General Public License version 2 or
later for copying conditions. There is NO warranty.
# Search for Git (git)
#  -> found at /usr/bin/git
# Search for Cython (cython)
#  -> found at /home/nickshu/anaconda3/bin/cython
# Search for Java compiler (javac)
#  -> found at /usr/lib/jvm/java-11-openjdk-amd64/bin/javac
# Search for Java keytool (keytool)
#  -> found at /usr/lib/jvm/java-11-openjdk-amd64/bin/keytool
# Install platform
# Run 'pip install -q --user "appdirs" "colorama>=0.3.3" "sh>=1.10,<1.12.5" "jinja2" "six"'
# Cwd None
distributed 1.21.8 requires msgpack, which is not installed.
tensorflow 1.10.0 has requirement numpy<=1.14.5,>=1.13.3, but you'll have numpy 1.15.1 which is incompatible.
tensorflow 1.10.0 has requirement setuptools<=39.1.0, but you'll have setuptools 40.2.0 which is incompatible.
You are using pip version 10.0.1, however version 18.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
# Apache ANT found at /home/nickshu/.buildozer/android/platform/apache-ant-1.9.4
# Android SDK found at /home/nickshu/.buildozer/android/platform/android-sdk-20
# Android NDK found at /home/nickshu/.buildozer/android/platform/android-ndk-r9c
# Check application requirements
# Check garden requirements
# Compile platform
# Run '/usr/bin/python -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=kivy --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build"'
# Cwd /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Will compile for the following archs: armeabi-v7a
[INFO]:    Found Android API target in $ANDROIDAPI
[INFO]:    Available Android APIs are (19)
[INFO]:    Requested API target 19 is available, continuing.
[INFO]:    Found NDK dir in $ANDROIDNDK
[INFO]:    Got NDK version from $ANDROIDNDKVER
[INFO]:    Using Google NDK r9c
[INFO]:    Found virtualenv at /usr/local/bin/virtualenv
[INFO]:    Found the following toolchain versions: ['4.6', '4.8', 'clang3.3']
[INFO]:    Picking the latest gcc toolchain, here 4.8
[INFO]:    No existing dists meet the given requirements!
[INFO]:    No dist exists that meets your requirements, so one will be built.
[INFO]:    Found multiple valid dependency orders:
[INFO]:        ['hostpython2', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'python2', 'sdl2', 'six', 'pyjnius', u'kivy']
[INFO]:        ['hostpython3crystax', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'python3crystax', 'sdl2', 'six', 'pyjnius', u'kivy']
[INFO]:        ['hostpython2', 'pygame_bootstrap_components', 'python2', 'sdl', 'six', 'pygame', 'pyjnius', u'kivy']
[INFO]:    Using the first of these: ['hostpython2', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'python2', 'sdl2', 'six', 'pyjnius', u'kivy']
[INFO]:    The selected bootstrap is sdl2_gradle
[INFO]:    # Creating dist with sdl2_gradle bootstrap
[INFO]:    Dist will have name myapp and recipes (kivy)
[INFO]:    Dist will also contain modules () installed from pip
[INFO]:    -> running cp -r /home/nickshu/...(and 238 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Recipe build order is ['hostpython2', 'sdl2_image', 'sdl2_mixer', 'sdl2_ttf', 'python2', 'sdl2', 'six', 'pyjnius', u'kivy']
[INFO]:    # Downloading recipes 
[INFO]:    Downloading hostpython2
[INFO]:    -> running mkdir -p /home/nicks...(and 81 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/hostpython2
[INFO]:    -> running basename https://pyth...(and 44 more)
[INFO]:    hostpython2 download already cached, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading sdl2_image
[INFO]:    -> running mkdir -p /home/nicks...(and 80 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/sdl2_image
[INFO]:    -> running basename https://www...(and 62 more)
[INFO]:    sdl2_image download already cached, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading sdl2_mixer
[INFO]:    -> running mkdir -p /home/nicks...(and 80 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/sdl2_mixer
[INFO]:    -> running basename https://www...(and 62 more)
[INFO]:    sdl2_mixer download already cached, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading sdl2_ttf
[INFO]:    -> running mkdir -p /home/nicks...(and 78 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/sdl2_ttf
[INFO]:    -> running basename https://www....(and 58 more)
[INFO]:    sdl2_ttf download already cached, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading python2
[INFO]:    -> running mkdir -p /home/nicks...(and 77 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/python2
[INFO]:    -> running basename https://pyth...(and 44 more)
[INFO]:    python2 download already cached, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading sdl2
[INFO]:    -> running mkdir -p /home/nicks...(and 74 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/sdl2
[INFO]:    -> running basename https://www....(and 36 more)
[INFO]:    sdl2 download already cached, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading six
[INFO]:    -> running mkdir -p /home/nicks...(and 73 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/six
[INFO]:    -> running basename https://pypi...(and 50 more)
                                                   [INFO]:    six download already cached, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading pyjnius
[INFO]:    -> running mkdir -p /home/nicks...(and 77 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/pyjnius
[INFO]:    -> running basename https://gith...(and 38 more)
[INFO]:    pyjnius download already cached, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Downloading kivy
[INFO]:    -> running mkdir -p /home/nicks...(and 74 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/packages/kivy
[INFO]:    -> running basename https://gith...(and 35 more)
[INFO]:    kivy download already cached, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    # Building all recipes for arch armeabi-v7a
[INFO]:    # Unpacking recipes
[INFO]:    Unpacking hostpython2 for armeabi-v7a
[INFO]:    -> running basename https://pyth...(and 44 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/hostpython2/desktop
[INFO]:    hostpython2 is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking sdl2_image for armeabi-v7a
[INFO]:    -> running basename https://www...(and 62 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni
[INFO]:    sdl2_image is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking sdl2_mixer for armeabi-v7a
[INFO]:    -> running basename https://www...(and 62 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni
[INFO]:    sdl2_mixer is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking sdl2_ttf for armeabi-v7a
[INFO]:    -> running basename https://www....(and 58 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni
[INFO]:    sdl2_ttf is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking python2 for armeabi-v7a
[INFO]:    -> running basename https://pyth...(and 44 more)
                                [INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a
[INFO]:    python2 is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking sdl2 for armeabi-v7a
[INFO]:    -> running basename https://www....(and 36 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni
[INFO]:    sdl2 is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking six for armeabi-v7a
[INFO]:    -> running basename https://pypi...(and 50 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/six-python2/armeabi-v7a
[INFO]:    six is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking pyjnius for armeabi-v7a
[INFO]:    -> running basename https://gith...(and 38 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/pyjnius-python2-sdl2/armeabi-v7a
[INFO]:    pyjnius is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Unpacking kivy for armeabi-v7a
[INFO]:    -> running basename https://gith...(and 35 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/kivy-python2-sdl2/armeabi-v7a
[INFO]:    kivy is already unpacked, skipping
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    # Prebuilding recipes
[INFO]:    Prebuilding hostpython2 for armeabi-v7a
[INFO]:    -> running cp /home/nickshu/03_...(and 261 more)
[INFO]:    Prebuilding sdl2_image for armeabi-v7a
[INFO]:    sdl2_image has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for sdl2_image[armeabi-v7a]
[INFO]:    sdl2_image already patched, skipping
[INFO]:    Prebuilding sdl2_mixer for armeabi-v7a
[INFO]:    sdl2_mixer has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for sdl2_mixer[armeabi-v7a]
[INFO]:    sdl2_mixer already patched, skipping
[INFO]:    Prebuilding sdl2_ttf for armeabi-v7a
[INFO]:    sdl2_ttf has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding python2 for armeabi-v7a
[INFO]:    python2 has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for python2[armeabi-v7a]
[INFO]:    python2 already patched, skipping
[INFO]:    Prebuilding sdl2 for armeabi-v7a
[INFO]:    sdl2 has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for sdl2[armeabi-v7a]
[INFO]:    sdl2 already patched, skipping
[INFO]:    Prebuilding six for armeabi-v7a
[INFO]:    six has no prebuild_armeabi_v7a, skipping
[INFO]:    Prebuilding pyjnius for armeabi-v7a
[INFO]:    pyjnius has no prebuild_armeabi_v7a, skipping
[INFO]:    Applying patches for pyjnius[armeabi-v7a]
[INFO]:    pyjnius already patched, skipping
[INFO]:    Prebuilding kivy for armeabi-v7a
[INFO]:    kivy has no prebuild_armeabi_v7a, skipping
[INFO]:    # Building recipes
[INFO]:    Building hostpython2 for armeabi-v7a
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/hostpython2/desktop/hostpython2
[INFO]:    -> running configure
   [INFO]:    -> running make -j5les/Setup                           
           wor[INFO]:    -> running mv Parser/pgen hostpgen 52 more) 
[INFO]:    -> running mv python hostpython
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Building sdl2_image for armeabi-v7a
[INFO]:    Building sdl2_mixer for armeabi-v7a
[INFO]:    Building sdl2_ttf for armeabi-v7a
[INFO]:    Building python2 for armeabi-v7a
[INFO]:    -> running cp /home/nickshu/03_...(and 235 more)
[INFO]:    -> running cp /home/nickshu/03_...(and 233 more)
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a/python2
[INFO]:    -> running cp /home/nickshu/03_...(and 132 more)
[INFO]:    -> running gcc -dumpmachine
[INFO]:    -> running configure --host=arm...(and 232 more)
                                                  [INFO]:    -> running make -j5 install HOS...(and 328 more)
First install (expected to fail...
           working:      if (clearto >= self->length) rException in thread background thread for pid 19232:
Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner
    self.run()
  File "/usr/lib/python2.7/threading.py", line 754, in run
    self.__target(*self.__args, **self.__kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 1540, in wrap
    fn(*args, **kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2459, in background_thread
    handle_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2157, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
ErrorReturnCode_2: 

  RAN: /usr/bin/make -j5 install HOSTPYTHON=/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a/python2/hostpython HOSTPGEN=/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a/python2/hostpython CROSS_COMPILE_TARGET=yes INSTSONAME=libpython2.7.so

  STDOUT:
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/python.o ./Modules/python.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/acceler.o Parser/acceler.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/grammar1.o Parser/grammar1.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/listnode.o Parser/listnode.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/node.o Parser/node.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/parser.o Parser/parser.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/parsetok.o Parser/parsetok.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/bitset.o Parser/bitset.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/metagrammar.o Parser/metagrammar.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/firstsets.o Parser/firstsets.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/grammar.o Parser/grammar.c
Parser/parsetok.c: In function 'parsetok':
Parser/parsetok.c:134:43: warning: variable 'handling_with' set but not used [-Wunused-but-set-variable]
     int started = 0, handling_import = 0, handling_with = 0;
                                           ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/pgen.o Parser/pgen.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/myreadline.o Parser/myreadline.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/tokenizer.o Parser/tokenizer.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/abstract.o Objects/abstract.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/boolobject.o Objects/boolobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/bufferobject.o Objects/bufferobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/bytes_methods.o Objects/bytes_methods.c
Parser/pgen.c: In function 'compile_atom':
Parser/pgen.c:282:9: warning: variable 'i' set but not used [-Wunused-but-set-variable]
     int i;
         ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/bytearrayobject.o Objects/bytearrayobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/capsule.o Objects/capsule.c
Objects/bufferobject.c: In function 'buffer_repr':
Objects/bufferobject.c:296:36: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                                    self);
                                    ^
Objects/bufferobject.c:304:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
             self);
             ^
Objects/bufferobject.c:304:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/cellobject.o Objects/cellobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/classobject.o Objects/classobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/cobject.o Objects/cobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/codeobject.o Objects/codeobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/complexobject.o Objects/complexobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/descrobject.o Objects/descrobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/enumobject.o Objects/enumobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/exceptions.o Objects/exceptions.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/genobject.o Objects/genobject.c
Objects/bytearrayobject.c: In function 'bytearray_ass_subscript':
Objects/bytearrayobject.c:735:30: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                              needed, slicelen);
                              ^
Objects/bytearrayobject.c:735:30: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
Objects/bytearrayobject.c: In function 'bytearray_fromhex':
Objects/bytearrayobject.c:2716:26: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                          "fromhex() arg at position %zd", i);
                          ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/fileobject.o Objects/fileobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/floatobject.o Objects/floatobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/frameobject.o Objects/frameobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/funcobject.o Objects/funcobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/intobject.o Objects/intobject.c
Objects/exceptions.c: In function 'UnicodeEncodeError_str':
Objects/exceptions.c:1670:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
             PyString_AS_STRING(reason_str));
             ^
Objects/exceptions.c:1678:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
             PyString_AS_STRING(reason_str));
             ^
Objects/exceptions.c:1678:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'long int' [-Wformat=]
Objects/exceptions.c: In function 'UnicodeDecodeError_str':
Objects/exceptions.c:1751:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
             PyString_AS_STRING(reason_str));
             ^
Objects/exceptions.c:1759:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
             PyString_AS_STRING(reason_str));
             ^
Objects/exceptions.c:1759:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'long int' [-Wformat=]
Objects/exceptions.c: In function 'UnicodeTranslateError_str':
Objects/exceptions.c:1848:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
             PyString_AS_STRING(reason_str));
             ^
Objects/exceptions.c:1854:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 2 has type 'Py_ssize_t' [-Wformat=]
             PyString_AS_STRING(reason_str));
             ^
Objects/exceptions.c:1854:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'long int' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/iterobject.o Objects/iterobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/listobject.o Objects/listobject.c
Objects/funcobject.c: In function 'func_set_code':
Objects/funcobject.c:258:22: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                      nclosure, nfree);
                      ^
Objects/funcobject.c:258:22: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
Objects/funcobject.c: In function 'func_new':
Objects/funcobject.c:413:29: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                             nfree, nclosure);
                             ^
Objects/funcobject.c:413:29: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/longobject.o Objects/longobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/dictobject.o Objects/dictobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/memoryobject.o Objects/memoryobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/methodobject.o Objects/methodobject.c
Objects/methodobject.c: In function 'PyCFunction_Call':
Objects/methodobject.c:93:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                 f->m_ml->ml_name, size);
                 ^
Objects/methodobject.c:104:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                 f->m_ml->ml_name, size);
                 ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/moduleobject.o Objects/moduleobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/object.o Objects/object.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/obmalloc.o Objects/obmalloc.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/rangeobject.o Objects/rangeobject.c
Objects/listobject.c: In function 'list_ass_subscript':
Objects/listobject.c:2713:26: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                          slicelength);
                          ^
Objects/listobject.c:2713:26: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/setobject.o Objects/setobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/sliceobject.o Objects/sliceobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/stringobject.o Objects/stringobject.c
Objects/dictobject.c: In function 'insertdict':
Objects/dictobject.c:517:28: warning: typedef 'lookupfunc' locally defined but not used [-Wunused-local-typedefs]
     typedef PyDictEntry *(*lookupfunc)(PyDictObject *, PyObject *, long);
                            ^
Objects/dictobject.c: In function 'PyDict_MergeFromSeq2':
Objects/dictobject.c:1474:21: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                     i);
                     ^
Objects/dictobject.c:1482:26: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                          i, n);
                          ^
Objects/dictobject.c:1482:26: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/structseq.o Objects/structseq.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/tupleobject.o Objects/tupleobject.c
Objects/structseq.c: In function 'structseq_new':
Objects/structseq.c:179:34: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                                  type->tp_name, min_len, len);
                                  ^
Objects/structseq.c:179:34: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
Objects/structseq.c:187:34: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                                  type->tp_name, max_len, len);
                                  ^
Objects/structseq.c:187:34: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
Objects/structseq.c:196:34: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                                  type->tp_name, min_len, len);
                                  ^
Objects/structseq.c:196:34: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/typeobject.o Objects/typeobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/weakrefobject.o Objects/weakrefobject.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/unicodeobject.o Objects/unicodeobject.c
Objects/setobject.c: In function 'set_insert_key':
Objects/setobject.c:215:25: warning: typedef 'lookupfunc' locally defined but not used [-Wunused-local-typedefs]
     typedef setentry *(*lookupfunc)(PySetObject *, PyObject *, long);
                         ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Objects/unicodectype.o Objects/unicodectype.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/_warnings.o Python/_warnings.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/Python-ast.o Python/Python-ast.c
Objects/stringobject.c: In function 'PyString_FromFormatV':
Objects/stringobject.c:331:25: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                         va_arg(vargs, Py_ssize_t));
                         ^
Objects/stringobject.c: In function 'string_join':
Objects/stringobject.c:1626:26: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                          i, Py_TYPE(item)->tp_name);
                          ^
Objects/stringobject.c: In function 'PyString_Format':
Objects/stringobject.c:4551:32: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'long int' [-Wformat=]
                                PyString_AsString(format)));
                                ^
Objects/stringobject.c: In function '_Py_ReleaseInternedStrings':
Objects/stringobject.c:4797:9: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
         n);
         ^
Objects/stringobject.c:4819:21: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                     "mortal/immortal\n", mortal_size, immortal_size);
                     ^
Objects/stringobject.c:4819:21: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/asdl.o Python/asdl.c
Python/_warnings.c: In function 'get_filter':
Python/_warnings.c:134:26: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                          MODULE_NAME ".filters item %zd isn't a 5-tuple", i);
                          ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/mysnprintf.o Python/mysnprintf.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pyctype.o Python/pyctype.c
Objects/typeobject.c: In function 'check_num_args':
Objects/typeobject.c:4166:9: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
         "expected %d arguments, got %zd", n, PyTuple_GET_SIZE(ob));
         ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/tokenizer_pgen.o Parser/tokenizer_pgen.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/printgrammar.o Parser/printgrammar.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Parser/pgenmain.o Parser/pgenmain.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/bltinmodule.o Python/bltinmodule.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/ceval.o Python/ceval.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/codecs.o Python/codecs.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/errors.o Python/errors.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/frozen.o Python/frozen.c
Python/bltinmodule.c: In function 'builtin_ord':
Python/bltinmodule.c:1533:18: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                  size);
                  ^
Python/bltinmodule.c: In function 'builtin_zip':
Python/bltinmodule.c:2529:21: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'long int' [-Wformat=]
                     i+1);
                     ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/frozenmain.o Python/frozenmain.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/future.o Python/future.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getargs.o Python/getargs.c
Objects/unicodeobject.c: In function 'unicode_decode_call_errorhandler':
Objects/unicodeobject.c:1449:9: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
         PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", newpos);
         ^
Objects/unicodeobject.c: In function 'unicode_encode_call_errorhandler':
Objects/unicodeobject.c:3555:9: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
         PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos);
         ^
Objects/unicodeobject.c: In function 'unicode_translate_call_errorhandler':
Objects/unicodeobject.c:4829:9: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
         PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos);
         ^
Objects/unicodeobject.c: In function 'PyUnicodeUCS2_Join':
Objects/unicodeobject.c:5620:26: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                          i, Py_TYPE(item)->tp_name);
                          ^
Objects/unicodeobject.c: In function 'PyUnicodeUCS2_Format':
Objects/unicodeobject.c:8588:43: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'long int' [-Wformat=]
                                           PyUnicode_AS_UNICODE(uformat)));
                                           ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getcompiler.o Python/getcompiler.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getcopyright.o Python/getcopyright.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -DPLATFORM='"linux4"' -o Python/getplatform.o ./Python/getplatform.c
Python/Python-ast.c: In function 'ast_type_init':
Python/Python-ast.c:408:26: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
                          numfields, numfields == 1 ? "" : "s");
                          ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getversion.o Python/getversion.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/import.o Python/import.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -I. -o Python/importdl.o ./Python/importdl.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/marshal.o Python/marshal.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/modsupport.o Python/modsupport.c
Python/getargs.c: In function 'PyArg_UnpackTuple':
Python/getargs.c:1850:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
                 name, (min == max ? "" : "at least "), min, l);
                 ^
Python/getargs.c:1850:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 6 has type 'Py_ssize_t' [-Wformat=]
Python/getargs.c:1856:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                 (min == max ? "" : "at least "), min, l);
                 ^
Python/getargs.c:1856:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
Python/getargs.c:1865:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
                 name, (min == max ? "" : "at most "), max, l);
                 ^
Python/getargs.c:1865:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 6 has type 'Py_ssize_t' [-Wformat=]
Python/getargs.c:1871:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
                 (min == max ? "" : "at most "), max, l);
                 ^
Python/getargs.c:1871:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/mystrtoul.o Python/mystrtoul.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/peephole.o Python/peephole.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pyarena.o Python/pyarena.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pyfpe.o Python/pyfpe.c
Python/pyarena.c: In function 'PyArena_Free':
Python/pyarena.c:162:9: warning: variable 'r' set but not used [-Wunused-but-set-variable]
     int r;
         ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pymath.o Python/pymath.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pystate.o Python/pystate.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pythonrun.o Python/pythonrun.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/structmember.o Python/structmember.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/sysmodule.o Python/sysmodule.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/traceback.o Python/traceback.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/getopt.o Python/getopt.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pystrcmp.o Python/pystrcmp.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/pystrtod.o Python/pystrtod.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/dtoa.o Python/dtoa.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/formatter_unicode.o Python/formatter_unicode.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/formatter_string.o Python/formatter_string.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/dynload_shlib.o Python/dynload_shlib.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Python/thread.o Python/thread.c
Python/dynload_shlib.c: In function '_PyImport_GetDynLoadFunc':
Python/dynload_shlib.c:79:33: warning: initialization makes pointer from integer without a cast [enabled by default]
     static void *libpymodules = -1;
                                 ^
Python/dynload_shlib.c:83:22: warning: comparison between pointer and integer [enabled by default]
     if (libpymodules == -1) {
                      ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/config.o Modules/config.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -DPYTHONPATH='":plat-linux4:lib-tk:lib-old"' \
	-DPREFIX='"/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a/python2/python-install"' \
	-DEXEC_PREFIX='"/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a/python2/python-install"' \
	-DVERSION='"2.7"' \
	-DVPATH='""' \
	-o Modules/getpath.o ./Modules/getpath.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/main.o Modules/main.c
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE -o Modules/gcmodule.o Modules/gcmodule.c
In file included from Python/thread.c:121:0:
Python/thread_pthread.h: In function 'PyThread_free_lock':
Python/thread_pthread.h:392:17: warning: variable 'error' set but not used [-Wunused-but-set-variable]
     int status, error = 0;
                 ^
Python/thread_pthread.h: In function 'PyThread_release_lock':
Python/thread_pthread.h:443:17: warning: variable 'error' set but not used [-Wunused-but-set-variable]
     int status, error = 0;
                 ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/threadmodule.c -o Modules/threadmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/signalmodule.c -o Modules/signalmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/posixmodule.c -o Modules/posixmodule.o
./Modules/threadmodule.c: In function 'thread_stack_size':
./Modules/threadmodule.c:815:22: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                      new_size);
                      ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/errnomodule.c -o Modules/errnomodule.o
Modules/gcmodule.c: In function 'collect':
Modules/gcmodule.c:845:31: warning: format '%zd' expects argument of type 'signed size_t', but argument 2 has type 'Py_ssize_t' [-Wformat=]
                               gc_list_size(GEN_HEAD(i)));
                               ^
Modules/gcmodule.c:950:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 2 has type 'Py_ssize_t' [-Wformat=]
                 n+m, n);
                 ^
Modules/gcmodule.c:950:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/pwdmodule.c -o Modules/pwdmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_sre.c -o Modules/_sre.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_codecsmodule.c -o Modules/_codecsmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/zipimport.c -o Modules/zipimport.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/symtablemodule.c -o Modules/symtablemodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/arraymodule.c -o Modules/arraymodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/cmathmodule.c -o Modules/cmathmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/mathmodule.c -o Modules/mathmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_struct.c -o Modules/_struct.o
./Modules/arraymodule.c: In function 'array_ass_subscr':
./Modules/arraymodule.c:1836:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                 needed, slicelength);
                 ^
./Modules/arraymodule.c:1836:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/timemodule.c -o Modules/timemodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/operator.c -o Modules/operator.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_weakref.c -o Modules/_weakref.o
./Modules/_struct.c: In function '_range_error':
./Modules/_struct.c:323:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
             largest);
             ^
./Modules/_struct.c:323:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 5 has type 'Py_ssize_t' [-Wformat=]
./Modules/_struct.c: In function 's_unpack':
./Modules/_struct.c:1469:9: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
         soself->s_size);
         ^
./Modules/_struct.c: In function 's_unpack_from':
./Modules/_struct.c:1512:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
             soself->s_size);
             ^
./Modules/_struct.c: In function 's_pack':
./Modules/_struct.c:1606:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
             "pack requires exactly %zd arguments", soself->s_len);
             ^
./Modules/_struct.c: In function 's_pack_into':
./Modules/_struct.c:1647:22: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'long int' [-Wformat=]
                      (soself->s_len + 2));
                      ^
./Modules/_struct.c:1671:22: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                      soself->s_size);
                      ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_randommodule.c -o Modules/_randommodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_collectionsmodule.c -o Modules/_collectionsmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/itertoolsmodule.c -o Modules/itertoolsmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/stropmodule.c -o Modules/stropmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_functoolsmodule.c -o Modules/_functoolsmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -I./Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI -c ./Modules/_elementtree.c -o Modules/_elementtree.o
./Modules/_collectionsmodule.c: In function 'deque_clearmethod':
./Modules/_collectionsmodule.c:707:9: warning: variable 'rv' set but not used [-Wunused-but-set-variable]
     int rv;
         ^
./Modules/_collectionsmodule.c: In function 'deque_repr':
./Modules/_collectionsmodule.c:817:33: warning: format '%zd' expects argument of type 'signed size_t', but argument 2 has type 'Py_ssize_t' [-Wformat=]
                                 ((dequeobject *)deque)->maxlen);
                                 ^
./Modules/_collectionsmodule.c: In function 'deque_tp_print':
./Modules/_collectionsmodule.c:879:9: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
         fprintf(fp, "], maxlen=%" PY_FORMAT_SIZE_T "d)", ((dequeobject *)deque)->maxlen);
         ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/datetimemodule.c -o Modules/datetimemodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/_bisectmodule.c -o Modules/_bisectmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/fcntlmodule.c -o Modules/fcntlmodule.o
./Modules/itertoolsmodule.c: In function 'count_repr':
./Modules/itertoolsmodule.c:3357:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 2 has type 'Py_ssize_t' [-Wformat=]
                 return PyString_FromFormat("count(%zd)", lz->cnt);
                 ^
./Modules/itertoolsmodule.c: In function 'izip_new':
./Modules/itertoolsmodule.c:3490:21: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'long int' [-Wformat=]
                     i+1);
                     ^
./Modules/itertoolsmodule.c: In function 'repeat_repr':
./Modules/itertoolsmodule.c:3710:13: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
             PyString_AS_STRING(objrepr), ro->cnt);
             ^
./Modules/itertoolsmodule.c: In function 'izip_longest_new':
./Modules/itertoolsmodule.c:3829:21: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'long int' [-Wformat=]
                     i+1);
                     ^
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/selectmodule.c -o Modules/selectmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/socketmodule.c -o Modules/socketmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/md5module.c -o Modules/md5module.o
./Modules/_elementtree.c: In function 'element_ass_subscr':
./Modules/_elementtree.c:1377:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 3 has type 'Py_ssize_t' [-Wformat=]
                 );
                 ^
./Modules/_elementtree.c:1377:17: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'Py_ssize_t' [-Wformat=]
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/md5.c -o Modules/md5.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/shamodule.c -o Modules/shamodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/sha256module.c -o Modules/sha256module.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/sha512module.c -o Modules/sha512module.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/binascii.c -o Modules/binascii.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/parsermodule.c -o Modules/parsermodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/cStringIO.c -o Modules/cStringIO.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/cPickle.c -o Modules/cPickle.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a/python2/python-install/include -c ./Modules/zlibmodule.c -o Modules/zlibmodule.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -I./Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI -c ./Modules/expat/xmlparse.c -o Modules/xmlparse.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -I./Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI -c ./Modules/expat/xmlrole.c -o Modules/xmlrole.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -I./Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI -c ./Modules/expat/xmltok.c -o Modules/xmltok.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -I./Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI -c ./Modules/pyexpat.c -o Modules/pyexpat.o
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -fno-strict-aliasing -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -DNO_MALLINFO -DNDEBUG -g  -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include  -fPIC -DPy_BUILD_CORE  -c ./Modules/xxsubtype.c -o Modules/xxsubtype.o
/usr/bin/install -c -m 644 ./Tools/gdb/libpython.py python-gdb.py
mkdir ./Lib/plat-linux4
cp ./Lib/plat-generic/regen ./Lib/plat-linux4/regen
export PATH; PATH="`pwd`:$PATH"; \
export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
export EXE; EXE=""; \
cd ./Lib/plat-linux4; LD_LIBRARY_PATH=/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a/python2: ./regen
python$EXE ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h
Fatal Python error: Py_Initialize: Unable to get the locale encoding
  File "/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/python2/armeabi-v7a/python2/Lib/encodings/__init__.py", line 123
    raise CodecRegistryError,\
                            ^
SyntaxError: invalid syntax

Current thread 0x00007f91c396d740 (most recent call first):
Aborted (core dumped)
Makefile:971: recipe for target 'Lib/plat-linux4' failed
make: *** [Lib/plat-linux4] Error 134
make: *** Waiting for unfinished jobs....
./Modules/cPickle.c: In function 'load':
./Modules/cPickle.c:4460:8: warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Wstrict-overflow]
     if (!( (len=self->stack->length) >= x
        ^
./Modules/cPickle.c: In function 'Unpickler_noload':
./Modules/cPickle.c:202:8: warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Wstrict-overflow]
     if (clearto >= self->length) return 0;
        ^
./Modules/cPickle.c:202:8: warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Wstrict-overflow]
     if (clearto >= self->length) return 0;
        ^


  STDERR:


[INFO]:    -> running touch python.exe python
[INFO]:    -> running make -j5 install HOS...(and 328 more)
First python2 make failed. This is expected, trying again.           
Second install (expected to work)
   [INFO]:    -> running rm -rf python-install...(and 19 more) more) 
[INFO]:    -> running rm -rf python-install...(and 25 more)
[INFO]:    -> running rm -rf python-install...(and 21 more)
[INFO]:    -> running rm -rf python-install...(and 27 more)
[INFO]:    -> running rm -rf python-install...(and 29 more)
[INFO]:    -> running rm -rf python-install...(and 28 more)
[INFO]:    -> running rm -rf python-install...(and 26 more)
[INFO]:    -> running rm -rf python-install...(and 30 more)
[INFO]:    -> running rm -rf python-install...(and 25 more)
[INFO]:    -> running rm -rf python-install...(and 21 more)
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    -> running cp -a /home/nickshu/...(and 219 more)
[INFO]:    Copying hostpython binary to targetpython folder
[INFO]:    -> running cp /home/nickshu/03_...(and 232 more)
[INFO]:    -> running cp /home/nickshu/03_...(and 230 more)
[INFO]:    Building sdl2 for armeabi-v7a
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni
[INFO]:    -> running ndk-build V=1
           working: /usr/bin/ccache /home/nickshu/...(and 1587 mor[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Building six for armeabi-v7a
[INFO]:    six apparently isn't already in site-packages
[INFO]:    Installing six into site-packages
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/six-python2/armeabi-v7a/six
[INFO]:    -> running python.host setup.py install -O2
           working: creating build/lib               [INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Building pyjnius for armeabi-v7a
[INFO]:    jnius apparently isn't already in site-packages
[INFO]:    Cythonizing anything necessary in pyjnius
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/pyjnius-python2-sdl2/armeabi-v7a/pyjnius
[INFO]:    -> running python.host -c import...(and 21 more)
[INFO]:    Trying first build of pyjnius to get cython files: this is expected to fail
[INFO]:    -> running python.host setup.py build_ext -v
('cwd is', '/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/pyjnius-python2-sdl2/armeabi-v7a/pyjnius')
Exception in thread background thread for pid 27588:
Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner
    self.run()
  File "/usr/lib/python2.7/threading.py", line 754, in run
    self.__target(*self.__args, **self.__kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 1540, in wrap
    fn(*args, **kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2459, in background_thread
    handle_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2157, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
ErrorReturnCode_1: 

  RAN: /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/bin/python.host setup.py build_ext -v

  STDOUT:
/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
  warnings.warn(msg)
running build_ext
building 'jnius' extension
creating build
creating build/temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/jnius
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c jnius/jnius.c -o build/temp.linux-x86_64-2.7/jnius/jnius.o
arm-linux-androideabi-gcc: error: jnius/jnius.c: No such file or directory
arm-linux-androideabi-gcc: fatal error: no input files
compilation terminated.
error: command '/usr/bin/ccache' failed with exit status 1


  STDERR:


[INFO]:    pyjnius first build failed (as expected)
[INFO]:    Running cython where appropriate
[INFO]:    Cythonize jnius/jnius.pyx
[INFO]:    -> running cython ./jnius/jnius.pyx
()                                                                   
           working: warning: jnius/jnius.pyx:2:0: _..[INFO]:    -> running python.host setup.py build_ext -v
           working: [INFO]:    Stripping object files.(and 89 more)  
[INFO]:    -> running find ./build/lib.lin...(and 79 more)
[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Installing pyjnius into site-packages
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/pyjnius-python2-sdl2/armeabi-v7a/pyjnius
[INFO]:    -> running python.host setup.py install -O2
           working: Writing /home/nickshu/03_Adjust...(an[INFO]:    <- directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain
[INFO]:    Building kivy for armeabi-v7a
[INFO]:    kivy apparently isn't already in site-packages
[INFO]:    Cythonizing anything necessary in kivy
[INFO]:    -> directory context /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/kivy-python2-sdl2/armeabi-v7a/kivy
[INFO]:    -> running python.host -c import...(and 21 more)
[INFO]:    Trying first build of kivy to get cython files: this is expected to fail
[INFO]:    -> running python.host setup.py build_ext -v
('cwd is', '/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/other_builds/kivy-python2-sdl2/armeabi-v7a/kivy')
           working: creating builException in thread background thread for pid 27683:
Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner
    self.run()
  File "/usr/lib/python2.7/threading.py", line 754, in run
    self.__target(*self.__args, **self.__kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 1540, in wrap
    fn(*args, **kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2459, in background_thread
    handle_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2157, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
ErrorReturnCode_1: 

  RAN: /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/bin/python.host setup.py build_ext -v

  STDOUT:
Using distutils
Environ change use_sdl2 -> True

Cython check avoided.
Using this graphics system: OpenGL ES 2
SDL2 found via pkg-config
SDL2: found SDL header at /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni/SDL/include/SDL.h
SDL2: found SDL_mixer header at /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni/SDL2_mixer/SDL_mixer.h
SDL2: found SDL_ttf header at /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni/SDL2_ttf/SDL_ttf.h
SDL2: found SDL_image header at /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni/SDL2_image/SDL_image.h
fatal: not a git repository (or any of the parent directories): .git
 /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'setup_requires'
   warnings.warn(msg)
 /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'dependency_links'
   warnings.warn(msg)
 /home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
   warnings.warn(msg)
running build_ext
Build configuration is:
 * use_rpi = 0
 * use_mali = 0
 * use_egl = 0
 * use_opengl_es2 = 1
 * use_opengl_mock = 0
 * use_sdl2 = 1
 * use_ios = 0
 * use_mesagl = 0
 * use_x11 = 0
 * use_gstreamer = 0
 * use_avfoundation = 0
 * use_osx_frameworks = 0
 * debug_gl = 0
 * debug = False
Updated kivy/include/config.h
Updated kivy/include/config.pxi
Updated kivy/setupconfig.py
Detected compiler is unix
building 'kivy.core.text._text_sdl2' extension
creating build
creating build/temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/kivy
creating build/temp.linux-x86_64-2.7/kivy/core
creating build/temp.linux-x86_64-2.7/kivy/core/text
/usr/bin/ccache arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -DANDROID -mandroid -fomit-frame-pointer -D__ANDROID_API__=19 -I/home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -isysroot /home/nickshu/.buildozer/android/platform/android-ndk-r9c/platforms/android-19/arch-arm -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -Ikivy/include -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni/SDL/include -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni/SDL2_image -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni/SDL2_mixer -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/bootstrap_builds/sdl2_gradle-python2/jni/SDL2_ttf -I/usr/include/SDL2 -I/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build/build/python-installs/myapp/include/python2.7 -c kivy/core/text/_text_sdl2.c -o build/temp.linux-x86_64-2.7/kivy/core/text/_text_sdl2.o
arm-linux-androideabi-gcc: error: kivy/core/text/_text_sdl2.c: No such file or directory
arm-linux-androideabi-gcc: fatal error: no input files
compilation terminated.
 error: command '/usr/bin/ccache' failed with exit status 1


  STDERR:


[INFO]:    kivy first build failed (as expected)
[INFO]:    Running cython where appropriate
[INFO]:    Cythonize kivy/properties.pyx
[INFO]:    -> running cython ./kivy/properties.pyx
[INFO]:    Cythonize kivy/_clock.pyx
[INFO]:    -> running cython ./kivy/_clock.pyx
[INFO]:    Cythonize kivy/weakproxy.pyx
[INFO]:    -> running cython ./kivy/weakproxy.pyx
[INFO]:    Cythonize kivy/_event.pyx
[INFO]:    -> running cython ./kivy/_event.pyx
[INFO]:    Cythonize kivy/graphics/context_instructions.pyx
[INFO]:    -> running cython ./kivy/graphic...(and 26 more)
[INFO]:    Cythonize kivy/graphics/stencil_instructions.pyx
[INFO]:    -> running cython ./kivy/graphic...(and 26 more)
[INFO]:    Cythonize kivy/graphics/gl_instructions.pyx
[INFO]:    -> running cython ./kivy/graphic...(and 21 more)
[INFO]:    Cythonize kivy/graphics/vertex.pyx
[INFO]:    -> running cython ./kivy/graphics/vertex.pyx
[INFO]:    Cythonize kivy/graphics/vbo.pyx
[INFO]:    -> running cython ./kivy/graphics/vbo.pyx
[INFO]:    Cythonize kivy/graphics/opengl.pyx
[INFO]:    -> running cython ./kivy/graphics/opengl.pyx
[INFO]:    Cythonize kivy/graphics/vertex_instructions.pyx
[INFO]:    -> running cython ./kivy/graphic...(and 25 more)
[INFO]:    Cythonize kivy/graphics/scissor_instructions.pyx
[INFO]:    -> running cython ./kivy/graphic...(and 26 more)
[INFO]:    Cythonize kivy/graphics/tesselator.pyx
[INFO]:    -> running cython ./kivy/graphics/tesselator.pyx
[INFO]:    Cythonize kivy/graphics/compiler.pyx
[INFO]:    -> running cython ./kivy/graphics/compiler.pyx
[INFO]:    Cythonize kivy/graphics/opengl_utils.pyx
[INFO]:    -> running cython ./kivy/graphic...(and 18 more)
[INFO]:    Cythonize kivy/graphics/svg.pyx
[INFO]:    -> running cython ./kivy/graphics/svg.pyx
()                                                                   
           working: ...                                  Exception in thread background thread for pid 27858:
Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner
    self.run()
  File "/usr/lib/python2.7/threading.py", line 754, in run
    self.__target(*self.__args, **self.__kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 1540, in wrap
    fn(*args, **kwargs)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2459, in background_thread
    handle_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 2157, in fn
    return self.command.handle_command_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
ErrorReturnCode_1: 

  RAN: /home/nickshu/anaconda3/bin/cython ./kivy/graphics/svg.pyx

  STDOUT:

Error compiling Cython file:
------------------------------------------------------------
...
                end = time()
                Logger.debug("Svg: Loaded {} in {:.2f}s".format(filename, end - start))
            finally:
                fd.close()

    cdef void reload(self) except *:
        ^
------------------------------------------------------------

kivy/graphics/svg.pyx:469:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
        cpdef flag_update(self, int do_parent=?, list _instrs=?)
    ELSE:
        cpdef flag_update(self, int do_parent=?)
    cdef void flag_update_done(self)
    cdef void set_parent(self, Instruction parent)
    cdef void reload(self)
                   ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:36:20: Previous declaration is here


  STDERR:


Traceback (most recent call last):
  File "/usr/lib/python2.7/runpy.py", line 174, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
    exec code in run_globals
  File "/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 978, in <module>
    main()
  File "/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 975, in main
    ToolchainCL()
  File "/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 512, in __init__
    getattr(self, args.subparser_name.replace('-', '_'))(args)
  File "/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 149, in wrapper_func
    build_dist_from_args(ctx, dist, args)
  File "/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/toolchain.py", line 193, in build_dist_from_args
    build_recipes(build_order, python_modules, ctx)
  File "pythonforandroid/build.py", line 573, in build_recipes
  File "pythonforandroid/recipe.py", line 928, in build_arch
  File "pythonforandroid/recipe.py", line 963, in build_cython_components
  File "/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/python-for-android-new-toolchain/pythonforandroid/recipes/kivy/__init__.py", line 18, in cythonize_build
    super(KivyRecipe, self).cythonize_build(env, build_dir=build_dir)
  File "pythonforandroid/recipe.py", line 1008, in cythonize_build
  File "pythonforandroid/recipe.py", line 999, in cythonize_file
  File "pythonforandroid/logger.py", line 175, in shprint
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 863, in next
    self.wait()
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 792, in wait
    self.handle_command_exit_code(exit_code)
  File "/home/nickshu/.local/lib/python2.7/site-packages/sh.py", line 815, in handle_command_exit_code
    raise exc
sh.ErrorReturnCode_1: 

  RAN: /home/nickshu/anaconda3/bin/cython ./kivy/graphics/svg.pyx

  STDOUT:

Error compiling Cython file:
------------------------------------------------------------
...
                end = time()
                Logger.debug("Svg: Loaded {} in {:.2f}s".format(filename, end - start))
            finally:
                fd.close()

    cdef void reload(self) except *:
        ^
------------------------------------------------------------

kivy/graphics/svg.pyx:469:9: Signature not compatible with previous declaration

Error compiling Cython file:
------------------------------------------------------------
...
        cpdef flag_update(self, int do_parent=?, list _instrs=?)
    ELSE:
        cpdef flag_update(self, int do_parent=?)
    cdef void flag_update_done(self)
    cdef void set_parent(self, Instruction parent)
    cdef void reload(self)
                   ^
------------------------------------------------------------

kivy/graphics/instructions.pxd:36:20: Previous declaration is here


  STDERR:

# Command failed: /usr/bin/python -m pythonforandroid.toolchain create --dist_name=myapp --bootstrap=sdl2 --requirements=kivy --arch armeabi-v7a --copy-libs --color=always --storage-dir="/home/nickshu/03_AdjustSize_sizehints/.buildozer/android/platform/build"
# 
# Buildozer failed to execute the last command
# The error might be hidden in the log above this error
# Please read the full log, and search for it before
# raising an issue with buildozer itself.
# In case of a bug report, please add a full log with log_level = 2

@AndreMiras
Copy link
Member

Yes exactly that was my guess. Let's leave this ticket open and the goal would be to fix apostrophes breaking the build.

For the other problems you're having, let's not track it here because it's different and probably already documented as "use the documented Cython version" rather than a too up to date one". Well that's the idea. Please let's not discuss that "Signature not compatible with previous declaration" on this ticket. Use the search and/or IRC if you're stuck. And if you really think it's a buildozer/p4a bug that doesn't have a ticket yet, then please create one.

@nicolasshu
Copy link
Author

Perfect. Thank you very much! I appreciate it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants