1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 18:40:39 -08:00

Update Android port

* INSTALL.android: Port to MIPS.
* configure.ac (modules): Default to ifavailable.
Write actual test for __attribute__((cleanup)).
* m4/ndk-build.m4: Recognize mips and mips64.
* src/emacs-module.c: Remove broken HAS_ATTRIBUTE test.
This commit is contained in:
Po Lu 2023-02-22 10:57:33 +08:00
parent a892c0487a
commit 137bdaced6
4 changed files with 70 additions and 27 deletions

View file

@ -66,6 +66,12 @@ case "$ndk_ABI" in
*x86* )
ndk_ARCH=x86
;;
*mips64* )
ndk_ARCH=mips64
;;
*mips* )
ndk_ARCH=mips
;;
* )
AC_MSG_ERROR([Failed to determine Android device architecture])
;;