search for: ocamlpath

Displaying 7 results from an estimated 7 matches for "ocamlpath".

Did you mean: localpath
2017 Aug 06
3
Ocamlfind can't find hivex
<https://github.com/Chocrates> Apologies if this is the wrong list, I initially opened a github ticket before reading that github isn't the right spot. Trying to compile libguestfs and in the process need to get hivex compiled and installed. Hivex compiles and installs fine (I think), but ocamlfind doesn't seem to pick up hivex after the install causing the autogen.sh script in
2017 Aug 07
0
Re: Ocamlfind can't find hivex
...4.05.0/lib/ocaml \ > hivex \ > META *.so *.a *.cma *.cmi ./*.mli *.cmx *.cmxa Oh I see you're using opam to install locally. I think you'll need to set up an environment variable before running ./configure. I'm not much of an opam user myself, but it's probably: export OCAMLPATH=/home/chris/.opam/4.05.0/lib/ocaml or maybe: export OCAMLPATH=/home/chris/.opam/4.05.0/lib/ocaml:/usr/lib/ocaml or similar. You might also want to check /etc/ocamlfind.conf and the opam documentation. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Re...
2020 Mar 10
0
[PATCH libguestfs 2/2] build: Allow OCaml programs using libguestfs to be compiled against build dir.
...estfs: + rm -f $@ + ln -sf . $@ + +endif HAVE_OCAML diff --git a/run.in b/run.in index 6896d5a2c..90552fb04 100755 --- a/run.in +++ b/run.in @@ -227,6 +227,8 @@ export MALLOC_PERTURB_=$random_val # local libguestfs. prepend PKG_CONFIG_PATH "$b/lib/local" export PKG_CONFIG_PATH +prepend OCAMLPATH "$b/ocaml" +export OCAMLPATH # Do we have libtool? If we have it then we can use it to make # running valgrind simpler. However don't depend on it. -- 2.24.1
2023 Apr 05
2
How to resolve OCaml-augeas dependency for Guestfs build on Ubuntu 22.04
Hi Libguestfs team, I'm trying to build guestfs on Ubuntu 22.04, but getting below error. #17 8.021 checking for OCaml findlib package augeas... not found #17 8.024 configure: error: the OCaml module 'augeas' is required By guestfs-building doc I need to get the package from https://people.redhat.com/~rjones/augeas/. But there is not instructions on how and where to place the package
2020 Mar 10
6
[PATCH libguestfs 0/2] build: Allow programs using libguestfs to be compiled from against build dir.
These changes allow virt-v2v to be compiled against the build directory of a non-installed libguestfs. Note that some small changes are also required to common and virt-v2v itself. I will post those separately. Rich.
2011 Oct 25
14
[PATCH 0/9] Package the ocaml libraries
...heir too-short names. 2. The libraries have been installed under /usr/lib/xen-4.1/lib/ocaml, which is not the standard place to install ocaml findlib packages. It is in keeping with the current packaging of xen in debian though. To use the libraries, set an environment variable: OCAMLPATH=/usr/lib/xen-4.1/lib/ocaml and then findlib should locate the packages. 3. Compilation and running of non-custom bytecode executables requires the setting of an additional environment variable: CAML_LD_LIBRARY_PATH=/usr/lib/xen-4.1/lib/ocaml/stublibs:/usr/lib/\ xen-4.1/lib Bytec...
2019 Nov 29
2
Re: Continuing the split (was: Let's split up the libguestfs git repo and tarballs)
On Friday, 29 November 2019 13:09:47 CET Richard W.M. Jones wrote: > So, the difficulty of git submodules aside, we have now split off > virt-v2v and virt-p2v into separate projects. > > I also yesterday split off the boot analysis tools into a repo which > is likely to be rarely used and which I'll probably not bother to > package in Fedora. >