bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Android environments


From: Jeffrey Walton
Subject: Re: Android environments
Date: Tue, 27 Dec 2022 08:56:08 -0500

On Tue, Dec 27, 2022 at 3:05 AM Po Lu <luangruo@yahoo.com> wrote:
>
> Bruno Haible <bruno@clisp.org> writes:
>
> > I see. There are two ways to build C programs for Android:
> >
> >   (A) The way it is designed by Google: With the Android NDK,
> >       that includes a cross-compiler. For the runtime, use an emulator
> >       (based on qemu) or a physical connection to a real device.
> >
> >   (B) Inside a terminal emulator app (Termux [1][2] for Android ≥ 7,
> >       Terminal-IDE [3] for Android < 5).
> >
> > (A) is a POSIX-like environment only at the C level; it has no shell and no
> > utilities.
> >
> > (B) is a POSIX-like environment including shell and utilities.
> >
> > For building a real app, the approach (A) is what one needs.
> >
> > But for building and testing a library, the approach (B) provides
> >   - an environment that allows to reuse build infrastructure (configure 
> > etc.)
> >     from GNU,
> >   - faster turnaround cycles.
> >
> > For Gnulib, we have only used approach (B). We *hope* that the resulting
> > source code will also work well in situation (A). But when you hit a problem
> > in situation (A), you are on your own. Because I won't install an NDK and
> > get into the complexities of cross-compilation, APK packaging, and so on.
> >
> >> > Again, what is the Android API level that you are using?
> >> 19.
> >
> > This is supported with Gnulib, as I have done a lot of testing with Android 
> > 4.3
> > (API level 18).
>
> Thanks for explaining the situation.  Emacs will definitely be a
> category "A" program, so I hope it will help improve gnulib's support
> for those environments.

Also see https://developer.android.com/ndk/guides/other_build_systems .

I've found that if a project honors a user's flags (like CC, CXX,
CPPFLAGS, CFLAGS, CXXFLAGS and LDFLAGS), then it will cross-compile
just fine under Android. The rub is, the user has to set the
environment properly and set sysroot properly in *FLAGS.

The tricky thing about Android is, the devs change things every few
iterations and it breaks something. So something that worked under r16
is broken at r19, something that worked under r19 is broken at r21,
etc. The latest seems to be the names of the binaries used for AR and
RANLIB. In the past they were named like aarch64-linux-android-ar and
aarch64-linux-android-ranlib. Today they are named llvm-ar and
llvm-ranlib.

Jeff



reply via email to

[Prev in Thread] Current Thread [Next in Thread]