[
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: | Gerd Stolpmann <info@g...> |
| Subject: | Re: [Caml-list] ocamlfind syntax problem |
Am Montag, den 31.10.2005, 14:01 +1100 schrieb Pietro Abate: > Hi all, > > I'm trying to learn how to use ocamlfind with camlp4 syntax files. > > The problem is that my syntax file uses extlib and I get an undefined > reference to ExtLib when I try to compile everything with ocamlfind. > > Since now I've compiled it following these steps: > > 1) I generate the ocaml code from my example using my syntax (with str > and extlib) > # camlp4o $STDLIB/str.cma $DESTDIR/extlib/extLib.cma syntaxfile.cma pr_o.cmo myex.ml > myex-pp.ml > 2) I compile the result using other packages and ocamlfind. > # ocamlfind ocamlc -package mypackages myex-pp.ml > > now I'm trying to skip the intermediate step. Therefore I've created > my meta file that looks like this: > > version = "0.1" > description = "syn file" > requires = "camlp4 extlib" > archive(syntax,preprocessor) = "syntaxfile.cma" > > and I'm trying to link everything together with: > #ocamlfind ocamlc -package mypackages,syntaxfile -syntax syntaxfile myex.ml > > but it complains that syntaxfile.cma has a Reference to undefined global `ExtLib'. That's a known bug. Use -syntax camlp4o,byte as workaround. The problem is that without "byte" all the archive(byte)="..." settings are ignored. Gerd > adding extlib to mypackages doesn't help... > how can I pass $STDLIB/str.cma $DESTDIR/extlib/extLib.cma to the preprocessor > via ocamlfind ? > > :) > p > > ps: my compilation infrastructure is more complex, but I think the > problem boils down to what I've described above. > -- ------------------------------------------------------------ Gerd Stolpmann * Viktoriastr. 45 * 64293 Darmstadt * Germany gerd@gerd-stolpmann.de http://www.gerd-stolpmann.de Telefon: 06151/153855 Telefax: 06151/997714 ------------------------------------------------------------