diff options
Diffstat (limited to 'dev/include')
-rw-r--r-- | dev/include | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dev/include b/dev/include index 42d2a017..ccb75edd 100644 --- a/dev/include +++ b/dev/include @@ -1,9 +1,17 @@ (* 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. + On Debian, install ocaml-compiler-libs, and uncomment the following: + #directory "+compiler-libs/utils";; +*) + +(* Clflags.recursive_types := true;;*) #cd ".";; #use "base_include";; +#install_printer (* pp_stdcmds *) pppp;; + #install_printer (* pattern *) pppattern;; #install_printer (* rawconstr *) pprawconstr;; @@ -17,6 +25,7 @@ #install_printer (* goal *) ppgoal;; #install_printer (* sigma goal *) ppsigmagoal;; #install_printer (* proof *) pproof;; +#install_printer (* metaset.t *) ppmetas;; #install_printer (* evar_map *) ppevm;; #install_printer (* evar_defs *) ppevd;; #install_printer (* clenv *) ppclenv;; |