[
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: | jehenrik <jehenrik@y...> |
| Subject: | [Caml-list] custom toplevel under darwin |
Are custom toplevels supposed to work under darwin with ocaml 3.06? I
have a simple .cpp file from the OReily book:
inspect.c:
#include <stdio.h>
#include <caml/mlvalues.h>
extern "C" value inspect (value v)
{
if (Is_long(v))
printf ("integer (%ld) : %ld", (long) v, Long_val(v));
else if (Is_block(v))
printf ("v is a pointer");
else
printf ("v is neither an integer nor a pointer (???)");
printf(" ");
fflush(stdout) ;
return v ;
}
and a simple .ml file, intro_runtime.ml:
external inspect1 : 'a -> 'a = "inspect" ;;
inspect1 123;;
As a standalone program this works fine:
ocamlc -custom inspect.o intro_runtime.ml -o intro_runtime # this works
But this way of making a toplevel, along with all the variations I can
think of, doesn't:
ocamlmktop -custom inspect.o -o intro_runtime
# external inspect1 : 'a -> 'a = "inspect" ;;
external inspect1 : 'a -> 'a = "inspect"
# inspect1;;
The external function `inspect' is not available
# inspect1 123;;
The external function `inspect' is not available
If this functionality is not ported, I would appreciate it if somebody
could pass that on to me.
Jeff Henrikson
-------------------
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