Allow explicit fallback to bytecode for cpp

Relax the requirements for the cpp preprocessor, to fall back on the
bytecode version when the native version is not available. Otherwise the
build fails on bytecode-only architectures.
This commit is contained in:
Samuel Hym 2022-12-12 12:00:51 +01:00
parent d4e582e829
commit 5d3768b5a2

View file

@ -3,5 +3,5 @@
(executable (executable
(name cpp) (name cpp)
(flags :standard -warn-error -a+8) (flags :standard -warn-error -a+8)
(modes native) (modes (best exe))
(libraries dune.configurator)) (libraries dune.configurator))