« Up

stdpp 1.2.1 Error

(2020-04-14 10:21:03 UTC)

Context

# 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                 dev         Formal proof management system
num                 1.3         The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml               4.10.0      The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.0      Official release 4.10.0
ocaml-config        1           OCaml Switch Configuration
ocamlfind           1.8.1       A library manager for OCaml
# opam file:
opam-version: "2.0"
name: "coq-stdpp"
maintainer: "Ralf Jung <jung@mpi-sws.org>"
homepage: "https://gitlab.mpi-sws.org/iris/stdpp"
authors: "Robbert Krebbers, Jacques-Henri Jourdan, Ralf Jung"
bug-reports: "https://gitlab.mpi-sws.org/iris/stdpp/issues"
license: "BSD"
dev-repo: "git+https://gitlab.mpi-sws.org/iris/stdpp.git"
tags: [ "date:2019-08-29" ]
synopsis: "std++ is an extended \"Standard Library\" for Coq"
description: """
The key features of this library are as follows:
- It provides a great number of definitions and lemmas for common data
  structures such as lists, finite maps, finite sets, and finite multisets.
- It uses type classes for common notations (like `∅`, `∪`, and Haskell-style
  monad notations) so that these can be overloaded for different data structures.
- It uses type classes to keep track of common properties of types, like it
  having decidable equality or being countable or finite.
- Most data structures are represented in canonical ways so that Leibniz
  equality can be used as much as possible (for example, for maps we have
  `m1 = m2` iff `∀ i, m1 !! i = m2 !! i`). On top of that, the library provides
  setoid instances for most types and operations.
- It provides various tactics for common tasks, like an ssreflect inspired
  `done` tactic for finishing trivial goals, a simple breadth-first solver
  `naive_solver`, an equality simplifier `simplify_eq`, a solver `solve_proper`
  for proving compatibility of functions with respect to relations, and a solver
  `set_solver` for goals involving set operations.
- It is entirely dependency- and axiom-free."""
depends: [
  "coq" {(>= "8.7.2" & < "8.11~") | (= "dev")}
]
build: [make "-j%{jobs}%"]
install: [make "install"]
url {
  src:
    "https://gitlab.mpi-sws.org/iris/stdpp/repository/coq-stdpp-1.2.1/archive.tar.gz"
  checksum:
    "sha512=8eb04e9a70a9be0b7a9565516d03952ec9c54cb7abe20ddea4d27ceb3c18022fdf2f1409df6988092741a0e5e9086f852dc2eb3e7bdc4f4eff91b2baa72c16af"
}

Lint

Command
true
Return code
0

Dry install

Dry install with the current Coq version:

Command
opam install -y --show-action coq-stdpp.1.2.1 coq.dev
Return code
0

Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:

Command
true
Return code
0

Install dependencies

Command
opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-stdpp.1.2.1 coq.dev
Return code
0
Duration
5 s

Install

Command
opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-stdpp.1.2.1 coq.dev
Return code
7936
Duration
1 m 32 s
Output
# 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                 dev         Formal proof management system
num                 1.3         The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml               4.10.0      The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.0      Official release 4.10.0
ocaml-config        1           OCaml Switch Configuration
ocamlfind           1.8.1       A library manager for OCaml
[NOTE] Package coq is already installed (current version is dev).
The following actions will be performed:
  - install coq-stdpp 1.2.1
<><> Gathering sources ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/1: [coq-stdpp.1.2.1: http]
[coq-stdpp.1.2.1] downloaded from https://gitlab.mpi-sws.org/iris/stdpp/repository/coq-stdpp-1.2.1/archive.tar.gz
Processing  1/1:
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/2: [coq-stdpp: make]
+ /home/bench/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j4" (CWD=/home/bench/.opam/ocaml-base-compiler.4.10.0/.opam-switch/build/coq-stdpp.1.2.1)
- "coq_makefile" -f _CoqProject -o Makefile.coq
- make[1]: Entering directory '/home/bench/.opam/ocaml-base-compiler.4.10.0/.opam-switch/build/coq-stdpp.1.2.1'
- COQDEP VFILES
- COQDEP TESTFILES
- COQC theories/base.v
- COQC theories/proof_irrel.v
- COQC theories/decidable.v
- COQC theories/tactics.v
- COQC theories/option.v
- COQC theories/orders.v
- COQC theories/relations.v
- COQC theories/fin.v
- COQC theories/telescopes.v
- COQC theories/streams.v
- COQC theories/functions.v
- COQC theories/hlist.v
- COQC theories/numbers.v
- COQTEST tests/telescopes.v (ref: tests/telescopes.ref)
- COQC theories/list.v
- COQC theories/lexico.v
- COQC theories/nat_cancel.v
- COQC theories/countable.v
- COQC theories/sets.v
- COQC theories/vector.v
- COQC theories/sorting.v
- COQC theories/strings.v
- COQC theories/finite.v
- COQC theories/pretty.v
- COQC theories/infinite.v
- COQC theories/fin_sets.v
- COQC theories/propset.v
- COQC theories/listset.v
- COQC theories/listset_nodup.v
- COQC theories/binders.v
- File "./theories/fin_sets.v", line 404, characters 34-47:
- Error: No applicable tactic.
- 
- make[2]: *** [Makefile.coq:699: theories/fin_sets.vo] Error 1
- make[1]: *** [Makefile.coq:335: all] Error 2
- make[1]: Leaving directory '/home/bench/.opam/ocaml-base-compiler.4.10.0/.opam-switch/build/coq-stdpp.1.2.1'
- make: *** [Makefile:6: all] Error 2
[ERROR] The compilation of coq-stdpp failed at "/home/bench/.opam/opam-init/hooks/sandbox.sh build make -j4".
#=== ERROR while compiling coq-stdpp.1.2.1 ====================================#
# context              2.0.6 | linux/x86_64 | ocaml-base-compiler.4.10.0 | file:///home/bench/run/opam-coq-archive/released
# path                 ~/.opam/ocaml-base-compiler.4.10.0/.opam-switch/build/coq-stdpp.1.2.1
# command              ~/.opam/opam-init/hooks/sandbox.sh build make -j4
# exit-code            2
# env-file             ~/.opam/log/coq-stdpp-30734-335865.env
# output-file          ~/.opam/log/coq-stdpp-30734-335865.out
### output ###
# [...]
# COQC theories/fin_sets.v
# COQC theories/propset.v
# COQC theories/listset.v
# COQC theories/listset_nodup.v
# COQC theories/binders.v
# File "./theories/fin_sets.v", line 404, characters 34-47:
# Error: No applicable tactic.
# 
# make[2]: *** [Makefile.coq:699: theories/fin_sets.vo] Error 1
# make[1]: *** [Makefile.coq:335: all] Error 2
# make[1]: Leaving directory '/home/bench/.opam/ocaml-base-compiler.4.10.0/.opam-switch/build/coq-stdpp.1.2.1'
# make: *** [Makefile:6: all] Error 2
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build coq-stdpp 1.2.1
+- 
- No changes have been performed
# Run eval $(opam env) to update the current shell environment
'opam install -y -v coq-stdpp.1.2.1 coq.dev' failed.

Installation size

No files were installed.

Uninstall

Command
true
Return code
0
Missing removes
none
Wrong removes
none