search for: stublib

Displaying 12 results from an estimated 12 matches for "stublib".

Did you mean: stublibs
2015 Oct 24
2
[PATCH 0/2] Allow 'make install' to be run twice.
Still don't recommend you use 'make install', but here we go. Rich.
2012 May 03
1
Ocaml and pthread_atfork()
...H=../src/.libs > + ocamlfind ocamlc -g -warn-error CDEFLMPSUVYZX -I . -package unix,threads -thread -linkpkg mlguestfs.cma t/guestfs_070_threads.cmo -o t/guestfs_070_threads.bc > File "_none_", line 1, characters 0-1: > Error: Error on dynamically loaded library: /usr/lib64/ocaml/stublibs/dllthreads.so: /usr/lib64/ocaml/stublibs/dllthreads.so: undefined symbol: pthread_atfork > > I did a quick bit of googling and found: > http://ryanarn.blogspot.com.au/2011/07/curious-case-of-pthreadatfork-on.html > > which seems to explain what's going on to my naive eye anywa...
2012 Aug 28
1
"make distcheck" failure
....sh && make && make distcheck It got most of the way through, but failed in the VPATH part while rebuilding from a ./_build subdir, like this: make[4]: Entering directory `/h/j/w/co/hivex/hivex-1.3.6/_build/ocaml' mkdir -p /usr/lib64/ocaml mkdir -p /usr/lib64/ocaml/stublibs ocamlfind install \ -ldconf ignore -destdir /usr/lib64/ocaml \ hivex \ META *.so *.a *.cma *.cmi ../../ocaml/*.mli *.cmx *.cmxa ocamlfind: Cannot mkdir /usr/lib64/ocaml/hivex: Permission denied make[4]: *** [install-data-hook] Error 2 make[4]: Leaving directory `/...
2017 Aug 10
0
Re: libguestfs binaries missing when built from source code
...; /usr/lib64/ocaml/guestfs/guestfs.cmx > /usr/lib64/ocaml/guestfs/guestfs.mli > /usr/lib64/ocaml/guestfs/libmlguestfs.a > /usr/lib64/ocaml/guestfs/mlguestfs.a > /usr/lib64/ocaml/guestfs/mlguestfs.cma > /usr/lib64/ocaml/guestfs/mlguestfs.cmxa > /usr/lib64/ocaml/stublibs/dllmlguestfs.so > /usr/lib64/ocaml/stublibs/dllmlguestfs.so.owner Those particular files are the OCaml bindings. They are only needed if you intend to write a brand new program in OCaml using guestfs (http://libguestfs.org/guestfs-ocaml.3.html). Otherwise you can remove them without any i...
2012 Nov 19
2
install errors for libguestfs-1.19.60
...e new version of guestfs sources and got the following errors on 'make install': make[2]: Nothing to be done for `install-exec-am'. make install-data-hook make[3]: Entering directory `/home/skippy/libguestfs/libguestfs-1.19.60/ocaml' mkdir -p /usr/lib/ocaml mkdir -p /usr/lib/ocaml/stublibs ocamlfind install \ -ldconf ignore -destdir /usr/lib/ocaml \ guestfs \ META *.so *.a *.cma *.cmx *.cmxa *.cmi ./*.mli ocamlfind: Package guestfs is already installed - (file /usr/lib/ocaml/guestfs/META already exists) make[3]: *** [install-data-hook] Error 2 make[3]:...
2011 Oct 25
14
[PATCH 0/9] Package the ocaml libraries
...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 Bytecode executables compiled with the -custom flag work without this setting. 4. Only the last 2 patches actually change the packaging at all. The first of these two simply bumps the XS-Python-Version to 2.7. It's the last patch that needs the most eyes...
2012 Aug 28
1
[PATCH hivex] maint: remove unnecessary mkdir -p
...d Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -97,7 +97,6 @@ install_files += *.cmx *.cmxa endif install-data-hook: - mkdir -p $(DESTDIR)$(OCAMLLIB) mkdir -p $(DESTDIR)$(OCAMLLIB)/stublibs $(OCAMLFIND) install \ -ldconf ignore -destdir $(DESTDIR)$(OCAMLLIB) \ -- 1.7.12.116.g31e0100
2014 Mar 03
7
[PATCH 1/4] More fixes for situations where ocamlopt is not available
....cmx .ml .mli .mll .mly # Do the installation by hand, because we want to run ocamlfind. +data_hook_files = META *.so *.a *.cma *.cmi $(srcdir)/*.mli +if HAVE_OCAMLOPT +data_hook_files += *.cmx *.cmxa +endif + install-data-hook: mkdir -p $(DESTDIR)$(OCAMLLIB) mkdir -p $(DESTDIR)$(OCAMLLIB)/stublibs $(OCAMLFIND) install \ -ldconf ignore -destdir $(DESTDIR)$(OCAMLLIB) \ guestfs \ - META *.so *.a *.cma *.cmx *.cmxa *.cmi $(srcdir)/*.mli + $(data_hook_files) rm $(DESTDIR)$(OCAMLLIB)/guestfs/bindtests.* rm $(DESTDIR)$(OCAMLLIB)/guestfs/libguestfsocaml.a diff --git a/ocaml/exam...
2013 Apr 03
14
ocaml bindings
i''m the Mageia Xen package maintainer, and a user reported that i had missing symbols in my ocaml bindings: https://bugs.mageia.org/show_bug.cgi?id=5199 i''m using Xen 4.2.1 and ocaml 3.12.1 the problem is that if you just to a simple hello world and you''re using certain bindings (eg: xeneventch): you get missing symbols. (others appear to be fine). I know next to
2011 Nov 15
6
[OCAML 0/7] Xen ocaml library packaging
This is an update to the patches sent out on 25th October. I expect, as before, that some of the larger patches won't get to the list so they are also available here: https://github.com/jonludlam/pkg-xen/commits/for-debian6. Changes since last mail: * I have split out the unrelated change to include 2 extra header files in libxen-dev * I have removed some instances of brace expansion
2015 Mar 10
0
[PATCH] v2v: Add the test-harness used by external tests.
...the installation by hand, because we want to run ocamlfind. +data_hook_files = META *.so *.a *.cmi $(srcdir)/*.mli +if !HAVE_OCAMLOPT +data_hook_files += *.cmo *.cma +else +data_hook_files += *.cmx *.cmxa +endif + +install-data-hook: + mkdir -p $(DESTDIR)$(OCAMLLIB) + mkdir -p $(DESTDIR)$(OCAMLLIB)/stublibs + $(OCAMLFIND) install \ + -ldconf ignore -destdir $(DESTDIR)$(OCAMLLIB) \ + v2v_test_harness \ + $(data_hook_files) + rm $(DESTDIR)$(OCAMLLIB)/v2v_test_harness/libv2vth.a + +# Manual pages and HTML files for the website. + +man_MANS = virt-v2v-test-harness.1 + +noinst_DATA += $(top_builddir...
2015 Mar 10
2
[PATCH 0/1] v2v: Add the test-harness used by external tests.
As I'm now working through the enormous virt-v2v/virt-p2v bug list, we need a high quality set of tests to ensure that we don't accidentally regress some old OS/hypervisor combination while making changes. The test cases are going to be huge, so we cannot possibly distribute them in libguestfs. Furthermore many of them have licensing problems which means we cannot redistribute them at