chiark / gitweb /
Remove outdated sections from the README
[termux-packages] / README.md
CommitLineData
4edf9992
FF
1Termux packages
2===============
006983b2 3[![Join the chat at https://gitter.im/termux/termux](https://badges.gitter.im/termux/termux.svg)](https://gitter.im/termux/termux)
5b9b57e3 4
6dd45156
FF
5This project contains scripts and patches to build packages for the
6[Termux](https://termux.com/) Android application.
798619b9 7
20730a0d 8Build environment on Ubuntu 16.10
88183689 9=================================
711f6358 10Packages are built using Ubuntu 16.10. Perform the following steps to configure a Ubuntu 16.10 installation:
1773070c 11
6dd45156 12- Run `scripts/setup-ubuntu.sh` to install required packages and setup the `/data/` folder.
1773070c 13
6dd45156 14- Run `scripts/setup-android-sdk.sh` to install the Android SDK and NDK at `$HOME/lib/android-{sdk,ndk}`.
1773070c 15
22dd00cb
FF
16There is also a [Vagrantfile](scripts/Vagrantfile) available for setting up an Ubuntu environment using a virtual machine on other operating systems.
17
88183689
FF
18Build environment using Docker
19==============================
20730a0d 20On other Linux distributions than Ubuntu 16.10 (or on other platforms than Linux) the best course
1a8d12c2 21of action is to setup a Docker container for building packages by executing:
1773070c 22
711f6358
FF
23 ./scripts/run-docker.sh # On Linux and macOS.
24 .\scripts\run-docker.ps1 # On Windows.
1a8d12c2 25
6dd45156
FF
26This will setup a container (from an image created by [scripts/Dockerfile](scripts/Dockerfile))
27suitable for building packages.
5e8045c9 28
6dd45156
FF
29This source folder is mounted as the /root/termux-packages data volume, so changes are kept
30in sync between the host and the container when trying things out before committing, and built
31deb files will be available on the host in the `debs/` directory just as when building on the host.
5e8045c9 32
a0057943
FF
33Build commands can be given to be executed in the docker container directly:
34
35 ./scripts/run-docker.sh ./build-package.sh libandroid-support
36
37will launch the docker container, execute the `./build-package.sh libandroid-support`
38command inside it and afterwards return you to the host prompt, with the newly built
39deb in `debs/` to try out.
5e8045c9 40
9ecaa95d
FF
41Building a package
42==================
88183689 43The basic build operation is to run `./build-package.sh $PKG`, which:
798619b9 44
6dd45156 451. Sets up a patched stand-alone Android NDK toolchain if necessary.
9ecaa95d 46
6dd45156 472. Reads `packages/$PKG/build.sh` to find out where to find the source code of the package and how to build it.
a0057943 48
6dd45156 493. Extracts the source in `$HOME/.termux-build/$PKG/src`.
9ecaa95d 50
6dd45156 514. Applies all patches in packages/$PKG/\*.patch.
9ecaa95d 52
6dd45156 535. Builds the package under `$HOME/.termux-build/$PKG/` (either in the build/ directory there or in the
a0057943
FF
54 src/ directory if the package is specified to build in the src dir) and installs it to `$PREFIX`.
55
6dd45156 566. Extracts modified files in `$PREFIX` into `$HOME/.termux-build/$PKG/massage` and massages the
a0057943 57 files there for distribution (removes some files, splits it up in sub-packages, modifies elf files).
9ecaa95d 58
6dd45156 597. Creates a deb package file for distribution in `debs/`.
1773070c 60
6dd45156 61Reading [build-package.sh](build-package.sh) is the best way to understand what is going on.
798619b9 62
9ecaa95d
FF
63Additional utilities
64====================
88183689 65* build-all.sh: used for building all packages in the correct order (using buildorder.py).
9ecaa95d 66
2fe052c8 67* clean.sh: used for doing a clean rebuild of all packages.
9ecaa95d 68
88183689 69* scripts/check-pie.sh: Used for verifying that all binaries are using PIE, which is required for Android 5+.
9ecaa95d 70
88183689 71* scripts/check-versions.sh: used for checking for package updates.
9ecaa95d 72
88183689 73* scripts/list-packages.sh: used for listing all packages with a one-line summary.
798619b9
FF
74
75
1a8d12c2
FF
76Resources
77=========
78* [Android changes for NDK developers](https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md)
79
40dcead0 80* [Linux From Scratch](http://www.linuxfromscratch.org/lfs/view/stable/)
798619b9 81
88183689 82* [Beyond Linux From Scratch](http://www.linuxfromscratch.org/blfs/view/stable/)
798619b9 83
88183689 84* [OpenWrt](https://openwrt.org/) as an embedded Linx distribution contains [patches and build scripts](https://dev.openwrt.org/browser/packages)
798619b9 85
88183689 86* [Kivy recipes](https://github.com/kivy/python-for-android/tree/master/pythonforandroid/recipes) contains recipes for building packages for Android.
798619b9
FF
87
88
89Common porting problems
90=======================
26e75e88 91* The Android bionic libc does not have iconv and gettext/libintl functionality built in. A `libandroid-support` package contains these and may be used by all packages.
798619b9
FF
92
93* "error: z: no archive symbol table (run ranlib)" usually means that the build machines libz is used instead of the one for cross compilation, due to the builder library -L path being setup incorrectly
94
26e75e88 95* rindex(3) does not exist, but strrchr(3) is preferred anyway.
798619b9
FF
96
97* <sys/termios.h> does not exist, but <termios.h> is the standard location.
98
99* <sys/fcntl.h> does not exist, but <fcntl.h> is the standard location.
100
26e75e88 101* <sys/timeb.h> does not exist (removed in POSIX 2008), but ftime(3) can be replaced with gettimeofday(2).
798619b9 102
26e75e88 103* <glob.h> does not exist, but is available through the `libandroid-glob` package.
798619b9 104
26e75e88 105* SYSV shared memory is not supported by the kernel. A `libandroid-shmem` package, which emulates SYSV shared memory on top of the [ashmem](http://elinux.org/Android_Kernel_Features#ashmem) shared memory system, is available. Use it with `LDFLAGS+=" -landroid-shmem`.
798619b9 106
26e75e88 107* SYSV semaphores is not supported by the kernel. Use unnamed POSIX semaphores instead (named semaphores are unimplemented).
c4804ab8 108
798619b9
FF
109dlopen() and RTLD_* flags
110=================================
29db5b35 111<dlfcn.h> originally declares
798619b9 112
9ecaa95d
FF
113 enum { RTLD_NOW=0, RTLD_LAZY=1, RTLD_LOCAL=0, RTLD_GLOBAL=2, RTLD_NOLOAD=4}; // 32-bit
114 enum { RTLD_NOW=2, RTLD_LAZY=1, RTLD_LOCAL=0, RTLD_GLOBAL=0x00100, RTLD_NOLOAD=4}; // 64-bit
798619b9
FF
115
116These differs from glibc ones in that
117
88183689 1181. They are not preprocessor #define:s so cannot be checked for with `#ifdef RTLD_GLOBAL`. Termux patches this to #define values for compatibility with several packages.
798619b9 1192. They differ in value from glibc ones, so cannot be hardcoded in files (DLFCN.py in python does this)
29db5b35 1203. They are missing some values (`RTLD_BINDING_MASK`, `RTLD_NOLOAD`, ...)
798619b9 121
88183689
FF
122RPATH, RUNPATH AND LD\_LIBRARY\_PATH
123====================================
798619b9 124On desktop linux the linker searches for shared libraries in:
1ddf1728 125
88183689
FF
1261. `RPATH` - a list of directories which is linked into the executable, supported on most UNIX systems. It is ignored if `RUNPATH` is present.
1272. `LD_LIBRARY_PATH` - an environment variable which holds a list of directories
1283. `RUNPATH` - same as `RPATH`, but searched after `LD_LIBRARY_PATH`, supported only on most recent UNIX systems
1ddf1728 129
1a8d12c2 130The Android linker, /system/bin/linker, does not support RPATH or RUNPATH, so we set `LD_LIBRARY_PATH=$PREFIX/lib` and try to avoid building useless rpath entries (which the linker warns about) with --disable-rpath configure flags. NOTE: Starting from Android 7.0 RUNPATH (but not RPATH) is supported.
798619b9
FF
131
132Warnings about unused DT entries
133================================
1a8d12c2 134Starting from 5.1 the Android linker warns about VERNEED (0x6FFFFFFE) and VERNEEDNUM (0x6FFFFFFF) ELF dynamic sections (WARNING: linker: $BINARY: unused DT entry: type 0x6ffffffe/0x6fffffff). These may come from version scripts (`-Wl,--version-script=`). The termux-elf-cleaner utilty is run from build-package.sh and should normally take care of that problem. NOTE: Starting from Android 6.0 symbol versioning is supported.