Browse thread
[Caml-list] malfunctioning -o command-line argument?
-
Ohad Rodeh
-
Nicolas George
- Ohad Rodeh
- Fabrice Le Fessant
-
Nicolas George
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Fabrice Le Fessant <fabrice@l...> |
| Subject: | Re: [Caml-list] malfunctioning -o command-line argument? |
> Le quintidi 15 pluviôse, an CCXI, Ohad Rodeh a écrit : > > ocamlc -c foo.ml -o /tmp/foo.cmo > > will create foo.cmo in the current directory rather then /tmp. Arguments are treated in the order they are read: here, foo.ml is compiled before, and the -o option is added after. Fix: ocamlc -c -o /tmp/foo.cmo foo.ml - Fabrice ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners