Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for prior versions of Coq #946

Merged
merged 3 commits into from
Nov 22, 2024
Merged

Fix for prior versions of Coq #946

merged 3 commits into from
Nov 22, 2024

Conversation

rtetley
Copy link
Collaborator

@rtetley rtetley commented Nov 19, 2024

No description provided.

extra_args = "";
extra_options = "";
} in
fst @@ Coqargs.parse_args ~init:Coqargs.default ~usage args
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs optcomp for master

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yup ! Was busy fixing it 👍

@rtetley
Copy link
Collaborator Author

rtetley commented Nov 19, 2024

After investigation, the culprit for broken CI seems to be : coq/coq#18385.
If I put myself in a state before that merge, it works.
After the merge, if I try to open any file I get the error:

"Error while opening document. Findlib error: zarith not found in:
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/micromega_core
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/ltac2
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/ssrmatching
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/tutorial
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/tutorial/p3
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/tutorial/p2
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/tutorial/p0
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/tutorial/p1
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/zify
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/number_string_notation
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/funind
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/firstorder_core
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/micromega
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/rtauto
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/derive
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/cc_core
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/nsatz_core
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/ssreflect
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/cc
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/ring
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/nsatz
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/tauto
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/btauto
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/extraction
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/ltac2_ltac1
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/ltac
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/plugins/firstorder
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/../coq-core/..
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/user-contrib/Ltac2
/nix/store/hvdpig83h0sq3wvynazjd0sh3fqwjmlc-coq-dev/lib/coq/user-contrib/Ltac2/Compat
/nix/store/8r2ykvw2as90n4abr7j9nk63v5cii7fd-ocaml4.14.2-findlib-1.9.7/lib/ocaml/4.14.2/site-lib
required by `coq-core.interp'"

@SkySkimmer
Copy link
Contributor

Why is it looking for zarith, it should be statically linked?

@rtetley
Copy link
Collaborator Author

rtetley commented Nov 20, 2024

Not sure, though it seems the breakage is only a nix thing so probably a problem with the nix setup.

@rtetley rtetley merged commit 98c1c0d into main Nov 22, 2024
28 checks passed
@gares gares deleted the fixing-italian-boulette branch November 22, 2024 10:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants