cosmopolitan/ape
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
..
ape.lds Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
ape.mk Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
ape.S Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
apeinstall.sh Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
config.h Improve memory safety 2021-10-13 17:27:13 -07:00
idata.internal.h Get codebase completely working with LLVM 2021-02-09 02:57:32 -08:00
loader-elf.S Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
loader-macho.lds Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
loader-macho.S Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
loader.c Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
loader.h Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
loader.lds Support Linux binfmt_misc and APE loading on Apple 2022-05-21 09:28:25 -07:00
macros.internal.h Remove more nonstandard stuff from cosmopolitan.h 2021-03-01 00:18:23 -08:00
mz.ansi Initial import 2020-06-15 07:18:57 -07:00
notice.inc Initial import 2020-06-15 07:18:57 -07:00
relocations.h Support malloc() on bare metal 2021-02-24 00:53:24 -08:00