[
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: | 2009-02-25 (15:24) |
From: | David Allsopp <dra-news@m...> |
Subject: | Using camlp4 syntax extensions in the top-level |
I'm trying to use json-static in the toplevel (OCaml 3.11.0 / MinGW / findlib 1.2.4) but I'm getting an error message: # #camlp4o;; C:\Dev\OCaml\lib\dynlink.cma: loaded C:\Dev\OCaml\lib\camlp4: added to search path C:\Dev\OCaml\lib\camlp4\camlp4o.cma: loaded Camlp4 Parsing version 3.11.0 # #require "json-static";; c:\Dev\OCaml\lib\site-lib\pcre: added to search path c:\Dev\OCaml\lib\site-lib\pcre\pcre.cma: loaded c:\Dev\OCaml\lib\site-lib\netsys: added to search path c:\Dev\OCaml\lib\site-lib\netsys\netsys.cma: loaded c:\Dev\OCaml\lib\site-lib\netstring: added to search path c:\Dev\OCaml\lib\site-lib\netstring\netstring.cma: loaded c:\Dev\OCaml\lib\site-lib\netstring\netstring_top.cmo: loaded c:\Dev\OCaml\lib\site-lib\netstring\netaccel.cma: loaded c:\Dev\OCaml\lib\site-lib\netstring\netaccel_link.cmo: loaded c:\Dev\OCaml\lib\site-lib\json-wheel: added to search path c:\Dev\OCaml\lib\site-lib\json-wheel\jsonwheel.cma: loaded c:\Dev\OCaml\lib\site-lib\json-static: added to search path c:\Dev\OCaml\lib\site-lib\json-static\pa_json_static.cmo: loaded # type json point = < x: number; y: number > and coords = point array;; Assertion failed, file "camlp4/Camlp4/Struct/Camlp4Ast2OCamlAst.ml", line 795, char 11 I can build the example using ocamlc with no problems - I just don't seem to be able to do it interactively in the toplevel. Should I be able to? TIA, David