File: response_file.mli

package info (click to toggle)
ocaml-dune 2.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 14,064 kB
  • sloc: ml: 70,777; lisp: 466; ansic: 241; sh: 209; makefile: 119; python: 38; cpp: 17; javascript: 6
file content (14 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(** Response file support *)

open Stdune

type t =
  | Not_supported
  | Zero_terminated_strings of string
      (** The argument is the command line flag, such as "-args0" *)

(** Return whether [prog] supports a response file or not *)
val get : prog:Path.t -> t

(** Registers the fact that [prog] supports a response file *)
val set : prog:Path.t -> t -> unit