Ajout flag -pp.

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@772 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Xavier Leroy 1996-04-29 13:24:35 +00:00
parent d4d799ee8f
commit 66392032da
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,7 @@ and ccobjs = ref ([] : string list) (* .o, .a and -lxxx files *)
let compile_only = ref false (* -c *)
and exec_name = ref "a.out" (* -o *)
and archive_name = ref "library.cma" (* -o *)
and include_dirs = ref ([] : string list)(* - I *)
and include_dirs = ref ([] : string list)(* -I *)
and print_types = ref false (* -i *)
and make_archive = ref false (* -a *)
and fast = ref false (* -unsafe *)
@ -27,6 +27,7 @@ and link_everything = ref false (* -linkall *)
and custom_runtime = ref false (* -custom *)
and ccopts = ref ([] : string list) (* -ccopt *)
and nopervasives = ref false (* -nopervasives *)
and preprocessor = ref(None : string option) (* -pp *)
let dump_rawlambda = ref false (* -drawlambda *)
and dump_lambda = ref false (* -dlambda *)