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: fix domainstate ml/mli generation (#12245)

Do not pass the tbl file to the cpp, only the C file is required. Now
the Dune file is in sync with the Makefile. Fixes the following
warning:

clang: warning: runtime/caml/domain_state.tbl: 'linker' input unused [-Wunused-command-line-argument]

authored by

Antonin Décimo and committed by
GitHub
d9547617 a2633251

+2 -2
+2 -2
utils/dune
··· 29 29 (action 30 30 (with-stdout-to %{targets} 31 31 (bash 32 - "`grep '^CPP=' %{conf} | cut -d'=' -f2` -I ../runtime/caml %{c} %{tbl}" 32 + "`grep '^CPP=' %{conf} | cut -d'=' -f2` -I ../runtime/caml %{c}" 33 33 )))) 34 34 35 35 (rule ··· 41 41 (action 42 42 (with-stdout-to %{targets} 43 43 (bash 44 - "`grep '^CPP=' %{conf} | cut -d'=' -f2` -I ../runtime/caml %{c} %{tbl}" 44 + "`grep '^CPP=' %{conf} | cut -d'=' -f2` -I ../runtime/caml %{c}" 45 45 ))))