diff options
Diffstat (limited to 'dev/include')
-rw-r--r-- | dev/include | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dev/include b/dev/include index ccb75edd..251a969b 100644 --- a/dev/include +++ b/dev/include @@ -1,12 +1,13 @@ (* File to include to install the pretty-printers in the ocaml toplevel *) -(* clflags.cmi (a ocaml compilation by-product) must be in the library path. +(* For OCaml 3.10.x: + clflags.cmi (a ocaml compilation by-product) must be in the library path. On Debian, install ocaml-compiler-libs, and uncomment the following: #directory "+compiler-libs/utils";; + Clflags.recursive_types := true;; *) -(* Clflags.recursive_types := true;;*) #cd ".";; #use "base_include";; @@ -22,12 +23,13 @@ #install_printer (* type_judgement *) pptype;; #install_printer (* judgement *) ppj;; +#install_printer (* hint_db *) print_hint_db;; #install_printer (* goal *) ppgoal;; #install_printer (* sigma goal *) ppsigmagoal;; #install_printer (* proof *) pproof;; +#install_printer (* pftreestate *) pppftreestate;; #install_printer (* metaset.t *) ppmetas;; #install_printer (* evar_map *) ppevm;; -#install_printer (* evar_defs *) ppevd;; #install_printer (* clenv *) ppclenv;; #install_printer (* env *) ppenv;; @@ -37,4 +39,3 @@ #install_printer (* generic_argument *) pp_generic_argument;; #install_printer (* fconstr *) ppfconstr;; - |