Split the Options module in two to remove a circular dependency in
authorKim Nguyễn <kn@lri.fr>
Sun, 21 Oct 2012 07:43:52 +0000 (09:43 +0200)
committerKim Nguyễn <kn@lri.fr>
Fri, 26 Oct 2012 12:37:44 +0000 (14:37 +0200)
commit798507d52a5c11a6d852740056464241538fe76a
tree11d288ce2fa97503694d644616dbd75e9c1e7809
parentc560c779122e09b6c38c3167623c3e6e40abe7fc
Split the Options module in two to remove a circular dependency in
the pretty-printing module:
    Options depends on Logger to have the list of all logs levels
    Logger depends on Options to check whether we are in verbose mode
    or not.
Split:
      Config options holds the references storing the options
      Options only handles the parsing of the command line
include/utils.ml
src/config.ml [new file with mode: 0644]
src/l2JIT.ml
src/main.ml
src/options.ml
src/options.mli
src/runtime.ml
src/tree.ml