Re: no ocamlopt in openbsd?

2008-12-04 Thread Vivek Ayer
It compiled fine. Thanks. Do I just rename it to texvc now and make it executable or should I create a symbolic link? Thanks again, Vivek On Thu, Dec 4, 2008 at 12:31 PM, Richard Bonichon <[EMAIL PROTECTED]> wrote: > Hi Vivek and list > : >> How would I do that? Should I look into the texvc Makef

Re: no ocamlopt in openbsd?

2008-12-04 Thread Richard Bonichon
Hi Vivek and list : > How would I do that? Should I look into the texvc Makefile and just > change all the ocamlopt lines to ocamlc? Have a glance at the Makefile, yes, it seems to me that running something like gmake texvc.bc will get you what you want, i.e. the bytecode executable (I have no i

Re: no ocamlopt in openbsd?

2008-12-04 Thread Vivek Ayer
How would I do that? Should I look into the texvc Makefile and just change all the ocamlopt lines to ocamlc? Vivek On Thu, Dec 4, 2008 at 6:57 AM, Anil Madhavapeddy <[EMAIL PROTECTED]> wrote: > The sparc64 port of OCaml doesnt include a native code backend, just the > bytecode. However, you neve

Re: no ocamlopt in openbsd?

2008-12-04 Thread Anil Madhavapeddy
The sparc64 port of OCaml doesnt include a native code backend, just the bytecode. However, you never *must* have ocamlopt in order to run an OCaml program, as the bytecode backend works fine (but a little slower) in most cases. If there's an option in the texvc package to swap out ocamlop

Re: no ocamlopt in openbsd?

2008-12-04 Thread Ted Unangst
On Thu, Dec 4, 2008 at 1:18 AM, Vivek Ayer <[EMAIL PROTECTED]> wrote: > I'm trying to compile the texvc in the mediawiki package so I can > render LaTeX on the fly, but it needs the ocaml set of binaries > including ocamlc and ocamlopt. The OpenBSD 4.3 package for ocaml > doesn't have the ocamlopt

Re: no ocamlopt in openbsd?

2008-12-04 Thread Eugene Prodeguene
On Wed, 3 Dec 2008, Vivek Ayer wrote: Hey guys, I'm trying to compile the texvc in the mediawiki package so I can render LaTeX on the fly, but it needs the ocaml set of binaries including ocamlc and ocamlopt. The OpenBSD 4.3 package for ocaml doesn't have the ocamlopt binary meaning I can't com

no ocamlopt in openbsd?

2008-12-03 Thread Vivek Ayer
Hey guys, I'm trying to compile the texvc in the mediawiki package so I can render LaTeX on the fly, but it needs the ocaml set of binaries including ocamlc and ocamlopt. The OpenBSD 4.3 package for ocaml doesn't have the ocamlopt binary meaning I can't compile texvc. Is there any hope? Should I t