diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2001-10-30 10:11:30 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2001-10-30 10:11:30 +0000 |
commit | 1b985c3f95592158d8f3e0b35facd5a71ac13e1b (patch) | |
tree | 2fa1d667729874c165d7a3acc4f56a57ba845ff6 /driver | |
parent | 7f60a0fa9e0f8b7d2828b2f200c4fc5ab998be01 (diff) | |
download | ocaml-1b985c3f95592158d8f3e0b35facd5a71ac13e1b.tar.gz |
Retour de -make-runtime -use-runtime par demande populaire
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3953 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'driver')
-rw-r--r-- | driver/main_args.ml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/driver/main_args.ml b/driver/main_args.ml index dc191d45c7..cb2eebe532 100644 --- a/driver/main_args.ml +++ b/driver/main_args.ml @@ -79,10 +79,10 @@ struct "<file> (deprecated) same as -intf-suffix"; "-labels", Arg.Unit F._labels, " Use commuting label mode"; "-linkall", Arg.Unit F._linkall, " Link all modules, even unused ones"; - (* "-make-runtime", Arg.Unit F._make_runtime, - " Build a runtime system with given C objects and libraries"; *) - (* "-make_runtime", Arg.Unit F._make_runtime, - " (deprecated) same as -make-runtime"; *) + "-make-runtime", Arg.Unit F._make_runtime, + " Build a runtime system with given C objects and libraries"; + "-make_runtime", Arg.Unit F._make_runtime, + " (deprecated) same as -make-runtime"; "-modern", Arg.Unit F._labels, " (deprecated) same as -labels"; "-noassert", Arg.Unit F._noassert, " Don't compile assertion checks"; "-noautolink", Arg.Unit F._noautolink, @@ -97,10 +97,10 @@ struct "-thread", Arg.Unit F._thread, " Use thread-safe standard library"; "-unsafe", Arg.Unit F._unsafe, " No bounds checking on array and string access"; - (* "-use-runtime", Arg.String F._use_runtime, - "<path> Generate bytecode for the given runtime system"; *) - (* "-use_runtime", Arg.String F._use_runtime, - "<path> (deprecated) same as -use-runtime"; *) + "-use-runtime", Arg.String F._use_runtime, + "<path> Generate bytecode for the given runtime system"; + "-use_runtime", Arg.String F._use_runtime, + "<path> (deprecated) same as -use-runtime"; "-v", Arg.Unit F._v, " Print compiler version number and exit"; "-verbose", Arg.Unit F._verbose, " Print calls to external commands"; "-w", Arg.String F._w, |