Gabriel Scherer
Gabriel Scherer
`deopts`, certainly. I guess we could do the change today. But what is the semantics? Recompile if `ocamlfind` gets installed later? We don't need that. As a dependency, there is...
I think that would work, but I'm not sure it is worth the hassle from a packaging/release point of view. Plus all the no-ocamlfind users would have to update their...
I have considered the need for a precidate/condition to put on the left of the column `:` that would have a non-boolean semantics: `default: foo` or `global: foo`. Currently some...
I'm not sure, but it should be the case currently that the order in which flags are added to the command-line corresponds to the order in which those flags were...
So my impression seems to hold for the case where you use `~extern:true`. When `~extern:true` holds, the library is assumed to live outside the project, the libraries are added to...
So the offending code is [libs_of_use_lib](https://github.com/ocaml/ocamlbuild/blob/6a7311b/src/ocaml_compiler.ml#L204-L209), which takes the tags of a file and returns the list of library archives coming from `ocaml_lib`-declared tags to link with. ``` ocaml let...
I would be happy to fix these issues (there should be no workaround needed on the user side), but the main issue I think is that I don't have reliable...
A first question is what the general naming convention should be. The parser `Foo.mly` may expect a message file with the name `Foo.messages`, but what then is the expected name...
I'm a bit frustrated by the current situation where I run after new Menhir features (I'm really glad Menhir is actively evolving) to encode them in upstream ocamlbuild in a...
ocamlbuild has some notion of rule priorities (you can actually specify stuff using the `?insert` parameter, see [the manual](https://github.com/ocaml/ocamlbuild/blob/749afd4/manual/manual.adoc#Subsec_Rules__Rule_ordering)), but in any case if the two rules are identical it...