# Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.10.dev Formal proof management system num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.07.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.07.1 Official release 4.07.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: "2.0" name: "coq-deriving" version: "dev" maintainer: "Arthur Azevedo de Amorim <arthur.aa@gmail.com>" homepage: "https://github.com/arthuraa/deriving" bug-reports: "https://github.com/arthuraa/deriving/issues" dev-repo: "git+https://github.com/arthuraa/deriving.git" license: "MIT" build: [ make "-j" "%{jobs}%" ] install: [ make "install" ] depends: [ "coq" { (>= "8.10" & < "8.12~") | (= "dev") } "coq-mathcomp-ssreflect" {>= "1.9" | (= "dev")} "coq-void" {>= "0.1"} ] tags: [ "keyword:generic programming" "category:Computer Science/Data Types and Data Structures" "logpath:deriving" ] authors: [ "Arthur Azevedo de Amorim" ] synopsis: "Generic instances of MathComp classes" description: """ Deriving provides generic instances of MathComp classes for inductive data types. It includes native support for eqType, choiceType, countType and finType instances, and it allows users to define their own instances for other classes. """ url { src: "git+https://github.com/arthuraa/deriving.git#master" }
true
Dry install with the current Coq version:
opam install -y --show-action coq-deriving.dev coq.8.10.dev
Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:
true
opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-deriving.dev coq.8.10.dev
opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y coq-deriving.dev coq.8.10.dev
# Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.10.dev Formal proof management system coq-mathcomp-ssreflect 1.9.0 Small Scale Reflection coq-void 0.1.0 MathComp instances for the empty type (Empty_set) num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.07.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.07.1 Official release 4.07.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml [NOTE] Package coq is already installed (current version is 8.10.dev). The following actions will be performed: - install coq-deriving dev <><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><> [coq-deriving.dev] synchronised from git+https://github.com/arthuraa/deriving.git#master <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> [ERROR] The compilation of coq-deriving failed at "/home/bench/.opam/opam-init/hooks/sandbox.sh build make -j 4". #=== ERROR while compiling coq-deriving.dev ===================================# # context 2.0.6 | linux/x86_64 | ocaml-base-compiler.4.07.1 | file:///home/bench/run/opam-coq-archive/extra-dev # path ~/.opam/ocaml-base-compiler.4.07.1/.opam-switch/build/coq-deriving.dev # command ~/.opam/opam-init/hooks/sandbox.sh build make -j 4 # exit-code 2 # env-file ~/.opam/log/coq-deriving-17171-e4db2f.env # output-file ~/.opam/log/coq-deriving-17171-e4db2f.out ### output ### # Error: The reference void was not found in the current environment. # [...] # COQC theories/ind.v # COQC theories/base.v # File "./theories/base.v", line 111, characters 40-44: # Error: The reference void was not found in the current environment. # # File "./theories/ind.v", line 4, characters 29-33: # Error: Unable to locate library base with prefix deriving. # # make[2]: *** No rule to make target 'theories/base.vo', needed by 'real-all'. Stop. # make[1]: *** [CoqMakefile:321: all] Error 2 # make: *** [Makefile:13: invoke-coqmakefile] Error 2 <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions failed | - build coq-deriving dev +- - No changes have been performed # Run eval $(opam env) to update the current shell environment
No files were installed.
true