Bring MODE=tiny binary sizes down to 20kb minimum

aarch64 binaries start at 4kb.
This commit is contained in:
Justine Tunney 2023-05-10 03:38:43 -07:00
parent 5f57fc1f59
commit f312f706f4
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
8 changed files with 27 additions and 10 deletions

View file

@ -100,7 +100,7 @@ static const struct Syscall {
{&__NR_sigprocmask, "rt_sigprocmask", 4, 4, INT, {INT, SIGSET, SIGSET, LONG}},
{&__NR_sigpending, "rt_sigpending", 2, 2, INT, {SIGSET, LONG}},
{&__NR_sigsuspend, "rt_sigsuspend", 2, 2, INT, {SIGSET, LONG}},
{&__NR_rt_sigqueueinfo, "rt_sigqueueinfo", 6, 6},
{&__NR_sigqueueinfo, "rt_sigqueueinfo", 6, 6},
{&__NR_ioctl, "ioctl", 3, 3, INT, {INT, ULONG, ULONG}},
{&__NR_pread, "pread64", 4, 1, LONG, {INT, BUF, ULONG, ULONG}},
{&__NR_pwrite, "pwrite64", 4, 4, LONG, {INT, BUF, ULONG, ULONG}},
@ -361,7 +361,7 @@ static const struct Syscall {
{&__NR_epoll_create1, "epoll_create1", 6, 6},
{&__NR_perf_event_open, "perf_event_open", 6, 6},
{&__NR_inotify_init1, "inotify_init1", 6, 6},
{&__NR_rt_tgsigqueueinfo, "rt_tgsigqueueinfo", 6, 6},
{&__NR_tgsigqueueinfo, "rt_tgsigqueueinfo", 6, 6},
{&__NR_signalfd, "signalfd", 6, 6},
{&__NR_signalfd4, "signalfd4", 6, 6},
{&__NR_eventfd, "eventfd", 6, 6},