[
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: | Peter Halacsy <peter@h...> |
| Subject: | 3.10 and native profiling |
hello,
i've installed 3.10 beta compiler (intel mac). But I can't use the
native code profiling. I can't compile my code.
cat test.ml
let _ =
let s = "hello" in
let s2 = "world" in
Printf.printf "%s, %s" s s2;
$ /usr/local/ocaml/10.0/bin/ocamlopt.opt -p test.ml
Cannot find file std_exit.p.cmx
But using the old compiler, everything works fine
$ /usr/local/ocaml/9.3/bin/ocamlopt.opt -p test.ml
$ ./a.out
hello,world$
peter