]> git.proxmox.com Git - wasi-libc.git/blob - Makefile
Fix sinh's sign handling
[wasi-libc.git] / Makefile
1 # These variables are specifically meant to be overridable via the make
2 # command-line.
3 WASM_CC ?= clang
4 WASM_NM ?= $(patsubst %clang,%llvm-nm,$(WASM_CC))
5 WASM_AR ?= $(patsubst %clang,%llvm-ar,$(WASM_CC))
6 WASM_CFLAGS ?= -O2 -DNDEBUG
7 # The directory where we build the sysroot.
8 SYSROOT ?= $(CURDIR)/sysroot
9 # A directory to install to for "make install".
10 INSTALL_DIR ?= /usr/local
11 # single or posix
12 THREAD_MODEL ?= single
13 # yes or no
14 BUILD_DLMALLOC ?= yes
15 BUILD_LIBC_TOP_HALF ?= yes
16 # The directory where we're store intermediate artifacts.
17 OBJDIR ?= $(CURDIR)/build
18
19 # Check dependencies.
20 ifneq ($(BUILD_DLMALLOC),yes)
21 $(error build currently depends on BUILD_DLMALLOC=yes)
22 endif
23
24 # Variables from this point on are not meant to be overridable via the
25 # make command-line.
26
27 # Set the target variables. Multiarch triples notably omit the vendor field,
28 # which happens to be what we do for the main target triple too.
29 TARGET_TRIPLE = wasm32-wasi
30 MULTIARCH_TRIPLE = wasm32-wasi
31
32 # These variables describe the locations of various files and directories in
33 # the source tree.
34 DLMALLOC_DIR = $(CURDIR)/dlmalloc
35 DLMALLOC_SRC_DIR = $(DLMALLOC_DIR)/src
36 DLMALLOC_SOURCES = $(DLMALLOC_SRC_DIR)/dlmalloc.c
37 DLMALLOC_INC = $(DLMALLOC_DIR)/include
38 LIBC_BOTTOM_HALF_DIR = $(CURDIR)/libc-bottom-half
39 LIBC_BOTTOM_HALF_CLOUDLIBC_SRC = $(LIBC_BOTTOM_HALF_DIR)/cloudlibc/src
40 LIBC_BOTTOM_HALF_CLOUDLIBC_SRC_INC = $(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC)/include
41 LIBC_BOTTOM_HALF_HEADERS_PUBLIC = $(LIBC_BOTTOM_HALF_DIR)/headers/public
42 LIBC_BOTTOM_HALF_HEADERS_PRIVATE = $(LIBC_BOTTOM_HALF_DIR)/headers/private
43 LIBC_BOTTOM_HALF_SOURCES = $(LIBC_BOTTOM_HALF_DIR)/sources
44 LIBC_BOTTOM_HALF_ALL_SOURCES = \
45 $(shell find $(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC) -name \*.c) \
46 $(shell find $(LIBC_BOTTOM_HALF_SOURCES) -name \*.c)
47
48 # FIXME(https://reviews.llvm.org/D85567) - due to a bug in LLD the weak
49 # references to a function defined in `chdir.c` only work if `chdir.c` is at the
50 # end of the archive, but once that LLD review lands and propagates into LLVM
51 # then we don't have to do this.
52 LIBC_BOTTOM_HALF_ALL_SOURCES := $(filter-out $(LIBC_BOTTOM_HALF_SOURCES)/chdir.c,$(LIBC_BOTTOM_HALF_ALL_SOURCES))
53 LIBC_BOTTOM_HALF_ALL_SOURCES := $(LIBC_BOTTOM_HALF_ALL_SOURCES) $(LIBC_BOTTOM_HALF_SOURCES)/chdir.c
54
55 LIBWASI_EMULATED_MMAN_SOURCES = \
56 $(shell find $(LIBC_BOTTOM_HALF_DIR)/mman -name \*.c)
57 LIBWASI_EMULATED_SIGNAL_SOURCES = \
58 $(shell find $(LIBC_BOTTOM_HALF_DIR)/signal -name \*.c)
59 LIBWASI_EMULATED_SIGNAL_MUSL_SOURCES = \
60 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/signal/psignal.c \
61 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/strsignal.c
62 LIBC_BOTTOM_HALF_CRT_SOURCES = $(wildcard $(LIBC_BOTTOM_HALF_DIR)/crt/*.c)
63 LIBC_TOP_HALF_DIR = $(CURDIR)/libc-top-half
64 LIBC_TOP_HALF_MUSL_DIR = $(LIBC_TOP_HALF_DIR)/musl
65 LIBC_TOP_HALF_MUSL_SRC_DIR = $(LIBC_TOP_HALF_MUSL_DIR)/src
66 LIBC_TOP_HALF_MUSL_INC = $(LIBC_TOP_HALF_MUSL_DIR)/include
67 LIBC_TOP_HALF_MUSL_SOURCES = \
68 $(addprefix $(LIBC_TOP_HALF_MUSL_SRC_DIR)/, \
69 misc/a64l.c \
70 misc/basename.c \
71 misc/dirname.c \
72 misc/ffs.c \
73 misc/ffsl.c \
74 misc/ffsll.c \
75 misc/fmtmsg.c \
76 misc/getdomainname.c \
77 misc/gethostid.c \
78 misc/getopt.c \
79 misc/getopt_long.c \
80 misc/getsubopt.c \
81 misc/uname.c \
82 misc/nftw.c \
83 errno/strerror.c \
84 network/htonl.c \
85 network/htons.c \
86 network/ntohl.c \
87 network/ntohs.c \
88 network/inet_ntop.c \
89 network/inet_pton.c \
90 network/inet_aton.c \
91 network/in6addr_any.c \
92 network/in6addr_loopback.c \
93 fenv/fenv.c \
94 fenv/fesetround.c \
95 fenv/feupdateenv.c \
96 fenv/fesetexceptflag.c \
97 fenv/fegetexceptflag.c \
98 fenv/feholdexcept.c \
99 exit/exit.c \
100 exit/atexit.c \
101 exit/assert.c \
102 exit/quick_exit.c \
103 exit/at_quick_exit.c \
104 time/strftime.c \
105 time/asctime.c \
106 time/asctime_r.c \
107 time/ctime.c \
108 time/ctime_r.c \
109 time/wcsftime.c \
110 time/strptime.c \
111 time/difftime.c \
112 time/timegm.c \
113 time/ftime.c \
114 time/gmtime.c \
115 time/gmtime_r.c \
116 time/timespec_get.c \
117 time/getdate.c \
118 time/localtime.c \
119 time/localtime_r.c \
120 time/mktime.c \
121 time/__tm_to_secs.c \
122 time/__month_to_secs.c \
123 time/__secs_to_tm.c \
124 time/__year_to_secs.c \
125 time/__tz.c \
126 fcntl/creat.c \
127 dirent/alphasort.c \
128 dirent/versionsort.c \
129 env/clearenv.c \
130 env/getenv.c \
131 env/putenv.c \
132 env/setenv.c \
133 env/unsetenv.c \
134 unistd/posix_close.c \
135 ) \
136 $(filter-out %/procfdname.c %/syscall.c %/syscall_ret.c %/vdso.c %/version.c, \
137 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal/*.c)) \
138 $(filter-out %/flockfile.c %/funlockfile.c %/__lockfile.c %/ftrylockfile.c \
139 %/rename.c \
140 %/tmpnam.c %/tmpfile.c %/tempnam.c \
141 %/popen.c %/pclose.c \
142 %/remove.c \
143 %/gets.c, \
144 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/*.c)) \
145 $(filter-out %/strsignal.c, \
146 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/string/*.c)) \
147 $(filter-out %/dcngettext.c %/textdomain.c %/bind_textdomain_codeset.c, \
148 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/locale/*.c)) \
149 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/*.c) \
150 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/search/*.c) \
151 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/multibyte/*.c) \
152 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/regex/*.c) \
153 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/prng/*.c) \
154 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/conf/*.c) \
155 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/ctype/*.c) \
156 $(filter-out %/__signbit.c %/__signbitf.c %/__signbitl.c \
157 %/__fpclassify.c %/__fpclassifyf.c %/__fpclassifyl.c \
158 %/ceilf.c %/ceil.c \
159 %/floorf.c %/floor.c \
160 %/truncf.c %/trunc.c \
161 %/rintf.c %/rint.c \
162 %/nearbyintf.c %/nearbyint.c \
163 %/sqrtf.c %/sqrt.c \
164 %/fabsf.c %/fabs.c \
165 %/copysignf.c %/copysign.c \
166 %/fminf.c %/fmaxf.c \
167 %/fmin.c %/fmax.c, \
168 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/math/*.c)) \
169 $(filter-out %/crealf.c %/creal.c \
170 %/cimagf.c %/cimag.c, \
171 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/complex/*.c)) \
172 $(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/crypt/*.c)
173 MUSL_PRINTSCAN_SOURCES = \
174 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal/floatscan.c \
175 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfprintf.c \
176 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfwprintf.c \
177 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdio/vfscanf.c \
178 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/strtod.c \
179 $(LIBC_TOP_HALF_MUSL_SRC_DIR)/stdlib/wcstod.c
180 LIBC_TOP_HALF_HEADERS_PRIVATE = $(LIBC_TOP_HALF_DIR)/headers/private
181 LIBC_TOP_HALF_SOURCES = $(LIBC_TOP_HALF_DIR)/sources
182 LIBC_TOP_HALF_ALL_SOURCES = \
183 $(LIBC_TOP_HALF_MUSL_SOURCES) \
184 $(shell find $(LIBC_TOP_HALF_SOURCES) -name \*.c)
185
186 # Set the target.
187 WASM_CFLAGS += --target=$(TARGET_TRIPLE)
188 # WebAssembly floating-point match doesn't trap.
189 # TODO: Add -fno-signaling-nans when the compiler supports it.
190 WASM_CFLAGS += -fno-trapping-math
191
192 # Configure support for threads.
193 ifeq ($(THREAD_MODEL), single)
194 WASM_CFLAGS += -mthread-model single
195 endif
196 ifeq ($(THREAD_MODEL), posix)
197 WASM_CFLAGS += -mthread-model posix -pthread
198 endif
199
200 # Set the sysroot.
201 WASM_CFLAGS += --sysroot="$(SYSROOT)"
202
203 # These variables describe the locations of various files and directories in
204 # the build tree.
205 objs = $(patsubst $(CURDIR)/%.c,$(OBJDIR)/%.o,$(1))
206 DLMALLOC_OBJS = $(call objs,$(DLMALLOC_SOURCES))
207 LIBC_BOTTOM_HALF_ALL_OBJS = $(call objs,$(LIBC_BOTTOM_HALF_ALL_SOURCES))
208 LIBC_TOP_HALF_ALL_OBJS = $(call objs,$(LIBC_TOP_HALF_ALL_SOURCES))
209 ifeq ($(BUILD_DLMALLOC),yes)
210 LIBC_OBJS += $(DLMALLOC_OBJS)
211 endif
212 # Add libc-bottom-half's objects.
213 LIBC_OBJS += $(LIBC_BOTTOM_HALF_ALL_OBJS)
214 ifeq ($(BUILD_LIBC_TOP_HALF),yes)
215 # libc-top-half is musl.
216 LIBC_OBJS += $(LIBC_TOP_HALF_ALL_OBJS)
217 endif
218 MUSL_PRINTSCAN_OBJS = $(call objs,$(MUSL_PRINTSCAN_SOURCES))
219 MUSL_PRINTSCAN_LONG_DOUBLE_OBJS = $(patsubst %.o,%.long-double.o,$(MUSL_PRINTSCAN_OBJS))
220 MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS = $(patsubst %.o,%.no-floating-point.o,$(MUSL_PRINTSCAN_OBJS))
221 LIBWASI_EMULATED_MMAN_OBJS = $(call objs,$(LIBWASI_EMULATED_MMAN_SOURCES))
222 LIBWASI_EMULATED_SIGNAL_OBJS = $(call objs,$(LIBWASI_EMULATED_SIGNAL_SOURCES))
223 LIBWASI_EMULATED_SIGNAL_MUSL_OBJS = $(call objs,$(LIBWASI_EMULATED_SIGNAL_MUSL_SOURCES))
224
225 # These variables describe the locations of various files and
226 # directories in the generated sysroot tree.
227 SYSROOT_LIB := $(SYSROOT)/lib/$(MULTIARCH_TRIPLE)
228 SYSROOT_INC = $(SYSROOT)/include
229 SYSROOT_SHARE = $(SYSROOT)/share/$(MULTIARCH_TRIPLE)
230
231 # Files from musl's include directory that we don't want to install in the
232 # sysroot's include directory.
233 MUSL_OMIT_HEADERS :=
234
235 # Remove files which aren't headers (we generate alltypes.h below).
236 MUSL_OMIT_HEADERS += \
237 "bits/syscall.h.in" \
238 "bits/alltypes.h.in" \
239 "alltypes.h.in"
240
241 # Use the compiler's version of these headers.
242 MUSL_OMIT_HEADERS += \
243 "stdarg.h" \
244 "stddef.h"
245
246 # Use the WASI errno definitions.
247 MUSL_OMIT_HEADERS += \
248 "bits/errno.h"
249
250 # Remove headers that aren't supported yet or that aren't relevant for WASI.
251 MUSL_OMIT_HEADERS += \
252 "sys/procfs.h" \
253 "sys/user.h" \
254 "sys/kd.h" "sys/vt.h" "sys/soundcard.h" "sys/sem.h" \
255 "sys/shm.h" "sys/msg.h" "sys/ipc.h" "sys/ptrace.h" \
256 "sys/statfs.h" \
257 "bits/kd.h" "bits/vt.h" "bits/soundcard.h" "bits/sem.h" \
258 "bits/shm.h" "bits/msg.h" "bits/ipc.h" "bits/ptrace.h" \
259 "bits/statfs.h" \
260 "sys/vfs.h" \
261 "sys/statvfs.h" \
262 "syslog.h" "sys/syslog.h" \
263 "wait.h" "sys/wait.h" \
264 "ucontext.h" "sys/ucontext.h" \
265 "paths.h" \
266 "utmp.h" "utmpx.h" \
267 "lastlog.h" \
268 "sys/acct.h" \
269 "sys/cachectl.h" \
270 "sys/epoll.h" "sys/reboot.h" "sys/swap.h" \
271 "sys/sendfile.h" "sys/inotify.h" \
272 "sys/quota.h" \
273 "sys/klog.h" \
274 "sys/fsuid.h" \
275 "sys/io.h" \
276 "sys/prctl.h" \
277 "sys/mtio.h" \
278 "sys/mount.h" \
279 "sys/fanotify.h" \
280 "sys/personality.h" \
281 "elf.h" "link.h" "bits/link.h" \
282 "scsi/scsi.h" "scsi/scsi_ioctl.h" "scsi/sg.h" \
283 "sys/auxv.h" \
284 "pwd.h" "shadow.h" "grp.h" \
285 "mntent.h" \
286 "netdb.h" \
287 "resolv.h" \
288 "pty.h" \
289 "dlfcn.h" \
290 "setjmp.h" \
291 "ulimit.h" \
292 "sys/xattr.h" \
293 "wordexp.h" \
294 "spawn.h" \
295 "sys/membarrier.h" \
296 "sys/signalfd.h" \
297 "termios.h" \
298 "sys/termios.h" \
299 "bits/termios.h" \
300 "net/if.h" \
301 "net/if_arp.h" \
302 "net/ethernet.h" \
303 "net/route.h" \
304 "netinet/if_ether.h" \
305 "netinet/ether.h" \
306 "sys/timerfd.h" \
307 "libintl.h" \
308 "sys/sysmacros.h"
309
310 ifeq ($(THREAD_MODEL), single)
311 # Remove headers not supported in single-threaded mode.
312 MUSL_OMIT_HEADERS += "aio.h" "pthread.h"
313 endif
314
315 default: finish
316
317 $(SYSROOT_LIB)/libc.a: $(LIBC_OBJS)
318
319 $(SYSROOT_LIB)/libc-printscan-long-double.a: $(MUSL_PRINTSCAN_LONG_DOUBLE_OBJS)
320
321 $(SYSROOT_LIB)/libc-printscan-no-floating-point.a: $(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS)
322
323 $(SYSROOT_LIB)/libwasi-emulated-mman.a: $(LIBWASI_EMULATED_MMAN_OBJS)
324
325 $(SYSROOT_LIB)/libwasi-emulated-signal.a: $(LIBWASI_EMULATED_SIGNAL_OBJS) $(LIBWASI_EMULATED_SIGNAL_MUSL_OBJS)
326
327 %.a:
328 @mkdir -p "$(@D)"
329 # On Windows, the commandline for the ar invocation got too long, so it needs to be split up.
330 $(WASM_AR) crs $@ $(wordlist 1, 199, $^)
331 $(WASM_AR) crs $@ $(wordlist 200, 399, $^)
332 $(WASM_AR) crs $@ $(wordlist 400, 599, $^)
333 $(WASM_AR) crs $@ $(wordlist 600, 799, $^)
334 # This might eventually overflow again, but at least it'll do so in a loud way instead of
335 # silently dropping the tail.
336 $(WASM_AR) crs $@ $(wordlist 800, 100000, $^)
337
338 $(MUSL_PRINTSCAN_OBJS): WASM_CFLAGS += \
339 -D__wasilibc_printscan_no_long_double \
340 -D__wasilibc_printscan_full_support_option="\"add -lc-printscan-long-double to the link command\""
341
342 $(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS): WASM_CFLAGS += \
343 -D__wasilibc_printscan_no_floating_point \
344 -D__wasilibc_printscan_floating_point_support_option="\"remove -lc-printscan-no-floating-point from the link command\""
345
346 $(LIBWASI_EMULATED_SIGNAL_MUSL_OBJS): WASM_CFLAGS += \
347 -D_WASI_EMULATED_SIGNAL
348
349 $(OBJDIR)/%.long-double.o: $(CURDIR)/%.c include_dirs
350 @mkdir -p "$(@D)"
351 "$(WASM_CC)" $(WASM_CFLAGS) -MD -MP -o $@ -c $<
352
353 $(OBJDIR)/%.no-floating-point.o: $(CURDIR)/%.c include_dirs
354 @mkdir -p "$(@D)"
355 "$(WASM_CC)" $(WASM_CFLAGS) -MD -MP -o $@ -c $<
356
357 $(OBJDIR)/%.o: $(CURDIR)/%.c include_dirs
358 @mkdir -p "$(@D)"
359 "$(WASM_CC)" $(WASM_CFLAGS) -MD -MP -o $@ -c $<
360
361 -include $(shell find $(OBJDIR) -name \*.d)
362
363 $(DLMALLOC_OBJS): WASM_CFLAGS += \
364 -I$(DLMALLOC_INC)
365
366 startup_files $(LIBC_BOTTOM_HALF_ALL_OBJS): WASM_CFLAGS += \
367 -I$(LIBC_BOTTOM_HALF_HEADERS_PRIVATE) \
368 -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC_INC) \
369 -I$(LIBC_BOTTOM_HALF_CLOUDLIBC_SRC)
370
371 $(LIBC_TOP_HALF_ALL_OBJS) $(MUSL_PRINTSCAN_LONG_DOUBLE_OBJS) $(MUSL_PRINTSCAN_NO_FLOATING_POINT_OBJS) $(LIBWASI_EMULATED_SIGNAL_MUSL_OBJS): WASM_CFLAGS += \
372 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/include \
373 -I$(LIBC_TOP_HALF_MUSL_SRC_DIR)/internal \
374 -I$(LIBC_TOP_HALF_MUSL_DIR)/arch/wasm32 \
375 -I$(LIBC_TOP_HALF_MUSL_DIR)/arch/generic \
376 -I$(LIBC_TOP_HALF_HEADERS_PRIVATE) \
377 -Wno-parentheses \
378 -Wno-shift-op-parentheses \
379 -Wno-bitwise-op-parentheses \
380 -Wno-logical-op-parentheses \
381 -Wno-string-plus-int \
382 -Wno-dangling-else \
383 -Wno-unknown-pragmas
384
385 include_dirs:
386 $(RM) -r "$(SYSROOT)"
387
388 #
389 # Install the include files.
390 #
391 mkdir -p "$(SYSROOT_INC)"
392 cp -r "$(LIBC_BOTTOM_HALF_HEADERS_PUBLIC)"/* "$(SYSROOT_INC)"
393
394 # Generate musl's bits/alltypes.h header.
395 mkdir -p "$(SYSROOT_INC)/bits"
396 sed -f $(LIBC_TOP_HALF_MUSL_DIR)/tools/mkalltypes.sed \
397 $(LIBC_TOP_HALF_MUSL_DIR)/arch/wasm32/bits/alltypes.h.in \
398 $(LIBC_TOP_HALF_MUSL_DIR)/include/alltypes.h.in \
399 > "$(SYSROOT_INC)/bits/alltypes.h"
400
401 # Copy in the bulk of musl's public header files.
402 cp -r "$(LIBC_TOP_HALF_MUSL_INC)"/* "$(SYSROOT_INC)"
403 # Copy in the musl's "bits" header files.
404 cp -r "$(LIBC_TOP_HALF_MUSL_DIR)"/arch/generic/bits/* "$(SYSROOT_INC)/bits"
405 cp -r "$(LIBC_TOP_HALF_MUSL_DIR)"/arch/wasm32/bits/* "$(SYSROOT_INC)/bits"
406
407 # Remove selected header files.
408 $(RM) $(patsubst %,$(SYSROOT_INC)/%,$(MUSL_OMIT_HEADERS))
409
410 startup_files: include_dirs
411 #
412 # Build the startup files.
413 #
414 @mkdir -p "$(OBJDIR)"
415 cd "$(OBJDIR)" && \
416 "$(WASM_CC)" $(WASM_CFLAGS) -c $(LIBC_BOTTOM_HALF_CRT_SOURCES) -MD -MP && \
417 mkdir -p "$(SYSROOT_LIB)" && \
418 mv *.o "$(SYSROOT_LIB)"
419
420 libc: include_dirs \
421 $(SYSROOT_LIB)/libc.a \
422 $(SYSROOT_LIB)/libc-printscan-long-double.a \
423 $(SYSROOT_LIB)/libc-printscan-no-floating-point.a \
424 $(SYSROOT_LIB)/libwasi-emulated-mman.a \
425 $(SYSROOT_LIB)/libwasi-emulated-signal.a
426
427 finish: startup_files libc
428 #
429 # Create empty placeholder libraries.
430 #
431 for name in m rt pthread crypt util xnet resolv dl; do \
432 $(WASM_AR) crs "$(SYSROOT_LIB)/lib$${name}.a"; \
433 done
434
435 #
436 # Collect metadata on the sysroot and perform sanity checks.
437 #
438 mkdir -p "$(SYSROOT_SHARE)"
439
440 #
441 # Collect symbol information.
442 #
443 @# TODO: Use llvm-nm --extern-only instead of grep. This is blocked on
444 @# LLVM PR40497, which is fixed in 9.0, but not in 8.0.
445 @# Ignore certain llvm builtin symbols such as those starting with __mul
446 @# since these dependencies can vary between llvm versions.
447 "$(WASM_NM)" --defined-only "$(SYSROOT_LIB)"/libc.a "$(SYSROOT_LIB)"/*.o \
448 |grep ' [[:upper:]] ' |sed 's/.* [[:upper:]] //' |LC_ALL=C sort > "$(SYSROOT_SHARE)/defined-symbols.txt"
449 for undef_sym in $$("$(WASM_NM)" --undefined-only "$(SYSROOT_LIB)"/libc.a "$(SYSROOT_LIB)"/libc-*.a "$(SYSROOT_LIB)"/*.o \
450 |grep ' U ' |sed 's/.* U //' |LC_ALL=C sort |uniq); do \
451 grep -q '\<'$$undef_sym'\>' "$(SYSROOT_SHARE)/defined-symbols.txt" || echo $$undef_sym; \
452 done | grep -v "^__mul" > "$(SYSROOT_SHARE)/undefined-symbols.txt"
453 grep '^_*wasi_' "$(SYSROOT_SHARE)/undefined-symbols.txt" \
454 > "$(SYSROOT_LIB)/libc.imports"
455
456 #
457 # Generate a test file that includes all public header files.
458 #
459 cd "$(SYSROOT)" && \
460 for header in $$(find include -type f -not -name mman.h -not -name signal.h |grep -v /bits/); do \
461 echo '#include <'$$header'>' | sed 's/include\///' ; \
462 done |LC_ALL=C sort >share/$(MULTIARCH_TRIPLE)/include-all.c ; \
463 cd - >/dev/null
464
465 #
466 # Test that it compiles.
467 #
468 "$(WASM_CC)" $(WASM_CFLAGS) -fsyntax-only "$(SYSROOT_SHARE)/include-all.c" -Wno-\#warnings
469
470 #
471 # Collect all the predefined macros, except for compiler version macros
472 # which we don't need to track here.
473 #
474 @#
475 @# For the __*_ATOMIC_*_LOCK_FREE macros, squash individual compiler names
476 @# to attempt, toward keeping these files compiler-independent.
477 @#
478 @# We have to add `-isystem $(SYSROOT_INC)` because otherwise clang puts
479 @# its builtin include path first, which produces compiler-specific
480 @# output.
481 @#
482 @# TODO: Undefine __FLOAT128__ for now since it's not in clang 8.0.
483 @# TODO: Filter out __FLT16_* for now, as not all versions of clang have these.
484 "$(WASM_CC)" $(WASM_CFLAGS) "$(SYSROOT_SHARE)/include-all.c" \
485 -isystem $(SYSROOT_INC) \
486 -std=gnu17 \
487 -E -dM -Wno-\#warnings \
488 -D_ALL_SOURCE \
489 -U__llvm__ \
490 -U__clang__ \
491 -U__clang_major__ \
492 -U__clang_minor__ \
493 -U__clang_patchlevel__ \
494 -U__clang_version__ \
495 -U__GNUC__ \
496 -U__GNUC_MINOR__ \
497 -U__GNUC_PATCHLEVEL__ \
498 -U__VERSION__ \
499 -U__FLOAT128__ \
500 | sed -e 's/__[[:upper:][:digit:]]*_ATOMIC_\([[:upper:][:digit:]_]*\)_LOCK_FREE/__compiler_ATOMIC_\1_LOCK_FREE/' \
501 | grep -v '^#define __FLT16_' \
502 > "$(SYSROOT_SHARE)/predefined-macros.txt"
503
504 # Check that the computed metadata matches the expected metadata.
505 # This ignores whitespace because on Windows the output has CRLF line endings.
506 diff -wur "$(CURDIR)/expected/$(MULTIARCH_TRIPLE)" "$(SYSROOT_SHARE)"
507
508 #
509 # The build succeeded! The generated sysroot is in $(SYSROOT).
510 #
511
512 install: finish
513 mkdir -p "$(INSTALL_DIR)"
514 cp -r "$(SYSROOT)/lib" "$(SYSROOT)/share" "$(SYSROOT)/include" "$(INSTALL_DIR)"
515
516 .PHONY: default startup_files libc finish install include_dirs