Być może znalazłeś coś, z czego jesteś teraz zadowolony, ale skompilowałem plik binarny unison, który działa na Androidzie - jest to możliwe przy użyciu instrukcji machania ręką, o których mówisz - użyłem ich do kompilacji źródła Linux w Ubuntu 12.10 używając Androida NDK i po kilku zmianach w kodzie, teraz działa. Postępuj zgodnie z instrukcjami na https://sites.google.com/site/keigoattic/ocaml-on-android, a wtedy będziesz musiał zrobić kilka rzeczy. W źródłowym unisonie znajduje się plik o nazwie pty.c - znajdź następującą sekcję:
// openpty
#if defined(__linux)
#include <pty.h>
/*#define HAS_OPENPTY 1*/
#endif
i komentuj define HAS_OPENPTY 1
jak pokazano. Musisz także otworzyć ubase / util.ml i edytować:
let homeDir () =
System.fspathFromString "/Your path here"
Skomentuj stąd:
(if (osType = `Unix) || isCygwin then
safeGetenv "HOME"
else if osType = `Win32 then
(*We don't want the behavior of Unison to depends on whether it is run
from a Cygwin shell (where HOME is set) or in any other way (where
HOME is usually not set)
try System.getenv "HOME" (* Windows 9x with Cygwin HOME set *)
with Not_found ->
*)
try System.getenv "USERPROFILE" (* Windows NT/2K standard *)
with Not_found ->
try System.getenv "UNISON" (* Use UNISON dir if it is set *)
with Not_found ->
"c:/" (* Default *)
else
assert false (* osType can't be anything else *))
... tutaj
Następnie będziesz musiał edytować Makefile.Ocaml
CWD=$(shell pwd)
EXEC_EXT=
WINOBJS=
SYSTEM=generic
# openpty is in the libutil library
ifneq ($(OSARCH),solaris)
ifneq ($(OSARCH),osx)
# CLIBS+=-cclib -lutil
endif
endif
buildexecutable::
@echo Building for Unix
endif
endif
I skomentuj # CLIBS+=-cclib -lutil
jak pokazano.
I o ile pamiętam, wszystko działało. Drugim krokiem po skompilowaniu jest zamontowanie partycji systemowej Android jako zapisywalnej i skopiowanie unison do folderu / system, w którym znajdują się wszystkie pozostałe polecenia powłoki.
Mam nadzieję, że komuś się to przyda ... Straciłem dużo snu, kompilując go.