search for: ebab619

Displaying 5 results from an estimated 5 matches for "ebab619".

Did you mean: ebab6198c
2016 Jul 14
2
[PATCH 0/2] Build mllib and customize into libraries.
Simplifies the build a bit. This is on top of the previous SELinux relabelling patch set, although not related to it. Rich.
2019 Dec 13
1
[common PATCH] mlv2v: build as OCaml library
...$(OCAMLFIND) mklib $(OCAMLPACKAGES) \ + $(OBJECTS) $(libmlv2v_a_OBJECTS) -o mlv2v + +# OCaml dependencies. +.depend: $(srcdir)/*.mli $(srcdir)/*.ml + $(top_builddir)/ocaml-dep.sh $^ +-include .depend + +.PHONY: docs diff --git a/mlv2v/dummy.c b/mlv2v/dummy.c new file mode 100644 index 0000000..ebab619 --- /dev/null +++ b/mlv2v/dummy.c @@ -0,0 +1,2 @@ +/* Dummy source, to be used for OCaml-based tools with no C sources. */ +enum { foo = 1 }; -- 2.23.0
2015 May 13
0
[PATCH 2/2] mllib: link tests with automake
...HEOBJECTS) -o $@ + TESTS_ENVIRONMENT = $(top_builddir)/run --test TESTS = +check_PROGRAMS = if HAVE_OCAML_PKG_OUNIT +check_PROGRAMS += common_utils_tests JSON_tests TESTS += common_utils_tests JSON_tests endif diff --git a/mllib/dummy.c b/mllib/dummy.c new file mode 100644 index 0000000..ebab619 --- /dev/null +++ b/mllib/dummy.c @@ -0,0 +1,2 @@ +/* Dummy source, to be used for OCaml-based tools with no C sources. */ +enum { foo = 1 }; diff --git a/po/POTFILES b/po/POTFILES index 8d2daf7..a5e902e 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -258,6 +258,7 @@ inspector/inspector.c java/com_...
2016 Aug 19
1
[PATCH] virt-rescue rewrite in OCaml
Hi, I tried to rewrite virt-rescue from C to OCaml. Goals were feature parity with C implementation, smaller codebase and hopefully better maintainability. I still don't know if I've covered everything right. So, please check it out. PS: my git send-email seems to be broken, so I'm sending it from thunderbird Thanks! maros
2015 May 13
3
[PATCH 1/2] build: factor out the OCaml link.sh scripts
Create a single ocaml-link.sh script, which supports a -cclib parameter so it can be used instead of the per-project link.sh scripts. As result, the libraries for each OCaml application can be moved back to each Makefile.am. --- .gitignore | 7 ------- builder/Makefile.am | 14 ++++++++++++-- builder/link.sh.in | 22 ---------------------- configure.ac | 14