The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Dune build: gen_primitives.sh must be called from the root (#12244)

Also sync the list of dependencies with gen_primitives.

authored by

Antonin Décimo and committed by
GitHub
780d018f 088fc769

+7 -10
+7 -8
runtime/dune
··· 17 17 (mode fallback) 18 18 (deps 19 19 ; matches the line structure of files in gen_primitives.sh 20 - alloc.c array.c compare.c extern.c floats.c gc_ctrl.c hash.c intern.c 21 - interp.c ints.c io.c 22 - lexing.c md5.c meta.c memprof.c obj.c parsing.c signals.c str.c sys.c 23 - callback.c weak.c 24 - finalise.c dynlink.c backtrace_byt.c backtrace.c 25 - afl.c 26 - bigarray.c runtime_events.c) 27 - (action (with-stdout-to %{targets} (run %{dep:gen_primitives.sh})))) 20 + alloc.c array.c compare.c extern.c floats.c gc_ctrl.c hash.c intern.c interp.c ints.c io.c 21 + lexing.c md5.c meta.c memprof.c obj.c parsing.c signals.c str.c sys.c callback.c weak.c 22 + finalise.c domain.c platform.c fiber.c memory.c startup_aux.c runtime_events.c sync.c 23 + dynlink.c backtrace_byt.c backtrace.c afl.c bigarray.c prng.c) 24 + (action 25 + (chdir .. 26 + (with-stdout-to %{targets} (run %{dep:gen_primitives.sh}))))) 28 27 29 28 (rule 30 29 (targets libcamlrun.a)
-2
runtime/gen_primitives.sh
··· 15 15 #* * 16 16 #************************************************************************** 17 17 18 - # duplicated from $(ROOTDIR)/runtime/Makefile 19 - 20 18 # #8985: the meaning of character range a-z depends on the locale, so force C 21 19 # locale throughout. 22 20 export LC_ALL=C