cosmopolitan/test/libc
Justine Tunney db0d8dd806 Support Linux binfmt_misc and APE loading on Apple
The "no modify self" variant of Actually Portable Executable is now
supported on all platforms. If you use `$(APE_NO_MODIFY_SELF)` then
ld.bfd will embed a 4096 byte ELF binary and a 4096 byte Macho file
which are installed on the fly to ${TMPDIR:-/tmp}, which enables us
launch the executable, without needing to copy the whole executable

To prevent it from copying a tiny executable to your temp directory
you need to install the `ape` command (renamed from ape-loader), to
a system path. For example:

    # FreeBSD / NetBSD / OpenBSD
    make -j8 o//ape/ape
    cp o//ape/ape /usr/bin/ape

    # Mac OS
    # make -j8 o//ape/ape.macho
    curl https://justine.lol/ape.macho >/usr/bin/ape
    chmod +x /usr/bin/ape

On Linux you can get even more performance with the new binfmt_misc
support which makes launching non-modifying APE binaries as fast as
launching ELF executables. Running the following command:

    # Linux
    ape/apeinstall.sh

Will copy APE loader to /usr/bin/ape and register with binfmt_misc
Lastly, this change also fixes a really interesting race condition
with OpenBSD thread joining.
2022-05-21 09:28:25 -07:00
..
alg Import C++ Standard Template Library 2022-03-22 06:41:54 -07:00
bits Add maxmind demo to redbean-demo.com 2022-03-18 15:31:54 -07:00
calls Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
dns Improve memory safety 2021-10-13 17:27:13 -07:00
fmt Make some systemic improvements 2022-05-18 16:52:36 -07:00
intrin Make some systemic improvements 2022-05-18 16:52:36 -07:00
log Make fixes and improvements 2022-05-19 16:57:49 -07:00
mem Make improvements 2022-04-28 09:57:07 -07:00
nexgen32e Fix more things 2022-03-24 00:12:29 -07:00
rand Make fixes and improvements 2022-05-19 16:57:49 -07:00
release Flatten InfoZIP directory and fix build issues 2022-04-20 22:40:33 -07:00
runtime Fix many thread and file descriptor issues on Windows 2022-05-20 20:57:19 -07:00
sock Improve synchronization 2022-04-15 15:31:55 -07:00
stdio Add zlib gzip functions 2022-05-12 12:17:40 -07:00
str Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
thread Get threads working on all platforms 2022-05-13 03:59:09 -07:00
time Revert "Use 64-bit years" 2022-05-12 06:45:36 -07:00
tinymath Fix some more reported issues 2022-04-28 20:36:33 -07:00
unicode Make numerous improvements 2021-09-28 01:52:34 -07:00
x Fix bugs and make improvements 2022-04-20 10:05:34 -07:00
xed Improve signals and memory protection 2022-04-12 22:11:00 -07:00
test.mk Fix bugs and make improvements 2022-04-20 10:05:34 -07:00