Module ClangFrontend.ClangCommand
val mk : is_driver:bool -> ClangQuotes.style -> prog:string -> args:string list -> t
mk ~is_driver qs prog args
finds the type of command depending on its argumentsargs
. The quoting style of the arguments have to be provided, so that the command may be run later on. Beware that this doesn't look inside argument files. This can be used to create a "clang -### ..." command on which to callcommand_to_run
, but other functions from the module will not work as expected unless the command has been normalized by "clang -### ...".
val command_to_run : t -> string
Make a command into a string ready to be passed to a shell to be executed. Fine to call with clang driver commands.
val can_attach_ast_exporter : t -> bool
Whether the command is suitable for attaching the AST exporter. Must be called on normalized commands.
val may_capture : t -> bool
Whether the command has a chance of triggering compilation steps we can capture.