]> git.proxmox.com Git - wasi-libc.git/blame - Makefile
bump version to 0.0~git20230113.4362b18-1~bpo12+pve1
[wasi-libc.git] / Makefile
CommitLineData
41af0db3
DG
1# These variables are specifically meant to be overridable via the make
2# command-line.
202034fd
MH
3# ?= doesn't work for CC and AR because make has a default value for them.
4ifeq ($(origin CC), default)
5CC := clang
6endif
a279514a 7NM ?= $(patsubst %clang,%llvm-nm,$(filter-out ccache sccache,$(CC)))
202034fd
MH
8ifeq ($(origin AR), default)
9AR = $(patsubst %clang,%llvm-ar,$(filter-out ccache sccache,$(CC)))
10endif
8852e15a 11EXTRA_CFLAGS ?= -O2 -DNDEBUG
320054e8 12# The directory where we build the sysroot.
255e6f7c 13SYSROOT ?= $(CURDIR)/sysroot
320054e8 14# A directory to install to for "make install".
255e6f7c 15INSTALL_DIR ?= /usr/local
dcd28cf8 16# single or posix; note that pthread support is still a work-in-progress.
41af0db3 17THREAD_MODEL ?= single
c7465d22
AL
18# dlmalloc or none
19MALLOC_IMPL ?= dlmalloc
320054e8 20# yes or no
41af0db3 21BUILD_LIBC_TOP_HALF ?= yes
8098d862 22# The directory where we will store intermediate artifacts.
3a1843bb 23OBJDIR ?= $(CURDIR)/build/$(TARGET_TRIPLE)
320054e8 24
ba81b409
CS
25# When the length is no larger than this threshold, we consider the
26# overhead of bulk memory opcodes to outweigh the performance benefit,
27# and fall back to the original musl implementation. See
28# https://github.com/WebAssembly/wasi-libc/pull/263 for relevant
29# discussion
30BULK_MEMORY_THRESHOLD ?= 32
31
41af0db3
DG
32# Variables from this point on are not meant to be overridable via the
33# make command-line.
34
f1af8cea 35# Set the default WASI target triple.
41af0db3 36TARGET_TRIPLE = wasm32-wasi
f1af8cea
PP
37
38# Threaded version necessitates a different traget, as objects from different
39# targets can't be mixed together while linking.
40ifeq ($(THREAD_MODEL), posix)
8b9706b9 41TARGET_TRIPLE = wasm32-wasi-threads
f1af8cea 42endif
41af0db3
DG
43
44# These variables describe the locations of various files and directories in
45# the source tree.
320054e8 46DLMALLOC_DIR = $(CURDIR)/dlmalloc
dbfccac2 47DLMALLOC_SRC_DIR = $(DLMALLOC_DIR)/src
320054e8 48DLMALLOC_SOURCES = $(DLMALLOC_SRC_DIR)/dlmalloc.c
dbfccac2 49DLMALLOC_INC = $(DLMALLOC_DIR)/include
a7af7c06
DG
50EMMALLOC_DIR = $(CURDIR)/emmalloc
51EMMALLOC_SOURCES = $(EMMALLOC_DIR)/emmalloc.c
320054e8
DG
52LIBC_BOTTOM_HALF_DIR = $(CURDIR)/libc-bottom-half
53LIBC_BOTTOM_HALF_CLOUDLIBC_SRC = $(LIBC_BOTTOM_HALF_DIR)/cloudlibc/src
54LIBC_BOTTOM_HALF_CLOUDLIBC_SRC_INC = $(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC)/include
55LIBC_BOTTOM_HALF_HEADERS_PUBLIC = $(LIBC_BOTTOM_HALF_DIR)/headers/public
56LIBC_BOTTOM_HALF_HEADERS_PRIVATE = $(LIBC_BOTTOM_HALF_DIR)/headers/private
320054e8
DG
57LIBC_BOTTOM_HALF_SOURCES = $(LIBC_BOTTOM_HALF_DIR)/sources
58LIBC_BOTTOM_HALF_ALL_SOURCES = \
69031b63 59 $(sort \
320054e8 60 $(shell find $(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC) -name \*.c) \
69031b63 61 $(shell find $(LIBC_BOTTOM_HALF_SOURCES) -name \*.c))
5b148b61
AC
62
63# FIXME(https://reviews.llvm.org/D85567) - due to a bug in LLD the weak
64# references to a function defined in `chdir.c` only work if `chdir.c` is at the
65# end of the archive, but once that LLD review lands and propagates into LLVM
66# then we don't have to do this.
67LIBC_BOTTOM_HALF_ALL_SOURCES := $(filter-out $(LIBC_BOTTOM_HALF_SOURCES)/chdir.c,$(LIBC_BOTTOM_HALF_ALL_SOURCES))
68LIBC_BOTTOM_HALF_ALL_SOURCES := $(LIBC_BOTTOM_HALF_ALL_SOURCES) $(LIBC_BOTTOM_HALF_SOURCES)/chdir.c
69
320054e8 70LIBWASI_EMULATED_MMAN_SOURCES = \
69031b63 71 $(sort $(shell find $(LIBC_BOTTOM_HALF_DIR)/mman -name \*.c))
b9b64a69 72LIBWASI_EMULATED_PROCESS_CLOCKS_SOURCES = \
69031b63 73 $(sort $(shell find $(LIBC_BOTTOM_HALF_DIR)/clocks -name \*.c))
659ff414 74LIBWASI_EMULATED_GETPID_SOURCES = \
69031b63 75 $(sort $(shell find $(LIBC_BOTTOM_HALF_DIR)/getpid -name \*.c))
d1cd4f48 76LIBWASI_EMULATED_SIGNAL_SOURCES = \
69031b63 77 $(sort $(shell find $(LIBC_BOTTOM_HALF_DIR)/signal -name \*.c))
d1cd4f48
DG
78LIBWASI_EMULATED_SIGNAL_MUSL_SOURCES = \
79 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/signal/psignal.c \
80 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/strsignal.c
320054e8
DG
81LIBC_BOTTOM_HALF_CRT_SOURCES = $(wildcard $(LIBC_BOTTOM_HALF_DIR)/crt/*.c)
82LIBC_TOP_HALF_DIR = $(CURDIR)/libc-top-half
83LIBC_TOP_HALF_MUSL_DIR = $(LIBC_TOP_HALF_DIR)/musl
84LIBC_TOP_HALF_MUSL_SRC_DIR = $(LIBC_TOP_HALF_MUSL_DIR)/src
85LIBC_TOP_HALF_MUSL_INC = $(LIBC_TOP_HALF_MUSL_DIR)/include
86LIBC_TOP_HALF_MUSL_SOURCES = \
41af0db3
DG
87 $(addprefix $(LIBC_TOP_HALF_MUSL_SRC_DIR)/, \
88 misc/a64l.c \
89 misc/basename.c \
90 misc/dirname.c \
91 misc/ffs.c \
92 misc/ffsl.c \
93 misc/ffsll.c \
94 misc/fmtmsg.c \
95 misc/getdomainname.c \
96 misc/gethostid.c \
97 misc/getopt.c \
98 misc/getopt_long.c \
99 misc/getsubopt.c \
100 misc/uname.c \
101 misc/nftw.c \
102 errno/strerror.c \
103 network/htonl.c \
104 network/htons.c \
105 network/ntohl.c \
106 network/ntohs.c \
107 network/inet_ntop.c \
108 network/inet_pton.c \
109 network/inet_aton.c \
110 network/in6addr_any.c \
111 network/in6addr_loopback.c \
112 fenv/fenv.c \
113 fenv/fesetround.c \
114 fenv/feupdateenv.c \
115 fenv/fesetexceptflag.c \
116 fenv/fegetexceptflag.c \
117 fenv/feholdexcept.c \
118 exit/exit.c \
119 exit/atexit.c \
120 exit/assert.c \
121 exit/quick_exit.c \
122 exit/at_quick_exit.c \
123 time/strftime.c \
124 time/asctime.c \
125 time/asctime_r.c \
126 time/ctime.c \
127 time/ctime_r.c \
128 time/wcsftime.c \
129 time/strptime.c \
130 time/difftime.c \
131 time/timegm.c \
132 time/ftime.c \
133 time/gmtime.c \
134 time/gmtime_r.c \
135 time/timespec_get.c \
136 time/getdate.c \
137 time/localtime.c \
138 time/localtime_r.c \
139 time/mktime.c \
140 time/__tm_to_secs.c \
141 time/__month_to_secs.c \
142 time/__secs_to_tm.c \
143 time/__year_to_secs.c \
144 time/__tz.c \
145 fcntl/creat.c \
146 dirent/alphasort.c \
147 dirent/versionsort.c \
8b7148f6 148 env/__stack_chk_fail.c \
41af0db3
DG
149 env/clearenv.c \
150 env/getenv.c \
151 env/putenv.c \
152 env/setenv.c \
153 env/unsetenv.c \
154 unistd/posix_close.c \
079adff8 155 stat/futimesat.c \
e066a8b9 156 legacy/getpagesize.c \
dcd28cf8 157 thread/thrd_sleep.c \
41af0db3 158 ) \
320054e8
DG
159 $(filter-out %/procfdname.c %/syscall.c %/syscall_ret.c %/vdso.c %/version.c, \
160 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal/*.c)) \
161 $(filter-out %/flockfile.c %/funlockfile.c %/__lockfile.c %/ftrylockfile.c \
162 %/rename.c \
163 %/tmpnam.c %/tmpfile.c %/tempnam.c \
164 %/popen.c %/pclose.c \
165 %/remove.c \
166 %/gets.c, \
167 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/*.c)) \
168 $(filter-out %/strsignal.c, \
169 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/*.c)) \
8048aeb5 170 $(filter-out %/dcngettext.c %/textdomain.c %/bind_textdomain_codeset.c, \
320054e8
DG
171 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/locale/*.c)) \
172 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/*.c) \
173 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/search/*.c) \
174 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/multibyte/*.c) \
175 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/regex/*.c) \
320054e8
DG
176 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/prng/*.c) \
177 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/conf/*.c) \
178 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/ctype/*.c) \
900b8032 179 $(filter-out %/__signbit.c %/__signbitf.c %/__signbitl.c \
16450763
DG
180 %/__fpclassify.c %/__fpclassifyf.c %/__fpclassifyl.c \
181 %/ceilf.c %/ceil.c \
182 %/floorf.c %/floor.c \
183 %/truncf.c %/trunc.c \
184 %/rintf.c %/rint.c \
185 %/nearbyintf.c %/nearbyint.c \
186 %/sqrtf.c %/sqrt.c \
187 %/fabsf.c %/fabs.c \
cf81683e
DG
188 %/copysignf.c %/copysign.c \
189 %/fminf.c %/fmaxf.c \
190 %/fmin.c %/fmax.c, \
900b8032 191 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/math/*.c)) \
5ccebd31
DG
192 $(filter-out %/crealf.c %/creal.c %creall.c \
193 %/cimagf.c %/cimag.c %cimagl.c, \
7d5074ff 194 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/complex/*.c)) \
320054e8 195 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/crypt/*.c)
dcd28cf8 196
33c3753c
AB
197ifeq ($(THREAD_MODEL), posix)
198LIBC_TOP_HALF_MUSL_SOURCES += \
199 $(addprefix $(LIBC_TOP_HALF_MUSL_SRC_DIR)/, \
a00bf321 200 env/__init_tls.c \
201 stdio/__lockfile.c \
f0295069
YT
202 stdio/flockfile.c \
203 stdio/ftrylockfile.c \
204 stdio/funlockfile.c \
d02cec69 205 thread/__lock.c \
33c3753c
AB
206 thread/__wait.c \
207 thread/__timedwait.c \
a00bf321 208 thread/default_attr.c \
209 thread/pthread_attr_destroy.c \
627654f0 210 thread/pthread_attr_get.c \
a00bf321 211 thread/pthread_attr_init.c \
212 thread/pthread_attr_setstack.c \
9fcc8d48 213 thread/pthread_attr_setdetachstate.c \
a00bf321 214 thread/pthread_attr_setstacksize.c \
583c4269
AB
215 thread/pthread_barrier_destroy.c \
216 thread/pthread_barrier_init.c \
217 thread/pthread_barrier_wait.c \
c40403f9
MK
218 thread/pthread_cleanup_push.c \
219 thread/pthread_cond_broadcast.c \
220 thread/pthread_cond_destroy.c \
221 thread/pthread_cond_init.c \
222 thread/pthread_cond_signal.c \
223 thread/pthread_cond_timedwait.c \
224 thread/pthread_cond_wait.c \
3d00b969
MK
225 thread/pthread_condattr_destroy.c \
226 thread/pthread_condattr_init.c \
227 thread/pthread_condattr_setclock.c \
228 thread/pthread_condattr_setpshared.c \
241060c3 229 thread/pthread_create.c \
c071a602 230 thread/pthread_detach.c \
ef4b949b 231 thread/pthread_equal.c \
c718ee13 232 thread/pthread_getspecific.c \
9d2f5a82 233 thread/pthread_join.c \
c718ee13 234 thread/pthread_key_create.c \
33c3753c
AB
235 thread/pthread_mutex_consistent.c \
236 thread/pthread_mutex_destroy.c \
237 thread/pthread_mutex_init.c \
238 thread/pthread_mutex_getprioceiling.c \
239 thread/pthread_mutex_lock.c \
240 thread/pthread_mutex_timedlock.c \
241 thread/pthread_mutex_trylock.c \
242 thread/pthread_mutex_unlock.c \
243 thread/pthread_mutexattr_destroy.c \
244 thread/pthread_mutexattr_init.c \
245 thread/pthread_mutexattr_setprotocol.c \
246 thread/pthread_mutexattr_setpshared.c \
247 thread/pthread_mutexattr_setrobust.c \
248 thread/pthread_mutexattr_settype.c \
c718ee13 249 thread/pthread_once.c \
27ba71f9
MK
250 thread/pthread_rwlock_destroy.c \
251 thread/pthread_rwlock_init.c \
252 thread/pthread_rwlock_rdlock.c \
253 thread/pthread_rwlock_timedrdlock.c \
254 thread/pthread_rwlock_timedwrlock.c \
255 thread/pthread_rwlock_tryrdlock.c \
256 thread/pthread_rwlock_trywrlock.c \
257 thread/pthread_rwlock_unlock.c \
258 thread/pthread_rwlock_wrlock.c \
259 thread/pthread_rwlockattr_destroy.c \
260 thread/pthread_rwlockattr_init.c \
261 thread/pthread_rwlockattr_setpshared.c \
241060c3 262 thread/pthread_setcancelstate.c \
c718ee13 263 thread/pthread_setspecific.c \
a00bf321 264 thread/pthread_self.c \
2057ce92
AB
265 thread/pthread_testcancel.c \
266 thread/sem_destroy.c \
267 thread/sem_getvalue.c \
268 thread/sem_init.c \
269 thread/sem_post.c \
270 thread/sem_timedwait.c \
271 thread/sem_trywait.c \
272 thread/sem_wait.c \
1ac6844d 273 thread/wasm32/wasi_thread_start.s \
33c3753c
AB
274 )
275endif
276
320054e8
DG
277MUSL_PRINTSCAN_SOURCES = \
278 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal/floatscan.c \
279 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfprintf.c \
2201343c 280 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfwprintf.c \
320054e8
DG
281 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfscanf.c \
282 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/strtod.c \
283 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/wcstod.c
d3cc92a6
CS
284BULK_MEMORY_SOURCES = \
285 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/memcpy.c \
286 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/memmove.c \
287 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/memset.c
320054e8
DG
288LIBC_TOP_HALF_HEADERS_PRIVATE = $(LIBC_TOP_HALF_DIR)/headers/private
289LIBC_TOP_HALF_SOURCES = $(LIBC_TOP_HALF_DIR)/sources
290LIBC_TOP_HALF_ALL_SOURCES = \
291 $(LIBC_TOP_HALF_MUSL_SOURCES) \
1ac6844d 292 $(sort $(shell find $(LIBC_TOP_HALF_SOURCES) -name \*.[cs]))
320054e8 293
8852e15a
JE
294# Add any extra flags
295CFLAGS = $(EXTRA_CFLAGS)
320054e8 296# Set the target.
8852e15a 297CFLAGS += --target=$(TARGET_TRIPLE)
1ac6844d 298ASMFLAGS += --target=$(TARGET_TRIPLE)
320054e8
DG
299# WebAssembly floating-point match doesn't trap.
300# TODO: Add -fno-signaling-nans when the compiler supports it.
5ccfab77 301CFLAGS += -fno-trapping-math
63f0f3c5
DG
302# Add all warnings, but disable a few which occur in third-party code.
303CFLAGS += -Wall -Wextra -Werror \
304 -Wno-null-pointer-arithmetic \
9520010f 305 -Wno-unused-parameter \
e69430a9 306 -Wno-sign-compare \
6273a5ff 307 -Wno-unused-variable \
ed6e0ba9 308 -Wno-unused-function \
e8270d1b 309 -Wno-ignored-attributes \
b77dcff6 310 -Wno-missing-braces \
9cbfeaaa 311 -Wno-ignored-pragmas \
a78cd329
DG
312 -Wno-unused-but-set-variable \
313 -Wno-unknown-warning-option
dbfccac2
DG
314
315# Configure support for threads.
320054e8 316ifeq ($(THREAD_MODEL), single)
d3cc92a6 317CFLAGS += -mthread-model single
dbfccac2 318endif
320054e8 319ifeq ($(THREAD_MODEL), posix)
dcd28cf8
AB
320# Specify the tls-model until LLVM 15 is released (which should contain
321# https://reviews.llvm.org/D130053).
322CFLAGS += -mthread-model posix -pthread -ftls-model=local-exec
3d00b969
MK
323
324# Include cloudlib's directory to access the structure definition of clockid_t
325CFLAGS += -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC)
320054e8
DG
326endif
327
fc260f1a
JE
328# Expose the public headers to the implementation. We use `-isystem` for
329# purpose for two reasons:
330#
331# 1. It only does `<...>` not `"...."` lookup. We are making a libc,
332# which is a system library, so all public headers should be
333# accessible via `<...>` and never also need `"..."`. `-isystem` main
334# purpose is to only effect `<...>` lookup.
335#
336# 2. The `-I` for private headers added for specific C files below
337# should come earlier in the search path, so they can "override"
338# and/or `#include_next` the public headers. `-isystem` (like
339# `-idirafter`) comes later in the search path than `-I`.
340CFLAGS += -isystem "$(SYSROOT_INC)"
320054e8 341
41af0db3
DG
342# These variables describe the locations of various files and directories in
343# the build tree.
320054e8 344objs = $(patsubst $(CURDIR)/%.c,$(OBJDIR)/%.o,$(1))
1ac6844d 345asmobjs = $(patsubst $(CURDIR)/%.s,$(OBJDIR)/%.o,$(1))
41af0db3 346DLMALLOC_OBJS = $(call objs,$(DLMALLOC_SOURCES))
a7af7c06 347EMMALLOC_OBJS = $(call objs,$(EMMALLOC_SOURCES))
41af0db3 348LIBC_BOTTOM_HALF_ALL_OBJS = $(call objs,$(LIBC_BOTTOM_HALF_ALL_SOURCES))
1ac6844d 349LIBC_TOP_HALF_ALL_OBJS = $(call asmobjs,$(call objs,$(LIBC_TOP_HALF_ALL_SOURCES)))
c7465d22 350ifeq ($(MALLOC_IMPL),dlmalloc)
41af0db3 351LIBC_OBJS += $(DLMALLOC_OBJS)
a7af7c06
DG
352else ifeq ($(MALLOC_IMPL),emmalloc)
353LIBC_OBJS += $(EMMALLOC_OBJS)
c7465d22
AL
354else ifeq ($(MALLOC_IMPL),none)
355# No object files to add.
356else
357$(error unknown malloc implementation $(MALLOC_IMPL))
dbfccac2 358endif
320054e8 359# Add libc-bottom-half's objects.
41af0db3 360LIBC_OBJS += $(LIBC_BOTTOM_HALF_ALL_OBJS)
320054e8 361ifeq ($(BUILD_LIBC_TOP_HALF),yes)
320054e8 362# libc-top-half is musl.
41af0db3 363LIBC_OBJS += $(LIBC_TOP_HALF_ALL_OBJS)
320054e8 364endif
41af0db3
DG
365MUSL_PRINTSCAN_OBJS = $(call objs,$(MUSL_PRINTSCAN_SOURCES))
366MUSL_PRINTSCAN_LONG_DOUBLE_OBJS = $(patsubst %.o,%.long-double.o,$(MUSL_PRINTSCAN_OBJS))
367MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS = $(patsubst %.o,%.no-floating-point.o,$(MUSL_PRINTSCAN_OBJS))
d3cc92a6 368BULK_MEMORY_OBJS = $(call objs,$(BULK_MEMORY_SOURCES))
41af0db3 369LIBWASI_EMULATED_MMAN_OBJS = $(call objs,$(LIBWASI_EMULATED_MMAN_SOURCES))
b9b64a69 370LIBWASI_EMULATED_PROCESS_CLOCKS_OBJS = $(call objs,$(LIBWASI_EMULATED_PROCESS_CLOCKS_SOURCES))
659ff414 371LIBWASI_EMULATED_GETPID_OBJS = $(call objs,$(LIBWASI_EMULATED_GETPID_SOURCES))
d1cd4f48
DG
372LIBWASI_EMULATED_SIGNAL_OBJS = $(call objs,$(LIBWASI_EMULATED_SIGNAL_SOURCES))
373LIBWASI_EMULATED_SIGNAL_MUSL_OBJS = $(call objs,$(LIBWASI_EMULATED_SIGNAL_MUSL_SOURCES))
41af0db3
DG
374
375# These variables describe the locations of various files and
376# directories in the generated sysroot tree.
f1af8cea 377SYSROOT_LIB := $(SYSROOT)/lib/$(TARGET_TRIPLE)
41af0db3 378SYSROOT_INC = $(SYSROOT)/include
f1af8cea 379SYSROOT_SHARE = $(SYSROOT)/share/$(TARGET_TRIPLE)
320054e8 380
1f409842
DG
381# Files from musl's include directory that we don't want to install in the
382# sysroot's include directory.
41af0db3 383MUSL_OMIT_HEADERS :=
1f409842
DG
384
385# Remove files which aren't headers (we generate alltypes.h below).
41af0db3 386MUSL_OMIT_HEADERS += \
1f409842
DG
387 "bits/syscall.h.in" \
388 "bits/alltypes.h.in" \
389 "alltypes.h.in"
390
33e8b518 391# Use the compiler's version of these headers.
41af0db3 392MUSL_OMIT_HEADERS += \
33e8b518
DG
393 "stdarg.h" \
394 "stddef.h"
395
1f409842 396# Use the WASI errno definitions.
41af0db3 397MUSL_OMIT_HEADERS += \
1f409842
DG
398 "bits/errno.h"
399
400# Remove headers that aren't supported yet or that aren't relevant for WASI.
41af0db3 401MUSL_OMIT_HEADERS += \
1f409842
DG
402 "sys/procfs.h" \
403 "sys/user.h" \
404 "sys/kd.h" "sys/vt.h" "sys/soundcard.h" "sys/sem.h" \
405 "sys/shm.h" "sys/msg.h" "sys/ipc.h" "sys/ptrace.h" \
406 "sys/statfs.h" \
407 "bits/kd.h" "bits/vt.h" "bits/soundcard.h" "bits/sem.h" \
408 "bits/shm.h" "bits/msg.h" "bits/ipc.h" "bits/ptrace.h" \
409 "bits/statfs.h" \
410 "sys/vfs.h" \
411 "sys/statvfs.h" \
412 "syslog.h" "sys/syslog.h" \
413 "wait.h" "sys/wait.h" \
414 "ucontext.h" "sys/ucontext.h" \
415 "paths.h" \
416 "utmp.h" "utmpx.h" \
417 "lastlog.h" \
418 "sys/acct.h" \
419 "sys/cachectl.h" \
420 "sys/epoll.h" "sys/reboot.h" "sys/swap.h" \
421 "sys/sendfile.h" "sys/inotify.h" \
422 "sys/quota.h" \
423 "sys/klog.h" \
424 "sys/fsuid.h" \
425 "sys/io.h" \
426 "sys/prctl.h" \
427 "sys/mtio.h" \
428 "sys/mount.h" \
429 "sys/fanotify.h" \
430 "sys/personality.h" \
431 "elf.h" "link.h" "bits/link.h" \
432 "scsi/scsi.h" "scsi/scsi_ioctl.h" "scsi/sg.h" \
433 "sys/auxv.h" \
434 "pwd.h" "shadow.h" "grp.h" \
435 "mntent.h" \
436 "netdb.h" \
437 "resolv.h" \
438 "pty.h" \
439 "dlfcn.h" \
440 "setjmp.h" \
441 "ulimit.h" \
442 "sys/xattr.h" \
443 "wordexp.h" \
444 "spawn.h" \
445 "sys/membarrier.h" \
446 "sys/signalfd.h" \
447 "termios.h" \
448 "sys/termios.h" \
449 "bits/termios.h" \
450 "net/if.h" \
451 "net/if_arp.h" \
452 "net/ethernet.h" \
453 "net/route.h" \
454 "netinet/if_ether.h" \
455 "netinet/ether.h" \
eb7230cf
DG
456 "sys/timerfd.h" \
457 "libintl.h" \
dcd28cf8
AB
458 "sys/sysmacros.h" \
459 "aio.h"
1f409842
DG
460
461ifeq ($(THREAD_MODEL), single)
462# Remove headers not supported in single-threaded mode.
dcd28cf8 463MUSL_OMIT_HEADERS += "pthread.h"
1f409842
DG
464endif
465
41af0db3 466default: finish
320054e8
DG
467
468$(SYSROOT_LIB)/libc.a: $(LIBC_OBJS)
469
470$(SYSROOT_LIB)/libc-printscan-long-double.a: $(MUSL_PRINTSCAN_LONG_DOUBLE_OBJS)
471
472$(SYSROOT_LIB)/libc-printscan-no-floating-point.a: $(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS)
473
474$(SYSROOT_LIB)/libwasi-emulated-mman.a: $(LIBWASI_EMULATED_MMAN_OBJS)
475
b9b64a69
DG
476$(SYSROOT_LIB)/libwasi-emulated-process-clocks.a: $(LIBWASI_EMULATED_PROCESS_CLOCKS_OBJS)
477
659ff414
DG
478$(SYSROOT_LIB)/libwasi-emulated-getpid.a: $(LIBWASI_EMULATED_GETPID_OBJS)
479
d1cd4f48
DG
480$(SYSROOT_LIB)/libwasi-emulated-signal.a: $(LIBWASI_EMULATED_SIGNAL_OBJS) $(LIBWASI_EMULATED_SIGNAL_MUSL_OBJS)
481
320054e8
DG
482%.a:
483 @mkdir -p "$(@D)"
255e6f7c 484 # On Windows, the commandline for the ar invocation got too long, so it needs to be split up.
9eb4a995
JE
485 $(AR) crs $@ $(wordlist 1, 199, $^)
486 $(AR) crs $@ $(wordlist 200, 399, $^)
487 $(AR) crs $@ $(wordlist 400, 599, $^)
488 $(AR) crs $@ $(wordlist 600, 799, $^)
255e6f7c
TS
489 # This might eventually overflow again, but at least it'll do so in a loud way instead of
490 # silently dropping the tail.
9eb4a995 491 $(AR) crs $@ $(wordlist 800, 100000, $^)
320054e8 492
5ccfab77 493$(MUSL_PRINTSCAN_OBJS): CFLAGS += \
320054e8
DG
494 -D__wasilibc_printscan_no_long_double \
495 -D__wasilibc_printscan_full_support_option="\"add -lc-printscan-long-double to the link command\""
496
5ccfab77 497$(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS): CFLAGS += \
320054e8
DG
498 -D__wasilibc_printscan_no_floating_point \
499 -D__wasilibc_printscan_floating_point_support_option="\"remove -lc-printscan-no-floating-point from the link command\""
500
5d0a7558
CS
501# TODO: apply -mbulk-memory globally, once
502# https://github.com/llvm/llvm-project/issues/52618 is resolved
d3cc92a6
CS
503$(BULK_MEMORY_OBJS): CFLAGS += \
504 -mbulk-memory
505
ba81b409
CS
506$(BULK_MEMORY_OBJS): CFLAGS += \
507 -DBULK_MEMORY_THRESHOLD=$(BULK_MEMORY_THRESHOLD)
508
5ccfab77 509$(LIBWASI_EMULATED_SIGNAL_MUSL_OBJS): CFLAGS += \
d1cd4f48
DG
510 -D_WASI_EMULATED_SIGNAL
511
8e8cc34a 512$(OBJDIR)/%.long-double.o: $(CURDIR)/%.c include_dirs
320054e8 513 @mkdir -p "$(@D)"
9e09e02a 514 $(CC) $(CFLAGS) -MD -MP -o $@ -c $<
dcf13b6f 515
8e8cc34a 516$(OBJDIR)/%.no-floating-point.o: $(CURDIR)/%.c include_dirs
320054e8 517 @mkdir -p "$(@D)"
9e09e02a 518 $(CC) $(CFLAGS) -MD -MP -o $@ -c $<
320054e8 519
8e8cc34a 520$(OBJDIR)/%.o: $(CURDIR)/%.c include_dirs
320054e8 521 @mkdir -p "$(@D)"
9e09e02a 522 $(CC) $(CFLAGS) -MD -MP -o $@ -c $<
320054e8 523
1ac6844d
YT
524$(OBJDIR)/%.o: $(CURDIR)/%.s include_dirs
525 @mkdir -p "$(@D)"
526 $(CC) $(ASMFLAGS) -o $@ -c $<
527
255e6f7c 528-include $(shell find $(OBJDIR) -name \*.d)
320054e8 529
5ccfab77 530$(DLMALLOC_OBJS): CFLAGS += \
320054e8
DG
531 -I$(DLMALLOC_INC)
532
5ccfab77 533startup_files $(LIBC_BOTTOM_HALF_ALL_OBJS): CFLAGS += \
320054e8
DG
534 -I$(LIBC_BOTTOM_HALF_HEADERS_PRIVATE) \
535 -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC_INC) \
87c2aa04
AB
536 -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC) \
537 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/include \
538 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal
320054e8 539
5ccfab77 540$(LIBC_TOP_HALF_ALL_OBJS) $(MUSL_PRINTSCAN_LONG_DOUBLE_OBJS) $(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS) $(LIBWASI_EMULATED_SIGNAL_MUSL_OBJS): CFLAGS += \
320054e8
DG
541 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/include \
542 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal \
543 -I$(LIBC_TOP_HALF_MUSL_DIR)/arch/wasm32 \
544 -I$(LIBC_TOP_HALF_MUSL_DIR)/arch/generic \
545 -I$(LIBC_TOP_HALF_HEADERS_PRIVATE) \
546 -Wno-parentheses \
547 -Wno-shift-op-parentheses \
548 -Wno-bitwise-op-parentheses \
549 -Wno-logical-op-parentheses \
550 -Wno-string-plus-int \
551 -Wno-dangling-else \
552 -Wno-unknown-pragmas
553
b9b64a69
DG
554$(LIBWASI_EMULATED_PROCESS_CLOCKS_OBJS): CFLAGS += \
555 -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC)
556
8e8cc34a 557include_dirs:
dcf13b6f
DG
558 #
559 # Install the include files.
560 #
320054e8 561 mkdir -p "$(SYSROOT_INC)"
320054e8
DG
562 cp -r "$(LIBC_BOTTOM_HALF_HEADERS_PUBLIC)"/* "$(SYSROOT_INC)"
563
564 # Generate musl's bits/alltypes.h header.
565 mkdir -p "$(SYSROOT_INC)/bits"
566 sed -f $(LIBC_TOP_HALF_MUSL_DIR)/tools/mkalltypes.sed \
567 $(LIBC_TOP_HALF_MUSL_DIR)/arch/wasm32/bits/alltypes.h.in \
568 $(LIBC_TOP_HALF_MUSL_DIR)/include/alltypes.h.in \
569 > "$(SYSROOT_INC)/bits/alltypes.h"
570
571 # Copy in the bulk of musl's public header files.
572 cp -r "$(LIBC_TOP_HALF_MUSL_INC)"/* "$(SYSROOT_INC)"
573 # Copy in the musl's "bits" header files.
574 cp -r "$(LIBC_TOP_HALF_MUSL_DIR)"/arch/generic/bits/* "$(SYSROOT_INC)/bits"
575 cp -r "$(LIBC_TOP_HALF_MUSL_DIR)"/arch/wasm32/bits/* "$(SYSROOT_INC)/bits"
576
1f409842
DG
577 # Remove selected header files.
578 $(RM) $(patsubst %,$(SYSROOT_INC)/%,$(MUSL_OMIT_HEADERS))
320054e8 579
8e8cc34a 580startup_files: include_dirs
dcf13b6f 581 #
320054e8 582 # Build the startup files.
dcf13b6f 583 #
320054e8
DG
584 @mkdir -p "$(OBJDIR)"
585 cd "$(OBJDIR)" && \
9e09e02a 586 $(CC) $(CFLAGS) -c $(LIBC_BOTTOM_HALF_CRT_SOURCES) -MD -MP && \
320054e8
DG
587 mkdir -p "$(SYSROOT_LIB)" && \
588 mv *.o "$(SYSROOT_LIB)"
dcf13b6f 589
8e8cc34a 590libc: include_dirs \
320054e8
DG
591 $(SYSROOT_LIB)/libc.a \
592 $(SYSROOT_LIB)/libc-printscan-long-double.a \
593 $(SYSROOT_LIB)/libc-printscan-no-floating-point.a \
d1cd4f48 594 $(SYSROOT_LIB)/libwasi-emulated-mman.a \
b9b64a69 595 $(SYSROOT_LIB)/libwasi-emulated-process-clocks.a \
659ff414 596 $(SYSROOT_LIB)/libwasi-emulated-getpid.a \
d1cd4f48 597 $(SYSROOT_LIB)/libwasi-emulated-signal.a
320054e8 598
8e8cc34a 599finish: startup_files libc
dcf13b6f 600 #
320054e8 601 # Create empty placeholder libraries.
dcf13b6f 602 #
1f7d798a 603 for name in m rt pthread crypt util xnet resolv dl; do \
9eb4a995 604 $(AR) crs "$(SYSROOT_LIB)/lib$${name}.a"; \
320054e8 605 done
dbfccac2 606
c7465d22
AL
607 #
608 # The build succeeded! The generated sysroot is in $(SYSROOT).
609 #
610
611# The check for defined and undefined symbols expects there to be a heap
612# alloctor (providing malloc, calloc, free, etc). Skip this step if the build
613# is done without a malloc implementation.
614ifneq ($(MALLOC_IMPL),none)
615finish: check-symbols
616endif
617
18f9e0aa
JE
618DEFINED_SYMBOLS = $(SYSROOT_SHARE)/defined-symbols.txt
619UNDEFINED_SYMBOLS = $(SYSROOT_SHARE)/undefined-symbols.txt
620
c7465d22 621check-symbols: startup_files libc
dbfccac2 622 #
320054e8 623 # Collect metadata on the sysroot and perform sanity checks.
dbfccac2 624 #
320054e8
DG
625 mkdir -p "$(SYSROOT_SHARE)"
626
41af0db3 627 #
320054e8 628 # Collect symbol information.
41af0db3
DG
629 #
630 @# TODO: Use llvm-nm --extern-only instead of grep. This is blocked on
631 @# LLVM PR40497, which is fixed in 9.0, but not in 8.0.
632 @# Ignore certain llvm builtin symbols such as those starting with __mul
633 @# since these dependencies can vary between llvm versions.
a279514a 634 "$(NM)" --defined-only "$(SYSROOT_LIB)"/libc.a "$(SYSROOT_LIB)"/libwasi-emulated-*.a "$(SYSROOT_LIB)"/*.o \
294b23c3 635 |grep ' [[:upper:]] ' |sed 's/.* [[:upper:]] //' |LC_ALL=C sort |uniq > "$(DEFINED_SYMBOLS)"
a279514a 636 for undef_sym in $$("$(NM)" --undefined-only "$(SYSROOT_LIB)"/libc.a "$(SYSROOT_LIB)"/libc-*.a "$(SYSROOT_LIB)"/*.o \
fad009dc 637 |grep ' U ' |sed 's/.* U //' |LC_ALL=C sort |uniq); do \
18f9e0aa
JE
638 grep -q '\<'$$undef_sym'\>' "$(DEFINED_SYMBOLS)" || echo $$undef_sym; \
639 done | grep -v "^__mul" > "$(UNDEFINED_SYMBOLS)"
640 grep '^_*imported_wasi_' "$(UNDEFINED_SYMBOLS)" \
320054e8
DG
641 > "$(SYSROOT_LIB)/libc.imports"
642
41af0db3 643 #
b1196b49 644 # Generate a test file that includes all public C header files.
41af0db3 645 #
4cb4b26f 646 cd "$(SYSROOT_INC)" && \
b1196b49 647 for header in $$(find . -type f -not -name mman.h -not -name signal.h -not -name times.h -not -name resource.h |grep -v /bits/ |grep -v /c++/); do \
4cb4b26f
JE
648 echo '#include <'$$header'>' | sed 's/\.\///' ; \
649 done |LC_ALL=C sort >$(SYSROOT_SHARE)/include-all.c ; \
320054e8
DG
650 cd - >/dev/null
651
41af0db3 652 #
320054e8 653 # Test that it compiles.
41af0db3 654 #
9e09e02a 655 $(CC) $(CFLAGS) -fsyntax-only "$(SYSROOT_SHARE)/include-all.c" -Wno-\#warnings
320054e8 656
8df0d4cd 657 #
41af0db3
DG
658 # Collect all the predefined macros, except for compiler version macros
659 # which we don't need to track here.
8df0d4cd 660 #
41af0db3
DG
661 @#
662 @# For the __*_ATOMIC_*_LOCK_FREE macros, squash individual compiler names
663 @# to attempt, toward keeping these files compiler-independent.
664 @#
665 @# We have to add `-isystem $(SYSROOT_INC)` because otherwise clang puts
666 @# its builtin include path first, which produces compiler-specific
667 @# output.
668 @#
df006e12 669 @# TODO: Filter out __NO_MATH_ERRNO_ and a few __*WIDTH__ that are new to clang 14.
c2c69e09 670 @# TODO: Filter out __GCC_HAVE_SYNC_COMPARE_AND_SWAP_* that are new to clang 16.
e9fcbdea
MH
671 @# TODO: clang defined __FLT_EVAL_METHOD__ until clang 15, so we force-undefine it
672 @# for older versions.
cf850d1a
MH
673 @# TODO: Undefine __wasm_mutable_globals__ and __wasm_sign_ext__, that are new to
674 @# clang 16 for -mcpu=generic.
675 @# TODO: As of clang 16, __GNUC_VA_LIST is #defined without a value.
9e09e02a 676 $(CC) $(CFLAGS) "$(SYSROOT_SHARE)/include-all.c" \
8df0d4cd 677 -isystem $(SYSROOT_INC) \
38b930a2 678 -std=gnu17 \
320054e8 679 -E -dM -Wno-\#warnings \
9f0d8e85 680 -D_ALL_SOURCE \
320054e8
DG
681 -U__llvm__ \
682 -U__clang__ \
683 -U__clang_major__ \
684 -U__clang_minor__ \
685 -U__clang_patchlevel__ \
686 -U__clang_version__ \
ad513341
MH
687 -U__clang_literal_encoding__ \
688 -U__clang_wide_literal_encoding__ \
cf850d1a
MH
689 -U__wasm_mutable_globals__ \
690 -U__wasm_sign_ext__ \
320054e8
DG
691 -U__GNUC__ \
692 -U__GNUC_MINOR__ \
693 -U__GNUC_PATCHLEVEL__ \
694 -U__VERSION__ \
df006e12
MH
695 -U__NO_MATH_ERRNO__ \
696 -U__BITINT_MAXWIDTH__ \
e9fcbdea 697 -U__FLT_EVAL_METHOD__ -Wno-builtin-macro-redefined \
320054e8 698 | sed -e 's/__[[:upper:][:digit:]]*_ATOMIC_\([[:upper:][:digit:]_]*\)_LOCK_FREE/__compiler_ATOMIC_\1_LOCK_FREE/' \
cf850d1a 699 | sed -e 's/__GNUC_VA_LIST $$/__GNUC_VA_LIST 1/' \
df006e12 700 | grep -v '^#define __\(BOOL\|INT_\(LEAST\|FAST\)\(8\|16\|32\|64\)\|INT\|LONG\|LLONG\|SHRT\)_WIDTH__' \
c2c69e09 701 | grep -v '^#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_\(1\|2\|4\|8\)' \
320054e8
DG
702 > "$(SYSROOT_SHARE)/predefined-macros.txt"
703
320054e8 704 # Check that the computed metadata matches the expected metadata.
255e6f7c 705 # This ignores whitespace because on Windows the output has CRLF line endings.
f1af8cea 706 diff -wur "$(CURDIR)/expected/$(TARGET_TRIPLE)" "$(SYSROOT_SHARE)"
320054e8 707
8e8cc34a 708install: finish
320054e8
DG
709 mkdir -p "$(INSTALL_DIR)"
710 cp -r "$(SYSROOT)/lib" "$(SYSROOT)/share" "$(SYSROOT)/include" "$(INSTALL_DIR)"
711
111c8729
JE
712clean:
713 $(RM) -r "$(OBJDIR)"
714 $(RM) -r "$(SYSROOT)"
715
716.PHONY: default startup_files libc finish install include_dirs clean