J G Miller a écrit : > The i386 architecture version of this package contains > the ocamlopt executable, so its omission from the arm > architecture package appears to be a bug, and prevents > the building of software that requires this program > in the Makefile.
The ocamlopt executable is present only on architectures listed in `ocamlc -where`/native-archs (called "native architectures"), which doesn't include arm. ocamlopt is knowingly not available on other architectures (called "bytecode architectures). On these architectures, the best you can do is compiling in bytecode (i.e. with ocamlc). See e.g. the Debian OCaml Packaging Policy [1] for more details. [1] http://pkg-ocaml-maint.alioth.debian.org/ocaml_packaging_policy.html/index.html Cheers, -- Stéphane -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

