diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-05-03 10:28:01 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-05-06 11:29:14 +0100 |
commit | 5deb0b024e14c7c63d405c651d1ca323560a1c21 (patch) | |
tree | 649bdd3d163fe5e2fe4a6147ed3343dbdba6735f /depends/Makefile | |
parent | 00ac1b963d08f2779d2197edcdb1e76392993378 (diff) |
build, test, doc: Temporarily remove Android-related stuff
Previously, our Android builds were geared towards generating APKs,
which relied on Qt. However, after migrating to C++20, compiling for
Android became unfeasible due to Qt 5.15's compatibility limitations
with NDK only up to r25, which includes an outdated embedded libc++.
All removed stuff will be reinstated after migrating the build system to
CMake and upgrading Qt to version 6.x."
Diffstat (limited to 'depends/Makefile')
-rw-r--r-- | depends/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/depends/Makefile b/depends/Makefile index 005d9696fb..b24aa91181 100644 --- a/depends/Makefile +++ b/depends/Makefile @@ -101,10 +101,6 @@ host_os+=$(findstring netbsd,$(full_host_os)) host_os+=$(findstring openbsd,$(full_host_os)) host_os+=$(findstring mingw32,$(full_host_os)) -ifeq (android,$(findstring android,$(full_host_os))) -host_os:=android -endif - host_os:=$(strip $(host_os)) ifeq ($(host_os),) host_os=$(full_host_os) |