]> git.proxmox.com Git - wasi-libc.git/blame - Makefile
Enable pthread_equal function definition (#374)
[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)
41TARGET_TRIPLE = wasm32-wasi-pthread
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 \
213 thread/pthread_attr_setstacksize.c \
583c4269
AB
214 thread/pthread_barrier_destroy.c \
215 thread/pthread_barrier_init.c \
216 thread/pthread_barrier_wait.c \
c40403f9
MK
217 thread/pthread_cleanup_push.c \
218 thread/pthread_cond_broadcast.c \
219 thread/pthread_cond_destroy.c \
220 thread/pthread_cond_init.c \
221 thread/pthread_cond_signal.c \
222 thread/pthread_cond_timedwait.c \
223 thread/pthread_cond_wait.c \
3d00b969
MK
224 thread/pthread_condattr_destroy.c \
225 thread/pthread_condattr_init.c \
226 thread/pthread_condattr_setclock.c \
227 thread/pthread_condattr_setpshared.c \
241060c3 228 thread/pthread_create.c \
c071a602 229 thread/pthread_detach.c \
ef4b949b 230 thread/pthread_equal.c \
c718ee13 231 thread/pthread_getspecific.c \
9d2f5a82 232 thread/pthread_join.c \
c718ee13 233 thread/pthread_key_create.c \
33c3753c
AB
234 thread/pthread_mutex_consistent.c \
235 thread/pthread_mutex_destroy.c \
236 thread/pthread_mutex_init.c \
237 thread/pthread_mutex_getprioceiling.c \
238 thread/pthread_mutex_lock.c \
239 thread/pthread_mutex_timedlock.c \
240 thread/pthread_mutex_trylock.c \
241 thread/pthread_mutex_unlock.c \
242 thread/pthread_mutexattr_destroy.c \
243 thread/pthread_mutexattr_init.c \
244 thread/pthread_mutexattr_setprotocol.c \
245 thread/pthread_mutexattr_setpshared.c \
246 thread/pthread_mutexattr_setrobust.c \
247 thread/pthread_mutexattr_settype.c \
c718ee13 248 thread/pthread_once.c \
27ba71f9
MK
249 thread/pthread_rwlock_destroy.c \
250 thread/pthread_rwlock_init.c \
251 thread/pthread_rwlock_rdlock.c \
252 thread/pthread_rwlock_timedrdlock.c \
253 thread/pthread_rwlock_timedwrlock.c \
254 thread/pthread_rwlock_tryrdlock.c \
255 thread/pthread_rwlock_trywrlock.c \
256 thread/pthread_rwlock_unlock.c \
257 thread/pthread_rwlock_wrlock.c \
258 thread/pthread_rwlockattr_destroy.c \
259 thread/pthread_rwlockattr_init.c \
260 thread/pthread_rwlockattr_setpshared.c \
241060c3 261 thread/pthread_setcancelstate.c \
c718ee13 262 thread/pthread_setspecific.c \
a00bf321 263 thread/pthread_self.c \
2057ce92
AB
264 thread/pthread_testcancel.c \
265 thread/sem_destroy.c \
266 thread/sem_getvalue.c \
267 thread/sem_init.c \
268 thread/sem_post.c \
269 thread/sem_timedwait.c \
270 thread/sem_trywait.c \
271 thread/sem_wait.c \
33c3753c
AB
272 )
273endif
274
320054e8
DG
275MUSL_PRINTSCAN_SOURCES = \
276 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal/floatscan.c \
277 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfprintf.c \
2201343c 278 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfwprintf.c \
320054e8
DG
279 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfscanf.c \
280 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/strtod.c \
281 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/wcstod.c
d3cc92a6
CS
282BULK_MEMORY_SOURCES = \
283 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/memcpy.c \
284 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/memmove.c \
285 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/memset.c
320054e8
DG
286LIBC_TOP_HALF_HEADERS_PRIVATE = $(LIBC_TOP_HALF_DIR)/headers/private
287LIBC_TOP_HALF_SOURCES = $(LIBC_TOP_HALF_DIR)/sources
288LIBC_TOP_HALF_ALL_SOURCES = \
289 $(LIBC_TOP_HALF_MUSL_SOURCES) \
69031b63 290 $(sort $(shell find $(LIBC_TOP_HALF_SOURCES) -name \*.c))
320054e8 291
8852e15a
JE
292# Add any extra flags
293CFLAGS = $(EXTRA_CFLAGS)
320054e8 294# Set the target.
8852e15a 295CFLAGS += --target=$(TARGET_TRIPLE)
320054e8
DG
296# WebAssembly floating-point match doesn't trap.
297# TODO: Add -fno-signaling-nans when the compiler supports it.
5ccfab77 298CFLAGS += -fno-trapping-math
63f0f3c5
DG
299# Add all warnings, but disable a few which occur in third-party code.
300CFLAGS += -Wall -Wextra -Werror \
301 -Wno-null-pointer-arithmetic \
9520010f 302 -Wno-unused-parameter \
e69430a9 303 -Wno-sign-compare \
6273a5ff 304 -Wno-unused-variable \
ed6e0ba9 305 -Wno-unused-function \
e8270d1b 306 -Wno-ignored-attributes \
b77dcff6 307 -Wno-missing-braces \
9cbfeaaa 308 -Wno-ignored-pragmas \
a78cd329
DG
309 -Wno-unused-but-set-variable \
310 -Wno-unknown-warning-option
dbfccac2
DG
311
312# Configure support for threads.
320054e8 313ifeq ($(THREAD_MODEL), single)
d3cc92a6 314CFLAGS += -mthread-model single
dbfccac2 315endif
320054e8 316ifeq ($(THREAD_MODEL), posix)
dcd28cf8
AB
317# Specify the tls-model until LLVM 15 is released (which should contain
318# https://reviews.llvm.org/D130053).
319CFLAGS += -mthread-model posix -pthread -ftls-model=local-exec
3d00b969
MK
320
321# Include cloudlib's directory to access the structure definition of clockid_t
322CFLAGS += -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC)
320054e8
DG
323endif
324
fc260f1a
JE
325# Expose the public headers to the implementation. We use `-isystem` for
326# purpose for two reasons:
327#
328# 1. It only does `<...>` not `"...."` lookup. We are making a libc,
329# which is a system library, so all public headers should be
330# accessible via `<...>` and never also need `"..."`. `-isystem` main
331# purpose is to only effect `<...>` lookup.
332#
333# 2. The `-I` for private headers added for specific C files below
334# should come earlier in the search path, so they can "override"
335# and/or `#include_next` the public headers. `-isystem` (like
336# `-idirafter`) comes later in the search path than `-I`.
337CFLAGS += -isystem "$(SYSROOT_INC)"
320054e8 338
41af0db3
DG
339# These variables describe the locations of various files and directories in
340# the build tree.
320054e8 341objs = $(patsubst $(CURDIR)/%.c,$(OBJDIR)/%.o,$(1))
41af0db3 342DLMALLOC_OBJS = $(call objs,$(DLMALLOC_SOURCES))
a7af7c06 343EMMALLOC_OBJS = $(call objs,$(EMMALLOC_SOURCES))
41af0db3
DG
344LIBC_BOTTOM_HALF_ALL_OBJS = $(call objs,$(LIBC_BOTTOM_HALF_ALL_SOURCES))
345LIBC_TOP_HALF_ALL_OBJS = $(call objs,$(LIBC_TOP_HALF_ALL_SOURCES))
c7465d22 346ifeq ($(MALLOC_IMPL),dlmalloc)
41af0db3 347LIBC_OBJS += $(DLMALLOC_OBJS)
a7af7c06
DG
348else ifeq ($(MALLOC_IMPL),emmalloc)
349LIBC_OBJS += $(EMMALLOC_OBJS)
c7465d22
AL
350else ifeq ($(MALLOC_IMPL),none)
351# No object files to add.
352else
353$(error unknown malloc implementation $(MALLOC_IMPL))
dbfccac2 354endif
320054e8 355# Add libc-bottom-half's objects.
41af0db3 356LIBC_OBJS += $(LIBC_BOTTOM_HALF_ALL_OBJS)
320054e8 357ifeq ($(BUILD_LIBC_TOP_HALF),yes)
320054e8 358# libc-top-half is musl.
41af0db3 359LIBC_OBJS += $(LIBC_TOP_HALF_ALL_OBJS)
320054e8 360endif
41af0db3
DG
361MUSL_PRINTSCAN_OBJS = $(call objs,$(MUSL_PRINTSCAN_SOURCES))
362MUSL_PRINTSCAN_LONG_DOUBLE_OBJS = $(patsubst %.o,%.long-double.o,$(MUSL_PRINTSCAN_OBJS))
363MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS = $(patsubst %.o,%.no-floating-point.o,$(MUSL_PRINTSCAN_OBJS))
d3cc92a6 364BULK_MEMORY_OBJS = $(call objs,$(BULK_MEMORY_SOURCES))
41af0db3 365LIBWASI_EMULATED_MMAN_OBJS = $(call objs,$(LIBWASI_EMULATED_MMAN_SOURCES))
b9b64a69 366LIBWASI_EMULATED_PROCESS_CLOCKS_OBJS = $(call objs,$(LIBWASI_EMULATED_PROCESS_CLOCKS_SOURCES))
659ff414 367LIBWASI_EMULATED_GETPID_OBJS = $(call objs,$(LIBWASI_EMULATED_GETPID_SOURCES))
d1cd4f48
DG
368LIBWASI_EMULATED_SIGNAL_OBJS = $(call objs,$(LIBWASI_EMULATED_SIGNAL_SOURCES))
369LIBWASI_EMULATED_SIGNAL_MUSL_OBJS = $(call objs,$(LIBWASI_EMULATED_SIGNAL_MUSL_SOURCES))
41af0db3
DG
370
371# These variables describe the locations of various files and
372# directories in the generated sysroot tree.
f1af8cea 373SYSROOT_LIB := $(SYSROOT)/lib/$(TARGET_TRIPLE)
41af0db3 374SYSROOT_INC = $(SYSROOT)/include
f1af8cea 375SYSROOT_SHARE = $(SYSROOT)/share/$(TARGET_TRIPLE)
320054e8 376
1f409842
DG
377# Files from musl's include directory that we don't want to install in the
378# sysroot's include directory.
41af0db3 379MUSL_OMIT_HEADERS :=
1f409842
DG
380
381# Remove files which aren't headers (we generate alltypes.h below).
41af0db3 382MUSL_OMIT_HEADERS += \
1f409842
DG
383 "bits/syscall.h.in" \
384 "bits/alltypes.h.in" \
385 "alltypes.h.in"
386
33e8b518 387# Use the compiler's version of these headers.
41af0db3 388MUSL_OMIT_HEADERS += \
33e8b518
DG
389 "stdarg.h" \
390 "stddef.h"
391
1f409842 392# Use the WASI errno definitions.
41af0db3 393MUSL_OMIT_HEADERS += \
1f409842
DG
394 "bits/errno.h"
395
396# Remove headers that aren't supported yet or that aren't relevant for WASI.
41af0db3 397MUSL_OMIT_HEADERS += \
1f409842
DG
398 "sys/procfs.h" \
399 "sys/user.h" \
400 "sys/kd.h" "sys/vt.h" "sys/soundcard.h" "sys/sem.h" \
401 "sys/shm.h" "sys/msg.h" "sys/ipc.h" "sys/ptrace.h" \
402 "sys/statfs.h" \
403 "bits/kd.h" "bits/vt.h" "bits/soundcard.h" "bits/sem.h" \
404 "bits/shm.h" "bits/msg.h" "bits/ipc.h" "bits/ptrace.h" \
405 "bits/statfs.h" \
406 "sys/vfs.h" \
407 "sys/statvfs.h" \
408 "syslog.h" "sys/syslog.h" \
409 "wait.h" "sys/wait.h" \
410 "ucontext.h" "sys/ucontext.h" \
411 "paths.h" \
412 "utmp.h" "utmpx.h" \
413 "lastlog.h" \
414 "sys/acct.h" \
415 "sys/cachectl.h" \
416 "sys/epoll.h" "sys/reboot.h" "sys/swap.h" \
417 "sys/sendfile.h" "sys/inotify.h" \
418 "sys/quota.h" \
419 "sys/klog.h" \
420 "sys/fsuid.h" \
421 "sys/io.h" \
422 "sys/prctl.h" \
423 "sys/mtio.h" \
424 "sys/mount.h" \
425 "sys/fanotify.h" \
426 "sys/personality.h" \
427 "elf.h" "link.h" "bits/link.h" \
428 "scsi/scsi.h" "scsi/scsi_ioctl.h" "scsi/sg.h" \
429 "sys/auxv.h" \
430 "pwd.h" "shadow.h" "grp.h" \
431 "mntent.h" \
432 "netdb.h" \
433 "resolv.h" \
434 "pty.h" \
435 "dlfcn.h" \
436 "setjmp.h" \
437 "ulimit.h" \
438 "sys/xattr.h" \
439 "wordexp.h" \
440 "spawn.h" \
441 "sys/membarrier.h" \
442 "sys/signalfd.h" \
443 "termios.h" \
444 "sys/termios.h" \
445 "bits/termios.h" \
446 "net/if.h" \
447 "net/if_arp.h" \
448 "net/ethernet.h" \
449 "net/route.h" \
450 "netinet/if_ether.h" \
451 "netinet/ether.h" \
eb7230cf
DG
452 "sys/timerfd.h" \
453 "libintl.h" \
dcd28cf8
AB
454 "sys/sysmacros.h" \
455 "aio.h"
1f409842
DG
456
457ifeq ($(THREAD_MODEL), single)
458# Remove headers not supported in single-threaded mode.
dcd28cf8 459MUSL_OMIT_HEADERS += "pthread.h"
1f409842
DG
460endif
461
41af0db3 462default: finish
320054e8
DG
463
464$(SYSROOT_LIB)/libc.a: $(LIBC_OBJS)
465
466$(SYSROOT_LIB)/libc-printscan-long-double.a: $(MUSL_PRINTSCAN_LONG_DOUBLE_OBJS)
467
468$(SYSROOT_LIB)/libc-printscan-no-floating-point.a: $(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS)
469
470$(SYSROOT_LIB)/libwasi-emulated-mman.a: $(LIBWASI_EMULATED_MMAN_OBJS)
471
b9b64a69
DG
472$(SYSROOT_LIB)/libwasi-emulated-process-clocks.a: $(LIBWASI_EMULATED_PROCESS_CLOCKS_OBJS)
473
659ff414
DG
474$(SYSROOT_LIB)/libwasi-emulated-getpid.a: $(LIBWASI_EMULATED_GETPID_OBJS)
475
d1cd4f48
DG
476$(SYSROOT_LIB)/libwasi-emulated-signal.a: $(LIBWASI_EMULATED_SIGNAL_OBJS) $(LIBWASI_EMULATED_SIGNAL_MUSL_OBJS)
477
320054e8
DG
478%.a:
479 @mkdir -p "$(@D)"
255e6f7c 480 # On Windows, the commandline for the ar invocation got too long, so it needs to be split up.
9eb4a995
JE
481 $(AR) crs $@ $(wordlist 1, 199, $^)
482 $(AR) crs $@ $(wordlist 200, 399, $^)
483 $(AR) crs $@ $(wordlist 400, 599, $^)
484 $(AR) crs $@ $(wordlist 600, 799, $^)
255e6f7c
TS
485 # This might eventually overflow again, but at least it'll do so in a loud way instead of
486 # silently dropping the tail.
9eb4a995 487 $(AR) crs $@ $(wordlist 800, 100000, $^)
320054e8 488
5ccfab77 489$(MUSL_PRINTSCAN_OBJS): CFLAGS += \
320054e8
DG
490 -D__wasilibc_printscan_no_long_double \
491 -D__wasilibc_printscan_full_support_option="\"add -lc-printscan-long-double to the link command\""
492
5ccfab77 493$(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS): CFLAGS += \
320054e8
DG
494 -D__wasilibc_printscan_no_floating_point \
495 -D__wasilibc_printscan_floating_point_support_option="\"remove -lc-printscan-no-floating-point from the link command\""
496
5d0a7558
CS
497# TODO: apply -mbulk-memory globally, once
498# https://github.com/llvm/llvm-project/issues/52618 is resolved
d3cc92a6
CS
499$(BULK_MEMORY_OBJS): CFLAGS += \
500 -mbulk-memory
501
ba81b409
CS
502$(BULK_MEMORY_OBJS): CFLAGS += \
503 -DBULK_MEMORY_THRESHOLD=$(BULK_MEMORY_THRESHOLD)
504
5ccfab77 505$(LIBWASI_EMULATED_SIGNAL_MUSL_OBJS): CFLAGS += \
d1cd4f48
DG
506 -D_WASI_EMULATED_SIGNAL
507
8e8cc34a 508$(OBJDIR)/%.long-double.o: $(CURDIR)/%.c include_dirs
320054e8 509 @mkdir -p "$(@D)"
9e09e02a 510 $(CC) $(CFLAGS) -MD -MP -o $@ -c $<
dcf13b6f 511
8e8cc34a 512$(OBJDIR)/%.no-floating-point.o: $(CURDIR)/%.c include_dirs
320054e8 513 @mkdir -p "$(@D)"
9e09e02a 514 $(CC) $(CFLAGS) -MD -MP -o $@ -c $<
320054e8 515
8e8cc34a 516$(OBJDIR)/%.o: $(CURDIR)/%.c include_dirs
320054e8 517 @mkdir -p "$(@D)"
9e09e02a 518 $(CC) $(CFLAGS) -MD -MP -o $@ -c $<
320054e8 519
255e6f7c 520-include $(shell find $(OBJDIR) -name \*.d)
320054e8 521
5ccfab77 522$(DLMALLOC_OBJS): CFLAGS += \
320054e8
DG
523 -I$(DLMALLOC_INC)
524
5ccfab77 525startup_files $(LIBC_BOTTOM_HALF_ALL_OBJS): CFLAGS += \
320054e8
DG
526 -I$(LIBC_BOTTOM_HALF_HEADERS_PRIVATE) \
527 -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC_INC) \
87c2aa04
AB
528 -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC) \
529 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/include \
530 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal
320054e8 531
5ccfab77 532$(LIBC_TOP_HALF_ALL_OBJS) $(MUSL_PRINTSCAN_LONG_DOUBLE_OBJS) $(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS) $(LIBWASI_EMULATED_SIGNAL_MUSL_OBJS): CFLAGS += \
320054e8
DG
533 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/include \
534 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal \
535 -I$(LIBC_TOP_HALF_MUSL_DIR)/arch/wasm32 \
536 -I$(LIBC_TOP_HALF_MUSL_DIR)/arch/generic \
537 -I$(LIBC_TOP_HALF_HEADERS_PRIVATE) \
538 -Wno-parentheses \
539 -Wno-shift-op-parentheses \
540 -Wno-bitwise-op-parentheses \
541 -Wno-logical-op-parentheses \
542 -Wno-string-plus-int \
543 -Wno-dangling-else \
544 -Wno-unknown-pragmas
545
b9b64a69
DG
546$(LIBWASI_EMULATED_PROCESS_CLOCKS_OBJS): CFLAGS += \
547 -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC)
548
8e8cc34a 549include_dirs:
dcf13b6f
DG
550 #
551 # Install the include files.
552 #
320054e8 553 mkdir -p "$(SYSROOT_INC)"
320054e8
DG
554 cp -r "$(LIBC_BOTTOM_HALF_HEADERS_PUBLIC)"/* "$(SYSROOT_INC)"
555
556 # Generate musl's bits/alltypes.h header.
557 mkdir -p "$(SYSROOT_INC)/bits"
558 sed -f $(LIBC_TOP_HALF_MUSL_DIR)/tools/mkalltypes.sed \
559 $(LIBC_TOP_HALF_MUSL_DIR)/arch/wasm32/bits/alltypes.h.in \
560 $(LIBC_TOP_HALF_MUSL_DIR)/include/alltypes.h.in \
561 > "$(SYSROOT_INC)/bits/alltypes.h"
562
563 # Copy in the bulk of musl's public header files.
564 cp -r "$(LIBC_TOP_HALF_MUSL_INC)"/* "$(SYSROOT_INC)"
565 # Copy in the musl's "bits" header files.
566 cp -r "$(LIBC_TOP_HALF_MUSL_DIR)"/arch/generic/bits/* "$(SYSROOT_INC)/bits"
567 cp -r "$(LIBC_TOP_HALF_MUSL_DIR)"/arch/wasm32/bits/* "$(SYSROOT_INC)/bits"
568
1f409842
DG
569 # Remove selected header files.
570 $(RM) $(patsubst %,$(SYSROOT_INC)/%,$(MUSL_OMIT_HEADERS))
320054e8 571
8e8cc34a 572startup_files: include_dirs
dcf13b6f 573 #
320054e8 574 # Build the startup files.
dcf13b6f 575 #
320054e8
DG
576 @mkdir -p "$(OBJDIR)"
577 cd "$(OBJDIR)" && \
9e09e02a 578 $(CC) $(CFLAGS) -c $(LIBC_BOTTOM_HALF_CRT_SOURCES) -MD -MP && \
320054e8
DG
579 mkdir -p "$(SYSROOT_LIB)" && \
580 mv *.o "$(SYSROOT_LIB)"
dcf13b6f 581
8e8cc34a 582libc: include_dirs \
320054e8
DG
583 $(SYSROOT_LIB)/libc.a \
584 $(SYSROOT_LIB)/libc-printscan-long-double.a \
585 $(SYSROOT_LIB)/libc-printscan-no-floating-point.a \
d1cd4f48 586 $(SYSROOT_LIB)/libwasi-emulated-mman.a \
b9b64a69 587 $(SYSROOT_LIB)/libwasi-emulated-process-clocks.a \
659ff414 588 $(SYSROOT_LIB)/libwasi-emulated-getpid.a \
d1cd4f48 589 $(SYSROOT_LIB)/libwasi-emulated-signal.a
320054e8 590
8e8cc34a 591finish: startup_files libc
dcf13b6f 592 #
320054e8 593 # Create empty placeholder libraries.
dcf13b6f 594 #
1f7d798a 595 for name in m rt pthread crypt util xnet resolv dl; do \
9eb4a995 596 $(AR) crs "$(SYSROOT_LIB)/lib$${name}.a"; \
320054e8 597 done
dbfccac2 598
c7465d22
AL
599 #
600 # The build succeeded! The generated sysroot is in $(SYSROOT).
601 #
602
603# The check for defined and undefined symbols expects there to be a heap
604# alloctor (providing malloc, calloc, free, etc). Skip this step if the build
605# is done without a malloc implementation.
606ifneq ($(MALLOC_IMPL),none)
607finish: check-symbols
608endif
609
18f9e0aa
JE
610DEFINED_SYMBOLS = $(SYSROOT_SHARE)/defined-symbols.txt
611UNDEFINED_SYMBOLS = $(SYSROOT_SHARE)/undefined-symbols.txt
612
c7465d22 613check-symbols: startup_files libc
dbfccac2 614 #
320054e8 615 # Collect metadata on the sysroot and perform sanity checks.
dbfccac2 616 #
320054e8
DG
617 mkdir -p "$(SYSROOT_SHARE)"
618
41af0db3 619 #
320054e8 620 # Collect symbol information.
41af0db3
DG
621 #
622 @# TODO: Use llvm-nm --extern-only instead of grep. This is blocked on
623 @# LLVM PR40497, which is fixed in 9.0, but not in 8.0.
624 @# Ignore certain llvm builtin symbols such as those starting with __mul
625 @# since these dependencies can vary between llvm versions.
a279514a 626 "$(NM)" --defined-only "$(SYSROOT_LIB)"/libc.a "$(SYSROOT_LIB)"/libwasi-emulated-*.a "$(SYSROOT_LIB)"/*.o \
294b23c3 627 |grep ' [[:upper:]] ' |sed 's/.* [[:upper:]] //' |LC_ALL=C sort |uniq > "$(DEFINED_SYMBOLS)"
a279514a 628 for undef_sym in $$("$(NM)" --undefined-only "$(SYSROOT_LIB)"/libc.a "$(SYSROOT_LIB)"/libc-*.a "$(SYSROOT_LIB)"/*.o \
fad009dc 629 |grep ' U ' |sed 's/.* U //' |LC_ALL=C sort |uniq); do \
18f9e0aa
JE
630 grep -q '\<'$$undef_sym'\>' "$(DEFINED_SYMBOLS)" || echo $$undef_sym; \
631 done | grep -v "^__mul" > "$(UNDEFINED_SYMBOLS)"
632 grep '^_*imported_wasi_' "$(UNDEFINED_SYMBOLS)" \
320054e8
DG
633 > "$(SYSROOT_LIB)/libc.imports"
634
41af0db3 635 #
b1196b49 636 # Generate a test file that includes all public C header files.
41af0db3 637 #
4cb4b26f 638 cd "$(SYSROOT_INC)" && \
b1196b49 639 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
640 echo '#include <'$$header'>' | sed 's/\.\///' ; \
641 done |LC_ALL=C sort >$(SYSROOT_SHARE)/include-all.c ; \
320054e8
DG
642 cd - >/dev/null
643
41af0db3 644 #
320054e8 645 # Test that it compiles.
41af0db3 646 #
9e09e02a 647 $(CC) $(CFLAGS) -fsyntax-only "$(SYSROOT_SHARE)/include-all.c" -Wno-\#warnings
320054e8 648
8df0d4cd 649 #
41af0db3
DG
650 # Collect all the predefined macros, except for compiler version macros
651 # which we don't need to track here.
8df0d4cd 652 #
41af0db3
DG
653 @#
654 @# For the __*_ATOMIC_*_LOCK_FREE macros, squash individual compiler names
655 @# to attempt, toward keeping these files compiler-independent.
656 @#
657 @# We have to add `-isystem $(SYSROOT_INC)` because otherwise clang puts
658 @# its builtin include path first, which produces compiler-specific
659 @# output.
660 @#
661 @# TODO: Undefine __FLOAT128__ for now since it's not in clang 8.0.
662 @# TODO: Filter out __FLT16_* for now, as not all versions of clang have these.
df006e12 663 @# TODO: Filter out __NO_MATH_ERRNO_ and a few __*WIDTH__ that are new to clang 14.
e9fcbdea
MH
664 @# TODO: clang defined __FLT_EVAL_METHOD__ until clang 15, so we force-undefine it
665 @# for older versions.
cf850d1a
MH
666 @# TODO: Undefine __wasm_mutable_globals__ and __wasm_sign_ext__, that are new to
667 @# clang 16 for -mcpu=generic.
668 @# TODO: As of clang 16, __GNUC_VA_LIST is #defined without a value.
9e09e02a 669 $(CC) $(CFLAGS) "$(SYSROOT_SHARE)/include-all.c" \
8df0d4cd 670 -isystem $(SYSROOT_INC) \
38b930a2 671 -std=gnu17 \
320054e8 672 -E -dM -Wno-\#warnings \
9f0d8e85 673 -D_ALL_SOURCE \
320054e8
DG
674 -U__llvm__ \
675 -U__clang__ \
676 -U__clang_major__ \
677 -U__clang_minor__ \
678 -U__clang_patchlevel__ \
679 -U__clang_version__ \
ad513341
MH
680 -U__clang_literal_encoding__ \
681 -U__clang_wide_literal_encoding__ \
cf850d1a
MH
682 -U__wasm_mutable_globals__ \
683 -U__wasm_sign_ext__ \
320054e8
DG
684 -U__GNUC__ \
685 -U__GNUC_MINOR__ \
686 -U__GNUC_PATCHLEVEL__ \
687 -U__VERSION__ \
688 -U__FLOAT128__ \
df006e12
MH
689 -U__NO_MATH_ERRNO__ \
690 -U__BITINT_MAXWIDTH__ \
e9fcbdea 691 -U__FLT_EVAL_METHOD__ -Wno-builtin-macro-redefined \
320054e8 692 | sed -e 's/__[[:upper:][:digit:]]*_ATOMIC_\([[:upper:][:digit:]_]*\)_LOCK_FREE/__compiler_ATOMIC_\1_LOCK_FREE/' \
cf850d1a 693 | sed -e 's/__GNUC_VA_LIST $$/__GNUC_VA_LIST 1/' \
f74124a6 694 | grep -v '^#define __FLT16_' \
df006e12 695 | grep -v '^#define __\(BOOL\|INT_\(LEAST\|FAST\)\(8\|16\|32\|64\)\|INT\|LONG\|LLONG\|SHRT\)_WIDTH__' \
320054e8
DG
696 > "$(SYSROOT_SHARE)/predefined-macros.txt"
697
320054e8 698 # Check that the computed metadata matches the expected metadata.
255e6f7c 699 # This ignores whitespace because on Windows the output has CRLF line endings.
f1af8cea 700 diff -wur "$(CURDIR)/expected/$(TARGET_TRIPLE)" "$(SYSROOT_SHARE)"
320054e8 701
8e8cc34a 702install: finish
320054e8
DG
703 mkdir -p "$(INSTALL_DIR)"
704 cp -r "$(SYSROOT)/lib" "$(SYSROOT)/share" "$(SYSROOT)/include" "$(INSTALL_DIR)"
705
111c8729
JE
706clean:
707 $(RM) -r "$(OBJDIR)"
708 $(RM) -r "$(SYSROOT)"
709
710.PHONY: default startup_files libc finish install include_dirs clean