Fix the build

This commit is contained in:
Justine Tunney 2022-12-21 23:06:55 -08:00
parent 5c0ce6b83e
commit 2e5181666f
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
5 changed files with 7 additions and 10 deletions

View file

@ -17,12 +17,14 @@
PERFORMANCE OF THIS SOFTWARE. PERFORMANCE OF THIS SOFTWARE.
*/ */
#include "libc/calls/calls.h" #include "libc/calls/calls.h"
#include "libc/intrin/strace.internal.h"
#include "libc/calls/syscall-sysv.internal.h" #include "libc/calls/syscall-sysv.internal.h"
#include "libc/dce.h" #include "libc/dce.h"
#include "libc/intrin/strace.internal.h"
/** /**
* Returns process group id of calling process. * Returns process group id of calling process.
*
* This function is equivalent to `getpgid(0)`.
*/ */
int getpgrp(void) { int getpgrp(void) {
int rc; int rc;

View file

@ -20,18 +20,13 @@ TOOL_CURL_DIRECTDEPS = \
LIBC_LOG \ LIBC_LOG \
LIBC_MEM \ LIBC_MEM \
LIBC_NEXGEN32E \ LIBC_NEXGEN32E \
LIBC_NT_IPHLPAPI \
LIBC_NT_KERNEL32 \
LIBC_RUNTIME \ LIBC_RUNTIME \
LIBC_SOCK \ LIBC_SOCK \
LIBC_STDIO \ LIBC_STDIO \
LIBC_STR \ LIBC_STR \
LIBC_STUBS \ LIBC_STUBS \
LIBC_SYSV \ LIBC_SYSV \
LIBC_SYSV_CALLS \
LIBC_TIME \ LIBC_TIME \
LIBC_THREAD \
LIBC_TINYMATH \
LIBC_X \ LIBC_X \
LIBC_ZIPOS \ LIBC_ZIPOS \
NET_HTTP \ NET_HTTP \

View file

@ -16,10 +16,13 @@
"__GNUC_PATCHLEVEL__" "__GNUC_PATCHLEVEL__"
"__GNUC__" "__GNUC__"
"__APPLE__" "__APPLE__"
"__ANDROID__"
"__FreeBSD__" "__FreeBSD__"
"__NetBSD__" "__NetBSD__"
"__NetBSD_Version__" "__NetBSD_Version__"
"__OpenBSD__" "__OpenBSD__"
"__COSMOPOLITAN__"
"__GLIBC__"
"__linux" "__linux"
"__MACH__" "__MACH__"
"__GNUG__" "__GNUG__"

View file

@ -73,9 +73,7 @@
"__gnu__")) "__gnu__"))
(cosmo (cosmo
'("__COSMOPOLITAN__" '("__LINKER__"))
"__ANDROID__"
"__LINKER__"))
) )
(concat "\\_<" (concat "\\_<"

View file

@ -15,7 +15,6 @@ TOOL_NET_BINS = \
$(TOOL_NET_COMS:%=%.dbg) $(TOOL_NET_COMS:%=%.dbg)
TOOL_NET_COMS = \ TOOL_NET_COMS = \
o/$(MODE)/tool/net/curl.com \
o/$(MODE)/tool/net/dig.com \ o/$(MODE)/tool/net/dig.com \
o/$(MODE)/tool/net/redbean.com \ o/$(MODE)/tool/net/redbean.com \
o/$(MODE)/tool/net/redbean-demo.com \ o/$(MODE)/tool/net/redbean-demo.com \