Browse thread
[Caml-list] Error compiling classes with ocamlcp?
- Grégoire Sutre
[
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: | Grégoire Sutre <sutre@l...> |
| Subject: | [Caml-list] Error compiling classes with ocamlcp? |
Hi,
I got an error trying to compile an OCaml file with profiling support. I
believe the problem arises from the use of objects in my code.
On the following simple OCaml source:
class my_class =
object
method do_nothing = ()
end
The command "ocamlcp -c ocamlcp-pb.ml" gives:
File "/home/sutre/tmp/camlppc6dad0", line 1, characters 29-33:
Syntax error
And the generated camlppc6dad0 file is as follows:
let __ocaml_prof_cnt_ocamlcp-bug_ = Array.create 0000001 0;;
Profiling.counters := ("ocamlcp-bug", ("fm", __ocaml_prof_cnt_ocamlcp-bug_))
:: !Profiling.counters;; class my_class =
object
(__ocaml_prof_cnt_ocamlcp-bug_.(0) <- Pervasives.succ
__ocaml_prof_cnt_ocamlcp-bug_.(0); method do_nothing = ())
end
This generated file indeed doesn't compile with ocamlc. I am using the OCaml
distribution version 3.06. Doesn't ocamlcp support objects?
Thanks for your help,
Gregoire Sutre.
-------------------
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