Browse thread
[Caml-list] The Bytecode Interpreter...
-
Jonathan Roewen
- David MENTRE
- Jonathan Roewen
-
Jonathan Roewen
- Jonathan Roewen
- Damien Doligez
[
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: | Damien Doligez <damien.doligez@i...> |
| Subject: | Re: [Caml-list] The Bytecode Interpreter... |
On Oct 26, 2005, at 11:56, Jonathan Roewen wrote:
> The bytecode app is created using ocamlc -output-obj, and the .o file
> is linked into my kernel. I then call caml_startup(argv), where argv =
> { "" }.
I don't know whether this is the source of your problems, but argv
should end with a NULL:
argv = { "", NULL }
-- Damien