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.

Merge pull request #13519 from shindere/cflags-variables-backward-compatibility

Makefile.config: restore the {OCAMLC,OCAMLOPT}_{CFLAGS,CPPFLAGS} variables

authored by

David Allsopp and committed by
GitHub
f2bac84c 2ec92796

+13 -5
+6 -5
Changes
··· 658 658 (Sébastien Hinderer, review by Miod Vallat, Gabriel Scherer and 659 659 Olivier Nicole) 660 660 661 - * #12578, #12589, #13322: Use configured CFLAGS and CPPFLAGS *only* during the 662 - build of the compiler itself. Do not use them when compiling third-party 663 - C sources through the compiler. Flags for compiling third-party C 664 - sources can still be specified at configure time in the 665 - COMPILER_{BYTECODE,NATIVE}_{CFLAGS,CPPFLAGS} configuration variables. 661 + * #12578, #12589, #13322, #13519: Use configured CFLAGS and CPPFLAGS *only* 662 + during the build of the compiler itself. Do not use them when 663 + compiling third-party C sources through the compiler. Flags for 664 + compiling third-party C sources can still be specified at configure 665 + time in the COMPILER_{BYTECODE,NATIVE}_{CFLAGS,CPPFLAGS} 666 + configuration variables. 666 667 (Sébastien Hinderer, report by William Hu, review by David Allsopp) 667 668 668 669 - #13285: continue the merge of the sub-makefiles into the root
+7
Makefile.config.in
··· 221 221 222 222 # Deprecated variables 223 223 224 + ## Variables deprecated since OCaml 5.3 225 + 226 + OCAMLC_CFLAGS=@bytecode_cflags@ 227 + OCAMLOPT_CFLAGS=@native_cflags@ 228 + OCAMLC_CPPFLAGS=@bytecode_cppflags@ 229 + OCAMLOPT_CPPFLAGS=@native_cppflags@ 230 + 224 231 ## Variables deprecated since OCaml 5.2 225 232 226 233 STDLIB_MANPAGES=@build_libraries_manpages@