├── CHANGES.md ├── .gitignore ├── README.md ├── META.compiler-libs-either-toplevel.template ├── dune-project ├── LICENSE.md └── compiler-libs-either-toplevel.opam /CHANGES.md: -------------------------------------------------------------------------------- 1 | ## unreleased 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _opam 3 | *.install 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # compiler-libs-either-toplevel 2 | 3 | META file for a unified bytecode/native toplevel library 4 | -------------------------------------------------------------------------------- /META.compiler-libs-either-toplevel.template: -------------------------------------------------------------------------------- 1 | directory= "+compiler-libs" 2 | requires = "compiler-libs.optcomp compiler-libs.bytecomp dynlink" 3 | version = "[distributed with Ocaml]" 4 | description = "Toplevel interactions" 5 | archive(byte) = "ocamltoplevel.cma" 6 | archive(native) = "ocamltoplevel.cmxa" 7 | -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.8) 2 | (name compiler-libs-either-toplevel) 3 | 4 | (generate_opam_files true) 5 | 6 | (license ISC) 7 | (source (github NathanReb/compiler-libs-opttoplevel)) 8 | (maintainers "Nathan Rebours and other 2 | authors 3 | 4 | Permission to use, copy, modify, and distribute this software for any 5 | purpose with or without fee is hereby granted, provided that the above 6 | copyright notice and this permission notice appear in all copies. 7 | 8 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 | -------------------------------------------------------------------------------- /compiler-libs-either-toplevel.opam: -------------------------------------------------------------------------------- 1 | # This file is generated by dune, edit dune-project instead 2 | opam-version: "2.0" 3 | synopsis: "META file for OCaml native toplevel" 4 | maintainer: ["Nathan Rebours = "2.8"} 11 | "odoc" {with-doc} 12 | ] 13 | build: [ 14 | ["dune" "subst"] {dev} 15 | [ 16 | "dune" 17 | "build" 18 | "-p" 19 | name 20 | "-j" 21 | jobs 22 | "@install" 23 | "@runtest" {with-test} 24 | "@doc" {with-doc} 25 | ] 26 | ] 27 | dev-repo: "git+https://github.com/NathanReb/compiler-libs-opttoplevel.git" 28 | --------------------------------------------------------------------------------