kivy / buildozer

Generic Python packager for Android and iOS
https://buildozer.readthedocs.io
MIT License
1.75k stars 503 forks source link

Error in build numpy with docker #1557

Closed ricky1192 closed 1 year ago

ricky1192 commented 1 year ago

Versions

Docker: kivy/buildozer:latest

Description

Error in build with docker

buildozer.spec

Command:

docker run -it --volume "$(pwd)":/home/user/hostcwd buildozer -v android debug deploy run logcat

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,tflite

# (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, venv

# (list) List of exclusions using pattern matching
# Do not prefix with './'
#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 separated e.g. requirements = sqlite3,kivy
requirements = python3,jnius,pyjnius,kivy==2.1.0,kivymd==1.0.2,sdl2_ttf==2.0.15,numpy,opencv,pillow

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

# (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, sensorLandscape, 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 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

# (string) Presplash animation using Lottie format.
# see https://lottiefiles.com/ for examples and https://airbnb.design/lottie/
# for general documentation.
# Lottie files can be created using various tools, like Adobe After Effect or Synfig.
#android.presplash_lottie = "path/to/lottie/file.json"

# (str) Adaptive icon of the application (used if Android API level is 26+ at runtime)
#icon.adaptive_foreground.filename = %(source.dir)s/data/icon_fg.png
#icon.adaptive_background.filename = %(source.dir)s/data/icon_bg.png

# (list) Permissions
#android.permissions = INTERNET

# (list) features (adds uses-feature -tags to manifest)
#android.features = android.hardware.usb.host

# (int) Target Android API, should be as high as possible.
android.api = 30

# (int) Minimum API your APK / AAB will support.
android.minapi = 24

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

# (str) Android NDK version to use
#android.ndk = 23b

# (int) Android NDK API to use. This is the minimum API your app will support, it should usually match android.minapi.
#android.ndk_api = 21

# (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

# (bool) If True, then automatically accept SDK license
# agreements. This is intended for automation only. If set to False,
# the default, you will be shown the license when first running
# buildozer.
# android.accept_sdk_license = False

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

# (str) Full name including package path of the Java class that implements Android Activity
# use that parameter together with android.entrypoint to set custom Java class instead of PythonActivity
#android.activity_class_name = org.kivy.android.PythonActivity

# (str) Extra xml to write directly inside the <manifest> element of AndroidManifest.xml
# use that parameter to provide a filename from where to load your custom XML code
#android.extra_manifest_xml = ./src/android/extra_manifest.xml

# (str) Extra xml to write directly inside the <manifest><application> tag of AndroidManifest.xml
# use that parameter to provide a filename from where to load your custom XML arguments:
#android.extra_manifest_application_arguments = ./src/android/extra_manifest_application_arguments.xml

# (str) Full name including package path of the Java class that implements Python Service
# use that parameter to set custom Java class instead of PythonService
#android.service_class_name = org.kivy.android.PythonService

# (str) Android app theme, default is ok for Kivy-based app
# android.apptheme = "@android:style/Theme.NoTitleBar"

# (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
#android.add_aars =

# (list) Put these files or directories in the apk assets directory.
# Either form may be used, and assets need not be in 'source.include_exts'.
# 1) android.add_assets = source_asset_relative_path
# 2) android.add_assets = source_asset_path:destination_asset_relative_path
#android.add_assets =

# (list) Gradle dependencies to add
android.gradle_dependencies = org.tensorflow:tensorflow-lite:1.12.0,org.tensorflow:tensorflow-lite-support:0.0.0-nightly-SNAPSHOT

# (bool) Enable AndroidX support. Enable when 'android.gradle_dependencies'
# contains an 'androidx' package, or any package from Kotlin source.
# android.enable_androidx requires android.api >= 28
#android.enable_androidx = False

# (list) add java compile options
# this can for example be necessary when importing certain java libraries using the 'android.gradle_dependencies' option
# see https://developer.android.com/studio/write/java8-support for further information
# android.add_compile_options = "sourceCompatibility = 1.8", "targetCompatibility = 1.8"

# (list) Gradle repositories to add {can be necessary for some android.gradle_dependencies}
# please enclose in double quotes 
# e.g. android.gradle_repositories = "maven { url 'https://kotlin.bintray.com/ktor' }"
#android.add_gradle_repositories =

# (list) packaging options to add 
# see https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.PackagingOptions.html
# can be necessary to solve conflicts in gradle_dependencies
# please enclose in double quotes 
# e.g. android.add_packaging_options = "exclude 'META-INF/common.kotlin_module'", "exclude 'META-INF/*.kotlin_module'"
#android.add_packaging_options =

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

# (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 additional 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_arm64_v8a = libs/android-v8/*.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 =

# (list) Android shared libraries which will be added to AndroidManifest.xml using <uses-library> tag
#android.uses_library =

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

# (bool) Android logcat only display log for activity's pid
#android.logcat_pid_only = False

# (str) Android additional adb arguments
#android.adb_args = -H host.docker.internal

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

# (list) The Android archs to build for, choices: armeabi-v7a, arm64-v8a, x86, x86_64
# In past, was `android.arch` as we weren't supporting builds for multiple archs at the same time.
android.archs = arm64-v8a

# (int) overrides automatic versionCode computation (used in build.gradle)
# this is not the same as app version and should only be edited if you know what you're doing
# android.numeric_version = 1

# (bool) enables Android auto backup feature (Android API >=23)
android.allow_backup = True

# (str) XML file for custom backup rules (see official auto backup documentation)
# android.backup_rules =

# (str) If you need to insert variables into your AndroidManifest.xml file,
# you can do so with the manifestPlaceholders property.
# This property takes a map of key-value pairs. (via a string)
# Usage example : android.manifest_placeholders = [myCustomUrl:\"org.kivy.customurl\"]
# android.manifest_placeholders = [:]

# (bool) disables the compilation of py to pyc/pyo files when packaging
# android.no-compile-pyo = True

# (str) The format used to package the app for release mode (aab or apk or aar).
# android.release_artifact = aab

# (str) The format used to package the app for debug mode (apk or aar).
# android.debug_artifact = apk

#
# Python for android (p4a) specific
#

# (str) python-for-android URL to use for checkout
#p4a.url =

# (str) python-for-android fork to use in case if p4a.url is not specified, defaults to upstream (kivy)
#p4a.fork = kivy

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

# (str) python-for-android specific commit to use, defaults to HEAD, must be within p4a.branch
#p4a.commit = HEAD

# (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 =

# Control passing the --use-setup-py vs --ignore-setup-py to p4a
# "in the future" --use-setup-py is going to be the default behaviour in p4a, right now it is not
# Setting this to false will pass --ignore-setup-py, true will pass --use-setup-py
# NOTE: this is general setuptools integration, having pyproject.toml is enough, no need to generate
# setup.py if you're using Poetry, but you need to add "toml" to source.include_exts.
#p4a.setup_py = false

# (str) extra command line arguments to pass when invoking pythonforandroid.toolchain
#p4a.extra_args =

#
# iOS specific
#

# (str) Path to a custom kivy-ios folder
#ios.kivy_ios_dir = ../kivy-ios
# Alternately, specify the URL and branch of a git checkout:
ios.kivy_ios_url = https://github.com/kivy/kivy-ios
ios.kivy_ios_branch = master

# Another platform dependency: ios-deploy
# Uncomment to use a custom checkout
#ios.ios_deploy_dir = ../ios_deploy
# Or specify URL and branch
ios.ios_deploy_url = https://github.com/phonegap/ios-deploy
ios.ios_deploy_branch = 1.10.0

# (bool) Whether or not to sign the code
ios.codesign.allowed = false

# (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) The development team to use for signing the debug version
#ios.codesign.development_team.debug = <hexstring>

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

# (str) The development team to use for signing the release version
#ios.codesign.development_team.release = <hexstring>

# (str) URL pointing to .ipa file to be installed
# This option should be defined along with `display_image_url` and `full_size_image_url` options.
#ios.manifest.app_url =

# (str) URL pointing to an icon (57x57px) to be displayed during download
# This option should be defined along with `app_url` and `full_size_image_url` options.
#ios.manifest.display_image_url =

# (str) URL pointing to a large icon (512x512px) to be used by iTunes
# This option should be defined along with `app_url` and `display_image_url` options.
#ios.manifest.full_size_image_url =

[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, .aab, .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

# Check configuration tokens
# Ensure build layout
# Create directory /home/user/.buildozer
# Create directory /home/user/.buildozer/cache
# Create directory /home/user/hostcwd/.buildozer
# Create directory /home/user/hostcwd/.buildozer/applibs
# Create directory /home/user/.buildozer/android/platform/android/platform
# Create directory /home/user/hostcwd/.buildozer/android/platform
# Create directory /home/user/hostcwd/.buildozer/android/app
# Check configuration tokens
# Preparing build
# Check requirements for android
# Search for Git (git)
#  -> found at /usr/bin/git
# Search for Cython (cython)
#  -> found at /home/user/.local/bin/cython
# Search for Java compiler (javac)
#  -> found at /usr/lib/jvm/java-13-openjdk-amd64/bin/javac
# Search for Java keytool (keytool)
#  -> found at /usr/lib/jvm/java-13-openjdk-amd64/bin/keytool
# Install platform
# Run ['git', 'clone', '-b', 'master', '--single-branch', 'https://github.com/kivy/python-for-android.git', 'python-for-android']
# Cwd /home/user/hostcwd/.buildozer/android/platform
Cloning into 'python-for-android'...
Updating files:  30% (178/586)
Updating files:  31% (182/586)
Updating files:  32% (188/586)
Updating files:  33% (194/586)
Updating files:  34% (200/586)
[...]

creating build/temp.linux-x86_64-3.9/numpy/random/src/sfc64
INFO: compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/sfc64 -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
numpy/linalg/lapack_lite/f2c_blas.c: In function ‘cgemm_64_’:
numpy/linalg/lapack_lite/f2c_blas.c:383:20: warning: variable ‘ncola’ set but not used [-Wunused-but-set-variable]
  383 |     static integer ncola;
      |                    ^~~~~
numpy/linalg/lapack_lite/f2c_blas.c: In function ‘dgemm_64_’:
numpy/linalg/lapack_lite/f2c_blas.c:6853:20: warning: variable ‘ncola’ set but not used [-Wunused-but-set-variable]
 6853 |     static integer ncola;
      |                    ^~~~~
numpy/linalg/lapack_lite/f2c_blas.c: In function ‘sgemm_64_’:
numpy/linalg/lapack_lite/f2c_blas.c:11457:20: warning: variable ‘ncola’ set but not used [-Wunused-but-set-variable]
11457 |     static integer ncola;
      |                    ^~~~~
numpy/linalg/lapack_lite/f2c_blas.c: In function ‘zgemm_64_’:
numpy/linalg/lapack_lite/f2c_blas.c:15670:20: warning: variable ‘ncola’ set but not used [-Wunused-but-set-variable]
15670 |     static integer ncola;
      |                    ^~~~~
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.avx2.c
INFO: gcc: numpy/random/_sfc64.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/numpy/random/_philox.o build/temp.linux-x86_64-3.9/numpy/random/src/philox/philox.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o build/lib.linux-x86_64-3.9/numpy/random/_philox.cpython-39-x86_64-linux-gnu.so
INFO: building 'numpy.random._common' extension
INFO: compiling C sources
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

INFO: compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
INFO: gcc: numpy/random/src/sfc64/sfc64.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/numpy/random/_pcg64.o build/temp.linux-x86_64-3.9/numpy/random/src/pcg64/pcg64.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o build/lib.linux-x86_64-3.9/numpy/random/_pcg64.cpython-39-x86_64-linux-gnu.so
INFO: building 'numpy.random.bit_generator' extension
INFO: compiling C sources
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

INFO: compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
INFO: gcc: numpy/random/_common.c
INFO: gcc: numpy/random/bit_generator.c
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-O3 -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq'
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.avx512_skx.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_umath_fp.dispatch.avx512_skx.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/numpy/random/_sfc64.o build/temp.linux-x86_64-3.9/numpy/random/src/sfc64/sfc64.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o build/lib.linux-x86_64-3.9/numpy/random/_sfc64.cpython-39-x86_64-linux-gnu.so
INFO: building 'numpy.random._generator' extension
INFO: compiling C sources
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

INFO: compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.avx512_skx.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/linalg/umath_linalg.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/python_xerbla.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_z_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_c_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_d_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_s_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_blas.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_config.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c.o -Lbuild/temp.linux-x86_64-3.9 -lnpymath -lm -o build/lib.linux-x86_64-3.9/numpy/linalg/_umath_linalg.cpython-39-x86_64-linux-gnu.so
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

INFO: gcc: numpy/random/_generator.c
INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.linux-x86_64-3.9/numpy/core/src/_simd -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2'
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.sse42.c
INFO: building 'numpy.random._bounded_integers' extension
INFO: compiling C sources
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

INFO: compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -Inumpy/random -Inumpy/random/src -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
INFO: gcc: numpy/random/_bounded_integers.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/numpy/random/bit_generator.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o build/lib.linux-x86_64-3.9/numpy/random/bit_generator.cpython-39-x86_64-linux-gnu.so
INFO: building 'numpy.random.mtrand' extension
INFO: compiling C sources
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

creating build/temp.linux-x86_64-3.9/numpy/random/src/legacy
INFO: compile options: '-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -DNPY_NO_DEPRECATED_API=0 -DNP_RANDOM_LEGACY=1 -Inumpy/random -Inumpy/random/src -Inumpy/random/src/legacy -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-U__GNUC_GNU_INLINE__ -std=c99 -msse -msse2 -msse3'
INFO: gcc: numpy/random/mtrand.c
INFO: gcc: numpy/random/src/legacy/legacy-distributions.c
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-O3 -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2'
INFO: gcc: numpy/random/src/distributions/distributions.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/numpy/random/_common.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -o build/lib.linux-x86_64-3.9/numpy/random/_common.cpython-39-x86_64-linux-gnu.so
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.fma3.avx2.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.fma3.avx2.c
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.linux-x86_64-3.9/numpy/core/src/_simd -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-msse -msse2 -msse3'
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.c
INFO: compiling C sources
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

creating build/temp.linux-x86_64-3.9/numpy/core/src/multiarray
creating build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/npysort
INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-msse -msse2 -msse3'
INFO: gcc: numpy/core/src/multiarray/abstractdtypes.c
INFO: gcc: numpy/core/src/multiarray/arrayobject.c
INFO: gcc: numpy/core/src/multiarray/alloc.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/numpy/random/_bounded_integers.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -lnpymath -o build/lib.linux-x86_64-3.9/numpy/random/_bounded_integers.cpython-39-x86_64-linux-gnu.so
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/multiarray/arraytypes.c
INFO: gcc: numpy/core/src/multiarray/array_coercion.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/numpy/random/mtrand.o build/temp.linux-x86_64-3.9/numpy/random/src/legacy/legacy-distributions.o build/temp.linux-x86_64-3.9/numpy/random/src/distributions/distributions.o -Lbuild/temp.linux-x86_64-3.9 -lm -lnpymath -o build/lib.linux-x86_64-3.9/numpy/random/mtrand.cpython-39-x86_64-linux-gnu.so
INFO: gcc: numpy/core/src/multiarray/array_method.c
INFO: gcc: numpy/core/src/multiarray/array_assign_scalar.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/numpy/random/_generator.o -Lbuild/temp.linux-x86_64-3.9 -lnpyrandom -lm -lnpymath -o build/lib.linux-x86_64-3.9/numpy/random/_generator.cpython-39-x86_64-linux-gnu.so
INFO: gcc: numpy/core/src/multiarray/array_assign_array.c
INFO: compiling C sources
INFO: gcc: numpy/core/src/multiarray/arrayfunction_override.c
INFO: C compiler: gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

creating build/temp.linux-x86_64-3.9/numpy/core/src/_simd
INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.linux-x86_64-3.9/numpy/core/src/_simd -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-msse -msse2 -msse3'
INFO: gcc: numpy/core/src/_simd/_simd.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/common/npy_cpu_features.c
INFO: gcc: numpy/core/src/multiarray/buffer.c
INFO: gcc: numpy/core/src/multiarray/calculation.c
INFO: gcc: numpy/core/src/multiarray/compiled_base.c
INFO: gcc: numpy/core/src/multiarray/common.c
INFO: gcc: numpy/core/src/multiarray/common_dtype.c
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.avx512_skx.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.avx512f.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.fma3.avx2.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.sse42.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/common/npy_cpu_features.o build/temp.linux-x86_64-3.9/numpy/core/src/_simd/_simd.o -Lbuild/temp.linux-x86_64-3.9 -o build/lib.linux-x86_64-3.9/numpy/core/_simd.cpython-39-x86_64-linux-gnu.so
INFO: gcc: numpy/core/src/multiarray/convert.c
INFO: gcc: numpy/core/src/multiarray/convert_datatype.c
INFO: gcc: numpy/core/src/multiarray/conversion_utils.c
INFO: gcc: numpy/core/src/multiarray/ctors.c
INFO: gcc: numpy/core/src/multiarray/datetime.c
INFO: gcc: numpy/core/src/multiarray/datetime_strings.c
INFO: gcc: numpy/core/src/multiarray/datetime_busday.c
INFO: gcc: numpy/core/src/multiarray/datetime_busdaycal.c
INFO: gcc: numpy/core/src/multiarray/descriptor.c
INFO: gcc: numpy/core/src/multiarray/dlpack.c
INFO: gcc: numpy/core/src/multiarray/dtypemeta.c
INFO: gcc: numpy/core/src/multiarray/dragon4.c
INFO: gcc: numpy/core/src/multiarray/dtype_transfer.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/multiarray/einsum.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/multiarray/einsum_sumprod.c
INFO: gcc: numpy/core/src/multiarray/experimental_public_dtype_api.c
INFO: gcc: numpy/core/src/multiarray/flagsobject.c
INFO: gcc: numpy/core/src/multiarray/getset.c
INFO: gcc: numpy/core/src/multiarray/hashdescr.c
INFO: gcc: numpy/core/src/multiarray/item_selection.c
INFO: gcc: numpy/core/src/multiarray/iterators.c
INFO: gcc: numpy/core/src/multiarray/legacy_dtype_implementation.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/multiarray/lowlevel_strided_loops.c
INFO: gcc: numpy/core/src/multiarray/mapping.c
INFO: gcc: numpy/core/src/multiarray/methods.c
INFO: gcc: numpy/core/src/multiarray/multiarraymodule.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/multiarray/nditer_templ.c
INFO: gcc: numpy/core/src/multiarray/nditer_api.c
INFO: gcc: numpy/core/src/multiarray/nditer_constr.c
INFO: gcc: numpy/core/src/multiarray/nditer_pywrap.c
INFO: gcc: numpy/core/src/multiarray/number.c
INFO: gcc: numpy/core/src/multiarray/refcount.c
INFO: gcc: numpy/core/src/multiarray/sequence.c
INFO: gcc: numpy/core/src/multiarray/shape.c
INFO: gcc: numpy/core/src/multiarray/scalarapi.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/multiarray/scalartypes.c
INFO: gcc: numpy/core/src/multiarray/strfuncs.c
INFO: gcc: numpy/core/src/multiarray/temp_elide.c
INFO: gcc: numpy/core/src/multiarray/typeinfo.c
INFO: gcc: numpy/core/src/multiarray/usertypes.c
INFO: gcc: numpy/core/src/multiarray/vdot.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/npysort/quicksort.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/npysort/mergesort.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/npysort/timsort.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/npysort/heapsort.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/npysort/selection.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/npysort/binsearch.c
INFO: gcc: numpy/core/src/umath/umathmodule.c
INFO: gcc: numpy/core/src/umath/reduction.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/umath/loops.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/umath/matmul.c
INFO: gcc: numpy/core/src/umath/dispatching.c
INFO: gcc: numpy/core/src/umath/legacy_array_method.c
INFO: gcc: numpy/core/src/umath/ufunc_object.c
INFO: gcc: numpy/core/src/umath/extobj.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/umath/scalarmath.c
INFO: gcc: numpy/core/src/umath/ufunc_type_resolution.c
INFO: gcc: numpy/core/src/umath/override.c
INFO: gcc: numpy/core/src/umath/_scaled_float_dtype.c
INFO: gcc: numpy/core/src/common/array_assign.c
INFO: gcc: numpy/core/src/common/mem_overlap.c
INFO: gcc: numpy/core/src/common/npy_argparse.c
INFO: gcc: numpy/core/src/common/npy_hashtable.c
INFO: gcc: numpy/core/src/common/npy_longdouble.c
INFO: gcc: numpy/core/src/common/ucsnarrow.c
INFO: gcc: numpy/core/src/common/ufunc_override.c
INFO: gcc: numpy/core/src/common/numpyos.c
INFO: gcc: build/src.linux-x86_64-3.9/numpy/core/src/common/npy_cpu_features.c
INFO: compiling C++ sources
INFO: C compiler: g++ -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC

creating build/temp.linux-x86_64-3.9/numpy/core/src/npysort
INFO: compile options: '-DNPY_INTERNAL_BUILD=1 -DHAVE_NPY_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -D_LARGEFILE64_SOURCE=1 -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/umath -Inumpy/core/include -Ibuild/src.linux-x86_64-3.9/numpy/core/include/numpy -Ibuild/src.linux-x86_64-3.9/numpy/distutils/include -Inumpy/core/src/common -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -Inumpy/core/src/_simd -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -Ibuild/src.linux-x86_64-3.9/numpy/core/src/common -Ibuild/src.linux-x86_64-3.9/numpy/core/src/npymath -c'
extra options: '-msse -msse2 -msse3 -std=c++11 -D__STDC_VERSION__=0 -fno-exceptions -fno-rtti'
INFO: g++: numpy/core/src/npysort/radixsort.cpp
INFO: g++: numpy/core/src/umath/clip.cpp
INFO: gcc -pthread -shared build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.sse41.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.sse41.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithm_fp.dispatch.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_umath_fp.dispatch.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithm_fp.dispatch.avx512f.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.avx512f.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.avx512f.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.avx512f.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithm_fp.dispatch.avx2.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.avx2.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.avx512_skx.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_umath_fp.dispatch.avx512_skx.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.avx512_skx.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.fma3.avx2.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.fma3.avx2.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/abstractdtypes.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/alloc.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/arrayobject.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/multiarray/arraytypes.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/array_coercion.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/array_method.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/array_assign_scalar.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/array_assign_array.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/arrayfunction_override.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/buffer.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/calculation.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/compiled_base.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/common.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/common_dtype.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/convert.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/convert_datatype.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/conversion_utils.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/ctors.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/datetime.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/datetime_strings.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/datetime_busday.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/datetime_busdaycal.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/descriptor.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/dlpack.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/dtypemeta.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/dragon4.o build/

temp.linux-x86_64-3.9/numpy/core/src/multiarray/dtype_transfer.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/multiarray/einsum.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/multiarray/einsum_sumprod.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/experimental_public_dtype_api.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/flagsobject.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/getset.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/hashdescr.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/item_selection.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/iterators.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/legacy_dtype_implementation.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/multiarray/lowlevel_strided_loops.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/mapping.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/methods.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/multiarraymodule.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/multiarray/nditer_templ.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/nditer_api.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/nditer_constr.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/nditer_pywrap.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/number.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/refcount.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/sequence.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/shape.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/scalarapi.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/multiarray/scalartypes.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/strfuncs.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/temp_elide.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/typeinfo.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/usertypes.o build/temp.linux-x86_64-3.9/numpy/core/src/multiarray/vdot.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/npysort/quicksort.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/npysort/mergesort.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/npysort/timsort.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/npysort/heapsort.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/npysort/selection.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/npysort/binsearch.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/umathmodule.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/reduction.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/loops.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/matmul.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/dispatching.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/legacy_array_method.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/ufunc_object.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/extobj.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/umath/scalarmath.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/ufunc_type_resolution.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/override.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/_scaled_float_dtype.o build/temp.linux-x86_64-3.9/numpy/core/src/common/array_assign.o build/temp.linux-x86_64-3.9/numpy/core/src/common/mem_overlap.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_argparse.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_hashtable.o build/temp.linux-x86_64-3.9/numpy/core/src/common/npy_longdouble.o build/temp.linux-x86_64-3.9/numpy/core/src/common/ucsnarrow.o build/temp.linux-x86_64-3.9/numpy/core/src/common/ufunc_override.o build/temp.linux-x86_64-3.9/numpy/core/src/common/numpyos.o build/temp.linux-x86_64-3.9/build/src.linux-x86_64-3.9/numpy/core/src/common/npy_cpu_features.o build/temp.linux-x86_64-3.9/numpy/core/src/npysort/radixsort.o build/temp.linux-x86_64-3.9/numpy/core/src/umath/clip.o numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_acosh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_acosh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_asin_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_asin_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_asinh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_asinh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atan2_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atan2_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atan_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atan_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atanh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_atanh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cbrt_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cbrt_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cos_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cos_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cosh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_cosh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_exp2_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_exp2_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_exp_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_exp_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_expm1_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_expm1_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log10_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log10_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log1p_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log1p_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log2_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log2_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_log_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_pow_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_pow_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_sin_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_sin_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_sinh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_sinh_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_tan_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_tan_s_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_tanh_d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_tanh_s_la.s -Lbuild/temp.linux-x86_64-3.9 -lnpymath -lm -o build/lib.linux-x86_64-3.9/numpy/core/_multiarray_umath.cpython-39-x86_64-linux-gnu.so
error: Command "gcc -pthread -shared build/temp.linux-x86_64-3.9/numpy/linalg/lapack_litemodule.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/python_xerbla.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_z_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_c_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_d_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_s_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_lapack.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_blas.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c_config.o build/temp.linux-x86_64-3.9/numpy/linalg/lapack_lite/f2c.o -Lbuild/temp.linux-x86_64-3.9 -lm -o build/lib.linux-x86_64-3.9/numpy/linalg/lapack_lite.cpython-39-x86_64-linux-gnu.so" failed with exit status 1
INFO: 
########### EXT COMPILER OPTIMIZATION ###########
INFO: Platform      : 
  Architecture: x64
  Compiler    : gcc

CPU baseline  : 
  Requested   : 'min'
  Enabled     : SSE SSE2 SSE3
  Flags       : -msse -msse2 -msse3
  Extra checks: none

CPU dispatch  : 
  Requested   : 'max -xop -fma4'
  Enabled     : SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD AVX512_KNL AVX512_KNM AVX512_SKX AVX512_CLX AVX512_CNL AVX512_ICL
  Generated   : 
              : 
  SSE41       : SSE SSE2 SSE3 SSSE3
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1
  Extra checks: none
  Detect      : SSE SSE2 SSE3 SSSE3 SSE41
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_unary_fp.dispatch.c
              : numpy/core/src/umath/_umath_tests.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.c
              : 
  SSE42       : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2
  Extra checks: none
  Detect      : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42
              : build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.c
              : 
  AVX2        : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42 AVX F16C
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mavx2
  Extra checks: none
  Detect      : AVX F16C AVX2
              : numpy/core/src/umath/_umath_tests.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithm_fp.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.c
              : 
  (FMA3 AVX2) : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42 AVX F16C
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2
  Extra checks: none
  Detect      : AVX F16C FMA3 AVX2
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.c
              : 
  AVX512F     : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f
  Extra checks: AVX512F_REDUCE
  Detect      : AVX512F
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithm_fp.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_trigonometric.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.c
              : 
  AVX512_SKX  : SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD
  Flags       : -msse -msse2 -msse3 -mssse3 -msse4.1 -mpopcnt -msse4.2 -mavx -mf16c -mfma -mavx2 -mavx512f -mavx512cd -mavx512vl -mavx512bw -mavx512dq
  Extra checks: AVX512BW_MASK AVX512DQ_MASK
  Detect      : AVX512_SKX
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_arithmetic.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_umath_fp.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/umath/loops_exponent_log.dispatch.c
              : build/src.linux-x86_64-3.9/numpy/core/src/_simd/_simd.dispatch.c
INFO: CCompilerOpt.cache_flush[817] : write cache to path -> /home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/numpy/arm64-v8a__ndk_target_24/numpy/build/temp.linux-x86_64-3.9/ccompiler_opt_cache_ext.py
INFO: 
########### CLIB COMPILER OPTIMIZATION ###########
INFO: Platform      : 
  Architecture: x64
  Compiler    : gcc

CPU baseline  : 
  Requested   : 'min'
  Enabled     : SSE SSE2 SSE3
  Flags       : -msse -msse2 -msse3
  Extra checks: none

CPU dispatch  : 
  Requested   : 'max -xop -fma4'
  Enabled     : SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD AVX512_KNL AVX512_KNM AVX512_SKX AVX512_CLX AVX512_CNL AVX512_ICL
  Generated   : none
INFO: CCompilerOpt.cache_flush[817] : write cache to path -> /home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/numpy/arm64-v8a__ndk_target_24/numpy/build/temp.linux-x86_64-3.9/ccompiler_opt_cache_clib.py

  STDERR:

# Command failed: ['/usr/bin/python3', '-m', 'pythonforandroid.toolchain', 'create', '--dist_name=myapp', '--bootstrap=sdl2', '--requirements=python3,jnius,pyjnius,kivy==2.1.0,kivymd==1.0.2,sdl2_ttf==2.0.15,numpy,opencv,pillow', '--arch=arm64-v8a', '--arch=armeabi-v7a', '--copy-libs', '--color=always', '--storage-dir=/home/user/hostcwd/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a', '--ndk-api=24', '--ignore-setup-py', '--debug']
# ENVIRONMENT:
#     PATH = '/home/user/.buildozer/android/platform/apache-ant-1.9.4/bin:/home/user/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
#     HOSTNAME = '0d8e7719cccd'
#     TERM = 'xterm'
#     USER = 'user'
#     HOME_DIR = '/home/user'
#     WORK_DIR = '/home/user/hostcwd'
#     SRC_DIR = '/home/user/src'
#     LANG = 'en_US.UTF-8'
#     LANGUAGE = 'en_US.UTF-8'
#     LC_ALL = 'en_US.UTF-8'
#     GRADLE_OPTS = "-Xms1724m -Xmx5048m -Dorg.gradle.jvmargs='-Xms1724m -Xmx5048m'"
#     HOME = '/home/user'
#     PACKAGES_PATH = '/home/user/.buildozer/android/packages'
#     ANDROIDSDK = '/home/user/.buildozer/android/platform/android-sdk'
#     ANDROIDNDK = '/home/user/.buildozer/android/platform/android-ndk-r25b'
#     ANDROIDAPI = '30'
#     ANDROIDMINAPI = '24'
# 
# 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
misl6 commented 1 year ago

Hi @ricky1192 !

The docker image on docker hub is more than 2 years old and is unsupported.

See: https://github.com/kivy/buildozer#installing-buildozer-with-target-python-3-default for standard installation.

ricky1192 commented 1 year ago

Hi @misl6, I updated the image from git and re-rolled the build but still getting the same error.