We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7069071 commit 2e3947bCopy full SHA for 2e3947b
Makefile
@@ -488,13 +488,13 @@ $(SYSROOT_LIB)/libwasi-emulated-signal.a: $(LIBWASI_EMULATED_SIGNAL_OBJS) $(LIBW
488
%.a:
489
@mkdir -p "$(@D)"
490
# On Windows, the commandline for the ar invocation got too long, so it needs to be split up.
491
- $(AR) crs $@ $(wordlist 1, 199, $^)
492
- $(AR) crs $@ $(wordlist 200, 399, $^)
493
- $(AR) crs $@ $(wordlist 400, 599, $^)
494
- $(AR) crs $@ $(wordlist 600, 799, $^)
+ $(AR) crs $@ $(wordlist 1, 199, $(sort $^))
+ $(AR) crs $@ $(wordlist 200, 399, $(sort $^))
+ $(AR) crs $@ $(wordlist 400, 599, $(sort $^))
+ $(AR) crs $@ $(wordlist 600, 799, $(sort $^))
495
# This might eventually overflow again, but at least it'll do so in a loud way instead of
496
# silently dropping the tail.
497
- $(AR) crs $@ $(wordlist 800, 100000, $^)
+ $(AR) crs $@ $(wordlist 800, 100000, $(sort $^))
498
499
$(MUSL_PRINTSCAN_OBJS): CFLAGS += \
500
-D__wasilibc_printscan_no_long_double \
0 commit comments