mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
8f522cb702
This change progresses our AARCH64 support: - The AARCH64 build and tests are now passing - Add 128-bit floating-point support to printf() - Fix clone() so it initializes cosmo's x28 TLS register - Fix TLS memory layout issue with aarch64 _Alignas vars - Revamp microbenchmarking tools so they work on aarch64 - Make some subtle improvements to aarch64 crash reporting - Make kisdangerous() memory checks more accurate on aarch64 - Remove sys_open() since it's not available on Linux AARCH64 This change makes general improvements to Cosmo and Redbean: - Introduce GetHostIsa() function in Redbean - You can now feature check using pledge(0, 0) - You can now feature check using unveil("",0) - Refactor some more x86-specific asm comments - Refactor and write docs for some libm functions - Make the mmap() API behave more similar to Linux - Fix WIFSIGNALED() which wrongly returned true for zero - Rename some obscure cosmo keywords from noFOO to dontFOO |
||
---|---|---|
.. | ||
alloca.h | ||
ar.c | ||
arscan.c | ||
AUTHORS | ||
basename-lgpl.c | ||
commands.c | ||
commands.h | ||
concat-filename.c | ||
concat-filename.h | ||
config.h | ||
COPYING | ||
debug.h | ||
default.c | ||
dep.h | ||
dir.c | ||
dirname-lgpl.c | ||
dirname.h | ||
dosname.h | ||
error.c | ||
error.h | ||
exitfail.c | ||
exitfail.h | ||
expand.c | ||
fcntl.c | ||
fcntl.h | ||
fd-hook.c | ||
fd-hook.h | ||
file.c | ||
filedef.h | ||
filename.h | ||
findprog-in.c | ||
findprog.h | ||
function.c | ||
getopt.c | ||
getopt.h | ||
getopt1.c | ||
getprogname.c | ||
getprogname.h | ||
gettext.h | ||
gnumake.h | ||
guile.c | ||
hash.c | ||
hash.h | ||
implicit.c | ||
intprops.h | ||
job.c | ||
job.h | ||
load.c | ||
loadapi.c | ||
main.c | ||
make.mk | ||
makeint.inc | ||
misc.c | ||
os.h | ||
output.c | ||
output.h | ||
posixos.c | ||
read.c | ||
README.cosmo | ||
remake.c | ||
remote-stub.c | ||
rule.c | ||
rule.h | ||
stddef.h | ||
stdint.h | ||
stdio.h | ||
stdlib.h | ||
strcache.c | ||
stripslash.c | ||
unistd.c | ||
unistd.h | ||
variable.c | ||
variable.h | ||
version.c | ||
vpath.c | ||
xalloc-die.c | ||
xalloc-oversized.h | ||
xalloc.h | ||
xconcat-filename.c | ||
xmalloc.c |
DESCRIPTION Landlock Make is a fork of GNU Make that adds support for automatic sandboxing, resource limits, and network access restrictions. ORIGIN GNU Make 4.3 http://ftp.gnu.org/gnu/make/make-4.3.tar.gz LICENSE GNU GPL version 3 or later http://gnu.org/licenses/gpl.html LOCAL CHANGES - .INTERNET variable to allow internet access - .PLEDGE variable which restricts system calls - .UNVEIL variable which controls Landlock LSM - .STRICT variable to disable implicit unveiling - .UNSANDBOXED variable to disable pledge / unveil - .CPU variable which tunes CPU rlimit in seconds - .MEMORY variable for virtual memory limit, e.g. 512m - .RSS variable for resident memory limit, e.g. 512m - .FSIZE variable which tunes max file size, e.g. 1g - .NPROC variable which tunes fork() / clone() limit - .NOFILE variable which tunes file descriptor limit - .MAXCORE variable to set upper limit on core dumps - Do automatic setup and teardown of TMPDIR per rule - Remove code that forces slow path if not using /bin/sh - Remove 200,000 lines of VAX/OS2/DOS/AMIGA/etc. code