(************************************************************************) (* * The Coq Proof Assistant / The Coq Development Team *) (* v * INRIA, CNRS and contributors - Copyright 1999-2018 *) (* output_string co ("\nWith the flag '-toploop "^name^ "' these extra option are also available:\n"^ text^"\n")) !extra_usage (* print the usage on standard error *) let print_usage_coqtop () = print_usage_common stderr "Usage: coqtop \n\n"; output_string stderr "\n\ coqtop specific options:\ \n\ \n -batch batch mode (exits just after argument parsing)\ \n"; flush stderr ; exit 1 let print_usage_coqc () = print_usage_common stderr "Usage: coqc file...\n\n"; output_string stderr "\n\ coqc specific options:\ \n\ \n -o f.vo use f.vo as the output file name\ \n -verbose compile and output the input file\ \n -quick quickly compile .v files to .vio files (skip proofs)\ \n -schedule-vio2vo j f1..fn run up to j instances of Coq to turn each fi.vio\ \n into fi.vo\ \n -schedule-vio-checking j f1..fn run up to j instances of Coq to check all\ \n proofs in each fi.vio\ \n\ \nUndocumented:\ \n -vio2vo [see manual]\ \n -check-vio-tasks [see manual]\ \n"; flush stderr ; exit 1