(not at the head of any monitored branch or PR)
2026-03-21 18:50.30: New job: test cvc5.1.3.0 with conf-m4.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29579/head (e26ca330660bcb49f8bb8e3d37703d278be8c4bd)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29579/head" && git reset --hard e26ca330
git fetch origin master
git merge --no-edit 76bf2ed9443fdee37e6f046c6295d358be3f8598
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn conf-m4.1 1
RUN opam reinstall conf-m4.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'conf-m4.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall cvc5.1.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'cvc5.1.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test cvc5.1.3.0) || true
RUN opam reinstall --with-test --verbose cvc5.1.3.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'cvc5.1.3.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-21 18:50.30: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-conf-m4.1-cvc5.1.3.0-e26ca330660bcb49f8bb8e3d37703d278be8c4bd"
2026-03-21 18:50.30: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn conf-m4.1 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-m4.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall cvc5.1.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'cvc5.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test cvc5.1.3.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose cvc5.1.3.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'cvc5.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-21 18:50.30: Waiting for resource in pool OCluster
2026-03-21 22:18.15: Waiting for worker…
2026-03-21 22:20.47: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 76bf2ed944 Merge pull request #29572 from hannesm/release-letsencrypt-v2.0.0
Updating 76bf2ed944..e26ca33066
Fast-forward
 packages/conf-findutils/conf-findutils.1/opam                       | 2 ++
 packages/conf-m4/conf-m4.1/opam                                     | 1 +
 .../conf-mingw-w64-bzip2-x86_64/conf-mingw-w64-bzip2-x86_64.1/opam  | 4 ++--
 packages/conf-mingw-w64-gcc-x86_64/conf-mingw-w64-gcc-x86_64.1/opam | 4 ++--
 packages/conf-mingw-w64-gmp-x86_64/conf-mingw-w64-gmp-x86_64.1/opam | 4 ++--
 .../conf-mingw-w64-pkgconf-x86_64.1/opam                            | 6 +++---
 .../conf-mingw-w64-zlib-x86_64/conf-mingw-w64-zlib-x86_64.1/opam    | 4 ++--
 .../conf-mingw-w64-zstd-x86_64/conf-mingw-w64-zstd-x86_64.1/opam    | 4 ++--
 packages/conf-perl/conf-perl.2/opam                                 | 1 +
 9 files changed, 17 insertions(+), 13 deletions(-)

(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e' locally
docker.io/ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
d1a4c61b613c: Pulling fs layer
0195a6679dc6: Pulling fs layer
d1a4c61b613c: Waiting
0195a6679dc6: Waiting
410dfa46d7be: Pulling fs layer
b7b221f39cbe: Pulling fs layer
410dfa46d7be: Waiting
b7b221f39cbe: Waiting
0195a6679dc6: Verifying Checksum
0195a6679dc6: Download complete
410dfa46d7be: Download complete
b7b221f39cbe: Download complete
d1a4c61b613c: Download complete
d1a4c61b613c: Pull complete
0195a6679dc6: Pull complete
410dfa46d7be: Pull complete
b7b221f39cbe: Pull complete
Digest: sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
Status: Downloaded newer image for ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
2026-03-21 22:20.48 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-21 22:20.48 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-21 22:20.48 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-21 22:20.48 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-21 22:20.48 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-21 22:20.49 ---> using "64b0b1c5956282be62155632b73d49a512770a013b8177e3bd97cfd5e30573f3" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-21 22:20.49 ---> using "5bbc18b187922ee43ab28303966f314ef55d58cc243daaa1a62d891c4651643d" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 10.0 MB in 3min 6s (53.7 kB/s)
- Reading package lists...
- 
2026-03-21 22:20.49 ---> using "26c4cf2d2932a5613ac2db8ae671186642ac802d5db4f44c87661f5676362dec" from cache

/home/opam: (run (shell "opam pin add -k version -yn conf-m4.1 1"))
conf-m4 is now pinned to version 1
2026-03-21 22:20.49 ---> using "1f550c38f5bac1e80ecbaf30222372f1ba650bb720c00e72e38ddd72856eafa1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall conf-m4.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'conf-m4.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
conf-m4.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install conf-m4 1 (pinned)

The following system packages will first need to be installed:
    m4

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "m4"
- Selecting previously unselected package m4.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../archives/m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Setting up m4 (1.4.19-8) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-m4.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 22:20.49 ---> using "e0baf65572c68338ca7ad6c8769e7aeb1e3d03e85ea3541782477400153674e3" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall cvc5.1.3.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'cvc5.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
cvc5.1.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 10 packages
  - install conf-cmake             1      [required by cvc5]
  - install conf-g++               1.0    [required by cvc5]
  - install conf-gcc               1.0    [required by cvc5]
  - install conf-gmp               5      [required by cvc5]
  - install conf-python-3          9.0.0  [required by cvc5]
  - install conf-python-3-dev      1      [required by cvc5]
  - install conf-python3-pyparsing 1      [required by cvc5]
  - install conf-python3-tomli     1      [required by cvc5]
  - install cvc5                   1.3.0
  - install dune                   3.22.0 [required by cvc5]

The following system packages will first need to be installed:
    cmake libgmp-dev python3 python3-dev python3-pyparsing python3-tomli

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "cmake" "libgmp-dev" "python3" "python3-dev" "python3-pyparsing" "python3-tomli"
- Selecting previously unselected package libpython3.13-minimal:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20710 files and directories currently installed.)
- Preparing to unpack .../libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21035 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21521 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../01-cmake-data_3.31.6-2_all.deb ...
- Unpacking cmake-data (3.31.6-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../02-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libarchive13t64:amd64.
- Preparing to unpack .../03-libarchive13t64_3.7.4-4_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-4) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../04-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../05-librhash1_1.4.5-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../06-libuv1t64_1.50.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../07-cmake_3.31.6-2_amd64.deb ...
- Unpacking cmake (3.31.6-2) ...
- Selecting previously unselected package javascript-common.
- Preparing to unpack .../08-javascript-common_12+nmu1_all.deb ...
- Unpacking javascript-common (12+nmu1) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../09-libexpat1-dev_2.7.1-2_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../10-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../11-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libjs-jquery.
- Preparing to unpack .../12-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
- Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
- Selecting previously unselected package libjs-underscore.
- Preparing to unpack .../13-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
- Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
- Selecting previously unselected package libjs-sphinxdoc.
- Preparing to unpack .../14-libjs-sphinxdoc_8.1.3-5_all.deb ...
- Unpacking libjs-sphinxdoc (8.1.3-5) ...
- Selecting previously unselected package libpython3.13:amd64.
- Preparing to unpack .../15-libpython3.13_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13:amd64 (3.13.5-2) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../16-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libpython3.13-dev:amd64.
- Preparing to unpack .../17-libpython3.13-dev_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-dev:amd64 (3.13.5-2) ...
- Selecting previously unselected package libpython3-dev:amd64.
- Preparing to unpack .../18-libpython3-dev_3.13.5-1_amd64.deb ...
- Unpacking libpython3-dev:amd64 (3.13.5-1) ...
- Selecting previously unselected package python3.13-dev.
- Preparing to unpack .../19-python3.13-dev_3.13.5-2_amd64.deb ...
- Unpacking python3.13-dev (3.13.5-2) ...
- Selecting previously unselected package python3-dev.
- Preparing to unpack .../20-python3-dev_3.13.5-1_amd64.deb ...
- Unpacking python3-dev (3.13.5-1) ...
- Selecting previously unselected package python3-pyparsing.
- Preparing to unpack .../21-python3-pyparsing_3.1.2-1_all.deb ...
- Unpacking python3-pyparsing (3.1.2-1) ...
- Selecting previously unselected package python3-tomli.
- Preparing to unpack .../22-python3-tomli_2.2.1-2+b1_amd64.deb ...
- Unpacking python3-tomli (2.2.1-2+b1) ...
- Setting up media-types (13.0.0) ...
- Setting up javascript-common (12+nmu1) ...
- Setting up libuv1t64:amd64 (1.50.0-2) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libexpat1-dev:amd64 (2.7.1-2) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up cmake-data (3.31.6-2) ...
- Setting up librhash1:amd64 (1.4.5-1) ...
- Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libjs-sphinxdoc (8.1.3-5) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up libarchive13t64:amd64 (3.7.4-4) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libpython3.13:amd64 (3.13.5-2) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up python3-pyparsing (3.1.2-1) ...
- Setting up libpython3.13-dev:amd64 (3.13.5-2) ...
- Setting up cmake (3.31.6-2) ...
- Setting up libpython3-dev:amd64 (3.13.5-1) ...
- Setting up python3-tomli (2.2.1-2+b1) ...
- Setting up python3.13-dev (3.13.5-2) ...
- Setting up python3-dev (3.13.5-1) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-cmake.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-python-3.9.0.0  (cached)
-> retrieved conf-python-3-dev.1  (cached)
-> installed conf-cmake.1
-> installed conf-g++.1.0
-> installed conf-gcc.1.0
-> installed conf-gmp.5
-> installed conf-python-3.9.0.0
-> installed conf-python-3-dev.1
-> installed conf-python3-pyparsing.1
-> installed conf-python3-tomli.1
-> retrieved cvc5.1.3.0  (https://opam.ocaml.org/cache)
-> retrieved dune.3.22.0  (cached)
-> installed dune.3.22.0
-> installed cvc5.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 23:00.41 ---> saved as "8cba639479e98c66296ff8b3decce426d99f6ad19b272cec25bca69ecc071622"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test cvc5.1.3.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile cvc5 1.3.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cvc5.1.3.0  (https://opam.ocaml.org/cache)
-> removed   cvc5.1.3.0
-> installed cvc5.1.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-21 23:44.25 ---> saved as "dd6b5aa264c25ff4f1976ff1817538b917a51e2ef0b68795c0d79cbd7a9e60c8"

/home/opam: (run (shell  "opam reinstall --with-test --verbose cvc5.1.3.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'cvc5.1.3.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile cvc5 1.3.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [cvc5.1.3.0: extract]
-> retrieved cvc5.1.3.0  (cached)
Processing  2/4: [cvc5: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "cvc5" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0)
- (cd _build/default/vendor/cadical && /usr/bin/bash -e -u -o pipefail -c 'CXXFLAGS=-fPIC ./configure')
- configure: making default 'build' directory
- configure: building in default '/home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cadical/build'
- configure: root directory '/home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cadical'
- configure: source directory '/home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cadical/src'
- configure: compiler supports all required C99/C++11 extensions
- configure: compiler configuration supports flexible array members
- configure: unlocked IO with '{putc,getc}_unlocked' seems to work
- configure: 'closefrom' seems to be working
- configure: compiling with 'g++ -fPIC -Wall -Wextra -O3 -DNDEBUG'
- configure: generated 'build/makefile' from '../makefile.in'
- configure: generated '../makefile' as proxy to ...
- configure: ... '/home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cadical/build/makefile'
- configure: linking '/home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cadical/makefile'
- configure: now run 'make' to compile CaDiCaL
- configure: optionally run 'make test'
- (cd _build/default/vendor/cadical && /usr/bin/make)
- /usr/bin/make -C "/home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cadical/build"
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cadical/build'
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/analyze.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/arena.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/assume.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/averages.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/backtrack.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/backward.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/bins.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/block.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/ccadical.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/checker.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/clause.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/collect.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/compact.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/condition.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/config.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/constrain.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/contract.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/cover.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/decide.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/decompose.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/deduplicate.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/drattracer.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/elim.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/ema.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/extend.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/external.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/external_propagate.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/file.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/flags.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/flip.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/format.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/frattracer.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/gates.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/idruptracer.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/instantiate.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/internal.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/ipasir.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/lidruptracer.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/limit.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/logging.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/lookahead.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/lratbuilder.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/lratchecker.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/lrattracer.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/lucky.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/message.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/minimize.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/occs.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/options.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/parse.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/phases.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/probe.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/profile.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/proof.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/propagate.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/queue.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/random.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/reap.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/reduce.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/rephase.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/report.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/resources.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/restart.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/restore.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/score.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/shrink.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/signal.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/solution.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/solver.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/stats.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/subsume.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/terminal.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/ternary.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/transred.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/util.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/var.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/veripbtracer.cpp
- ../scripts/make-build-header.sh > build.hpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/version.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/vivify.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/walk.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/watch.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../contrib/craigtracer.cpp
- ar rc libcadical.a analyze.o arena.o assume.o averages.o backtrack.o backward.o bins.o block.o ccadical.o checker.o clause.o collect.o compact.o condition.o config.o constrain.o contract.o cover.o decide.o decompose.o deduplicate.o drattracer.o elim.o ema.o extend.o external.o external_propagate.o file.o flags.o flip.o format.o frattracer.o gates.o idruptracer.o instantiate.o internal.o ipasir.o lidruptracer.o limit.o logging.o lookahead.o lratbuilder.o lratchecker.o lrattracer.o lucky.o message.o minimize.o occs.o options.o parse.o phases.o probe.o profile.o proof.o propagate.o queue.o random.o reap.o reduce.o rephase.o report.o resources.o restart.o restore.o score.o shrink.o signal.o solution.o solver.o stats.o subsume.o terminal.o ternary.o transred.o util.o var.o veripbtracer.o version.o vivify.o walk.o watch.o craigtracer.o
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/cadical.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -o cadical cadical.o -L. -lcadical 
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -c ../src/mobical.cpp
- g++ -fPIC -Wall -Wextra -O3 -DNDEBUG -I../build -I../src -o mobical mobical.o -L. -lcadical
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cadical/build'
- make-build-header.sh: warning: could not determine 'IDENTIFIER' (git id)
- (cd _build/default/vendor/libpoly && /usr/bin/cmake -B build -DCMAKE_BUILD_TYPE=$type -DCMAKE_INSTALL_PREFIX=$prefix)
- -- The C compiler identification is GNU 14.2.0
- -- The CXX compiler identification is GNU 14.2.0
- -- Detecting C compiler ABI info
- -- Detecting C compiler ABI info - done
- -- Check for working C compiler: /usr/bin/cc - skipped
- -- Detecting C compile features
- -- Detecting C compile features - done
- -- Detecting CXX compiler ABI info
- -- Detecting CXX compiler ABI info - done
- -- Check for working CXX compiler: /usr/bin/c++ - skipped
- -- Detecting CXX compile features
- -- Detecting CXX compile features - done
- -- GMP headers: /usr/include/x86_64-linux-gnu
- -- GMP library: /usr/lib/x86_64-linux-gnu/libgmp.so
- -- Looking for open_memstream
- -- Looking for open_memstream - found
- -- Found PythonInterp: /usr/bin/python3 (found version "3.13.5")
- -- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython3.13.so (found version "3.13.5")
- -- Configuring done (1.2s)
- -- Generating done (0.1s)
- -- Build files have been written to: /home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/libpoly/build
- CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
-   Compatibility with CMake < 3.10 will be removed from a future version of
-   CMake.
- 
-   Update the VERSION argument <min> value.  Or, use the <min>...<max> syntax
-   to tell CMake that the project requires at least <min> but has been updated
-   to work with policies introduced by <max> or earlier.
- 
- 
- CMake Warning (dev) at CMakeLists.txt:72 (find_package):
-   Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules
-   are removed.  Run "cmake --help-policy CMP0148" for policy details.  Use
-   the cmake_policy command to set the policy and suppress this warning.
- 
- This warning is for project developers.  Use -Wno-dev to suppress it.
- 
- CMake Warning (dev) at python/CMakeLists.txt:16 (find_package):
-   Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules
-   are removed.  Run "cmake --help-policy CMP0148" for policy details.  Use
-   the cmake_policy command to set the policy and suppress this warning.
- 
- This warning is for project developers.  Use -Wno-dev to suppress it.
- 
- (cd _build/default/vendor/libpoly/build && /usr/bin/make)
- [  0%] Building C object src/CMakeFiles/poly.dir/utils/debug_trace.c.o
- [  0%] Building C object src/CMakeFiles/poly.dir/utils/assignment.c.o
- [  1%] Building C object src/CMakeFiles/poly.dir/utils/statistics.c.o
- [  1%] Building C object src/CMakeFiles/poly.dir/utils/output.c.o
- [  2%] Building C object src/CMakeFiles/poly.dir/utils/sign_condition.c.o
- [  2%] Building C object src/CMakeFiles/poly.dir/utils/u_memstream.c.o
- [  3%] Building C object src/CMakeFiles/poly.dir/number/integer.c.o
- [  3%] Building C object src/CMakeFiles/poly.dir/number/rational.c.o
- [  4%] Building C object src/CMakeFiles/poly.dir/number/dyadic_rational.c.o
- [  4%] Building C object src/CMakeFiles/poly.dir/number/algebraic_number.c.o
- [  4%] Building C object src/CMakeFiles/poly.dir/number/value.c.o
- [  5%] Building C object src/CMakeFiles/poly.dir/interval/interval.c.o
- [  5%] Building C object src/CMakeFiles/poly.dir/interval/arithmetic.c.o
- [  6%] Building C object src/CMakeFiles/poly.dir/variable/variable_db.c.o
- [  6%] Building C object src/CMakeFiles/poly.dir/variable/variable_list.c.o
- [  7%] Building C object src/CMakeFiles/poly.dir/variable/variable_order.c.o
- [  7%] Building C object src/CMakeFiles/poly.dir/upolynomial/umonomial.c.o
- [  8%] Building C object src/CMakeFiles/poly.dir/upolynomial/upolynomial.c.o
- [  8%] Building C object src/CMakeFiles/poly.dir/upolynomial/output.c.o
- [  9%] Building C object src/CMakeFiles/poly.dir/upolynomial/upolynomial_dense.c.o
- [  9%] Building C object src/CMakeFiles/poly.dir/upolynomial/bounds.c.o
- [  9%] Building C object src/CMakeFiles/poly.dir/upolynomial/gcd.c.o
- [ 10%] Building C object src/CMakeFiles/poly.dir/upolynomial/factors.c.o
- [ 10%] Building C object src/CMakeFiles/poly.dir/upolynomial/factorization.c.o
- [ 11%] Building C object src/CMakeFiles/poly.dir/upolynomial/root_finding.c.o
- [ 11%] Building C object src/CMakeFiles/poly.dir/upolynomial/upolynomial_vector.c.o
- [ 12%] Building C object src/CMakeFiles/poly.dir/polynomial/monomial.c.o
- [ 12%] Building C object src/CMakeFiles/poly.dir/polynomial/coefficient.c.o
- [ 13%] Building C object src/CMakeFiles/poly.dir/polynomial/output.c.o
- [ 13%] Building C object src/CMakeFiles/poly.dir/polynomial/gcd.c.o
- [ 14%] Building C object src/CMakeFiles/poly.dir/polynomial/subres.c.o
- [ 14%] Building C object src/CMakeFiles/poly.dir/polynomial/factorization.c.o
- [ 14%] Building C object src/CMakeFiles/poly.dir/polynomial/polynomial.c.o
- [ 15%] Building C object src/CMakeFiles/poly.dir/polynomial/polynomial_context.c.o
- [ 15%] Building C object src/CMakeFiles/poly.dir/polynomial/feasibility_set.c.o
- [ 16%] Building C object src/CMakeFiles/poly.dir/polynomial/feasibility_set_int.c.o
- [ 16%] Building C object src/CMakeFiles/poly.dir/polynomial/polynomial_hash_set.c.o
- [ 17%] Building C object src/CMakeFiles/poly.dir/polynomial/polynomial_heap.c.o
- [ 17%] Building C object src/CMakeFiles/poly.dir/polynomial/polynomial_vector.c.o
- [ 18%] Building C object src/CMakeFiles/poly.dir/poly.c.o
- [ 18%] Linking C shared library libpoly.so
- [ 18%] Built target poly
- [ 18%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/algebraic_number.cpp.o
- [ 19%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/assignment.cpp.o
- [ 19%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/context.cpp.o
- [ 20%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/dyadic_interval.cpp.o
- [ 20%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/dyadic_rational.cpp.o
- [ 21%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/integer_ring.cpp.o
- [ 21%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/integer.cpp.o
- [ 22%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/interval_assignment.cpp.o
- [ 22%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/interval.cpp.o
- [ 22%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/polynomial.cpp.o
- [ 23%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/polynomial_utils.cpp.o
- [ 23%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/rational.cpp.o
- [ 24%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/rational_interval.cpp.o
- [ 24%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/sign_condition.cpp.o
- [ 25%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/upolynomial.cpp.o
- [ 25%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/utils.cpp.o
- [ 26%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/value.cpp.o
- [ 26%] Building CXX object src/CMakeFiles/polyxx.dir/polyxx/variable.cpp.o
- [ 27%] Linking CXX shared library libpolyxx.so
- [ 27%] Built target polyxx
- [ 27%] Building C object src/CMakeFiles/static_poly.dir/utils/debug_trace.c.o
- [ 28%] Building C object src/CMakeFiles/static_poly.dir/utils/assignment.c.o
- [ 28%] Building C object src/CMakeFiles/static_poly.dir/utils/statistics.c.o
- [ 28%] Building C object src/CMakeFiles/static_poly.dir/utils/output.c.o
- [ 29%] Building C object src/CMakeFiles/static_poly.dir/utils/sign_condition.c.o
- [ 29%] Building C object src/CMakeFiles/static_poly.dir/utils/u_memstream.c.o
- [ 30%] Building C object src/CMakeFiles/static_poly.dir/number/integer.c.o
- [ 30%] Building C object src/CMakeFiles/static_poly.dir/number/rational.c.o
- [ 31%] Building C object src/CMakeFiles/static_poly.dir/number/dyadic_rational.c.o
- [ 31%] Building C object src/CMakeFiles/static_poly.dir/number/algebraic_number.c.o
- [ 32%] Building C object src/CMakeFiles/static_poly.dir/number/value.c.o
- [ 32%] Building C object src/CMakeFiles/static_poly.dir/interval/interval.c.o
- [ 33%] Building C object src/CMakeFiles/static_poly.dir/interval/arithmetic.c.o
- [ 33%] Building C object src/CMakeFiles/static_poly.dir/variable/variable_db.c.o
- [ 33%] Building C object src/CMakeFiles/static_poly.dir/variable/variable_list.c.o
- [ 34%] Building C object src/CMakeFiles/static_poly.dir/variable/variable_order.c.o
- [ 34%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/umonomial.c.o
- [ 35%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/upolynomial.c.o
- [ 35%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/output.c.o
- [ 36%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/upolynomial_dense.c.o
- [ 36%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/bounds.c.o
- [ 37%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/gcd.c.o
- [ 37%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/factors.c.o
- [ 38%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/factorization.c.o
- [ 38%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/root_finding.c.o
- [ 38%] Building C object src/CMakeFiles/static_poly.dir/upolynomial/upolynomial_vector.c.o
- [ 39%] Building C object src/CMakeFiles/static_poly.dir/polynomial/monomial.c.o
- [ 39%] Building C object src/CMakeFiles/static_poly.dir/polynomial/coefficient.c.o
- [ 40%] Building C object src/CMakeFiles/static_poly.dir/polynomial/output.c.o
- [ 40%] Building C object src/CMakeFiles/static_poly.dir/polynomial/gcd.c.o
- [ 41%] Building C object src/CMakeFiles/static_poly.dir/polynomial/subres.c.o
- [ 41%] Building C object src/CMakeFiles/static_poly.dir/polynomial/factorization.c.o
- [ 42%] Building C object src/CMakeFiles/static_poly.dir/polynomial/polynomial.c.o
- [ 42%] Building C object src/CMakeFiles/static_poly.dir/polynomial/polynomial_context.c.o
- [ 43%] Building C object src/CMakeFiles/static_poly.dir/polynomial/feasibility_set.c.o
- [ 43%] Building C object src/CMakeFiles/static_poly.dir/polynomial/feasibility_set_int.c.o
- [ 43%] Building C object src/CMakeFiles/static_poly.dir/polynomial/polynomial_hash_set.c.o
- [ 44%] Building C object src/CMakeFiles/static_poly.dir/polynomial/polynomial_heap.c.o
- [ 44%] Building C object src/CMakeFiles/static_poly.dir/polynomial/polynomial_vector.c.o
- [ 45%] Building C object src/CMakeFiles/static_poly.dir/poly.c.o
- [ 45%] Linking C static library libpoly.a
- [ 45%] Built target static_poly
- [ 46%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/algebraic_number.cpp.o
- [ 46%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/assignment.cpp.o
- [ 47%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/context.cpp.o
- [ 47%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/dyadic_interval.cpp.o
- [ 47%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/dyadic_rational.cpp.o
- [ 48%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/integer_ring.cpp.o
- [ 48%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/integer.cpp.o
- [ 49%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/interval_assignment.cpp.o
- [ 49%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/interval.cpp.o
- [ 50%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/polynomial.cpp.o
- [ 50%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/polynomial_utils.cpp.o
- [ 51%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/rational.cpp.o
- [ 51%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/rational_interval.cpp.o
- [ 52%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/sign_condition.cpp.o
- [ 52%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/upolynomial.cpp.o
- [ 52%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/utils.cpp.o
- [ 53%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/value.cpp.o
- [ 53%] Building CXX object src/CMakeFiles/static_polyxx.dir/polyxx/variable.cpp.o
- [ 54%] Linking CXX static library libpolyxx.a
- [ 54%] Built target static_polyxx
- [ 54%] Building C object src/CMakeFiles/static_pic_poly.dir/utils/debug_trace.c.o
- [ 54%] Building C object src/CMakeFiles/static_pic_poly.dir/utils/assignment.c.o
- [ 55%] Building C object src/CMakeFiles/static_pic_poly.dir/utils/statistics.c.o
- [ 55%] Building C object src/CMakeFiles/static_pic_poly.dir/utils/output.c.o
- [ 56%] Building C object src/CMakeFiles/static_pic_poly.dir/utils/sign_condition.c.o
- [ 56%] Building C object src/CMakeFiles/static_pic_poly.dir/utils/u_memstream.c.o
- [ 57%] Building C object src/CMakeFiles/static_pic_poly.dir/number/integer.c.o
- [ 57%] Building C object src/CMakeFiles/static_pic_poly.dir/number/rational.c.o
- [ 58%] Building C object src/CMakeFiles/static_pic_poly.dir/number/dyadic_rational.c.o
- [ 58%] Building C object src/CMakeFiles/static_pic_poly.dir/number/algebraic_number.c.o
- [ 59%] Building C object src/CMakeFiles/static_pic_poly.dir/number/value.c.o
- [ 59%] Building C object src/CMakeFiles/static_pic_poly.dir/interval/interval.c.o
- [ 59%] Building C object src/CMakeFiles/static_pic_poly.dir/interval/arithmetic.c.o
- [ 60%] Building C object src/CMakeFiles/static_pic_poly.dir/variable/variable_db.c.o
- [ 60%] Building C object src/CMakeFiles/static_pic_poly.dir/variable/variable_list.c.o
- [ 61%] Building C object src/CMakeFiles/static_pic_poly.dir/variable/variable_order.c.o
- [ 61%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/umonomial.c.o
- [ 62%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/upolynomial.c.o
- [ 62%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/output.c.o
- [ 63%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/upolynomial_dense.c.o
- [ 63%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/bounds.c.o
- [ 63%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/gcd.c.o
- [ 64%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/factors.c.o
- [ 64%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/factorization.c.o
- [ 65%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/root_finding.c.o
- [ 65%] Building C object src/CMakeFiles/static_pic_poly.dir/upolynomial/upolynomial_vector.c.o
- [ 66%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/monomial.c.o
- [ 66%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/coefficient.c.o
- [ 67%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/output.c.o
- [ 67%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/gcd.c.o
- [ 68%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/subres.c.o
- [ 68%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/factorization.c.o
- [ 68%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/polynomial.c.o
- [ 69%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/polynomial_context.c.o
- [ 69%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/feasibility_set.c.o
- [ 70%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/feasibility_set_int.c.o
- [ 70%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/polynomial_hash_set.c.o
- [ 71%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/polynomial_heap.c.o
- [ 71%] Building C object src/CMakeFiles/static_pic_poly.dir/polynomial/polynomial_vector.c.o
- [ 72%] Building C object src/CMakeFiles/static_pic_poly.dir/poly.c.o
- [ 72%] Linking C static library libpicpoly.a
- [ 72%] Built target static_pic_poly
- [ 73%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/algebraic_number.cpp.o
- [ 73%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/assignment.cpp.o
- [ 73%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/context.cpp.o
- [ 74%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/dyadic_interval.cpp.o
- [ 74%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/dyadic_rational.cpp.o
- [ 75%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/integer_ring.cpp.o
- [ 75%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/integer.cpp.o
- [ 76%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/interval_assignment.cpp.o
- [ 76%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/interval.cpp.o
- [ 77%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/polynomial.cpp.o
- [ 77%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/polynomial_utils.cpp.o
- [ 78%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/rational.cpp.o
- [ 78%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/rational_interval.cpp.o
- [ 78%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/sign_condition.cpp.o
- [ 79%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/upolynomial.cpp.o
- [ 79%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/utils.cpp.o
- [ 80%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/value.cpp.o
- [ 80%] Building CXX object src/CMakeFiles/static_pic_polyxx.dir/polyxx/variable.cpp.o
- [ 81%] Linking CXX static library libpicpolyxx.a
- [ 81%] Built target static_pic_polyxx
- [ 82%] Building C object python/CMakeFiles/polypy.dir/polypyAlgebraicNumber.c.o
- [ 82%] Building C object python/CMakeFiles/polypy.dir/polypyAssignment.c.o
- [ 82%] Building C object python/CMakeFiles/polypy.dir/polypyInteger.c.o
- [ 83%] Building C object python/CMakeFiles/polypy.dir/polypyPolynomial.c.o
- [ 83%] Building C object python/CMakeFiles/polypy.dir/polypy.c.o
- [ 84%] Building C object python/CMakeFiles/polypy.dir/polypyUPolynomial.c.o
- [ 84%] Building C object python/CMakeFiles/polypy.dir/utils.c.o
- [ 85%] Building C object python/CMakeFiles/polypy.dir/polypyVariable.c.o
- [ 85%] Building C object python/CMakeFiles/polypy.dir/polypyVariableOrder.c.o
- [ 86%] Building C object python/CMakeFiles/polypy.dir/polypyValue.c.o
- [ 86%] Building C object python/CMakeFiles/polypy.dir/polypyInterval.c.o
- [ 86%] Building C object python/CMakeFiles/polypy.dir/polypyFeasibilitySet.c.o
- [ 87%] Linking C shared module polypy.so
- [ 87%] Built target polypy
- [ 88%] Building CXX object test/poly/CMakeFiles/test_feasible_int_set.dir/test_feasible_int_set.cpp.o
- [ 88%] Linking CXX executable test_feasible_int_set
- [ 88%] Built target test_feasible_int_set
- [ 88%] Building CXX object test/polyxx/CMakeFiles/test_algebraic_number.dir/test_algebraic_number.cpp.o
- [ 89%] Linking CXX executable test_algebraic_number
- [ 89%] Built target test_algebraic_number
- [ 89%] Building CXX object test/polyxx/CMakeFiles/test_assignment.dir/test_assignment.cpp.o
- [ 90%] Linking CXX executable test_assignment
- [ 90%] Built target test_assignment
- [ 90%] Building CXX object test/polyxx/CMakeFiles/test_dyadic_interval.dir/test_dyadic_interval.cpp.o
- [ 91%] Linking CXX executable test_dyadic_interval
- [ 91%] Built target test_dyadic_interval
- [ 91%] Building CXX object test/polyxx/CMakeFiles/test_dyadic_rational.dir/test_dyadic_rational.cpp.o
- [ 91%] Linking CXX executable test_dyadic_rational
- [ 91%] Built target test_dyadic_rational
- [ 92%] Building CXX object test/polyxx/CMakeFiles/test_integer.dir/test_integer.cpp.o
- [ 92%] Linking CXX executable test_integer
- [ 92%] Built target test_integer
- [ 93%] Building CXX object test/polyxx/CMakeFiles/test_interval.dir/test_interval.cpp.o
- [ 93%] Linking CXX executable test_interval
- [ 93%] Built target test_interval
- [ 94%] Building CXX object test/polyxx/CMakeFiles/test_interval_assignment.dir/test_interval_assignment.cpp.o
- [ 94%] Linking CXX executable test_interval_assignment
- [ 94%] Built target test_interval_assignment
- [ 95%] Building CXX object test/polyxx/CMakeFiles/test_polynomial.dir/test_polynomial.cpp.o
- [ 95%] Linking CXX executable test_polynomial
- [ 95%] Built target test_polynomial
- [ 95%] Building CXX object test/polyxx/CMakeFiles/test_rational.dir/test_rational.cpp.o
- [ 96%] Linking CXX executable test_rational
- [ 96%] Built target test_rational
- [ 96%] Building CXX object test/polyxx/CMakeFiles/test_rational_interval.dir/test_rational_interval.cpp.o
- [ 97%] Linking CXX executable test_rational_interval
- [ 97%] Built target test_rational_interval
- [ 97%] Building CXX object test/polyxx/CMakeFiles/test_upolynomial.dir/test_upolynomial.cpp.o
- [ 98%] Linking CXX executable test_upolynomial
- [ 98%] Built target test_upolynomial
- [ 98%] Building CXX object test/polyxx/CMakeFiles/test_value.dir/test_value.cpp.o
- [ 99%] Linking CXX executable test_value
- [ 99%] Built target test_value
- [ 99%] Building CXX object test/polyxx/CMakeFiles/test_variable.dir/test_variable.cpp.o
- [100%] Linking CXX executable test_variable
- [100%] Built target test_variable
- (cd _build/default/vendor/cvc5 && /usr/bin/bash -e -u -o pipefail -c './configure.sh --static')
- -- The C compiler identification is GNU 14.2.0
- -- The CXX compiler identification is GNU 14.2.0
- -- Detecting C compiler ABI info
- -- Detecting C compiler ABI info - done
- -- Check for working C compiler: /usr/bin/cc - skipped
- -- Detecting C compile features
- -- Detecting C compile features - done
- -- Detecting CXX compiler ABI info
- -- Detecting CXX compiler ABI info - done
- -- Check for working CXX compiler: /usr/bin/c++ - skipped
- -- Detecting CXX compile features
- -- Detecting CXX compile features - done
- -- Found Git: /usr/bin/git (found version "2.47.3")
- fatal: not a git repository: /home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cvc5/../../.git/modules/vendor/cvc5
- -- Building Production build
- -- Performing Test HAVE_C_FLAG_O3
- -- Performing Test HAVE_C_FLAG_O3 - Success
- -- Configuring with C flag '-O3'
- -- Performing Test HAVE_CXX_FLAG_O3
- -- Performing Test HAVE_CXX_FLAG_O3 - Success
- -- Configuring with CXX flag '-O3'
- -- Performing Test HAVE_C_FLAG_Wall
- -- Performing Test HAVE_C_FLAG_Wall - Success
- -- Configuring with C flag '-Wall'
- -- Performing Test HAVE_CXX_FLAG_Wall
- -- Performing Test HAVE_CXX_FLAG_Wall - Success
- -- Configuring with CXX flag '-Wall'
- -- Performing Test HAVE_C_FLAG_Wunused_private_field
- -- Performing Test HAVE_C_FLAG_Wunused_private_field - Failed
- -- Performing Test HAVE_CXX_FLAG_Wunused_private_field
- -- Performing Test HAVE_CXX_FLAG_Wunused_private_field - Failed
- -- Performing Test HAVE_C_FLAG_Wdangling_reference
- -- Performing Test HAVE_C_FLAG_Wdangling_reference - Failed
- -- Performing Test HAVE_CXX_FLAG_Wdangling_reference
- -- Performing Test HAVE_CXX_FLAG_Wdangling_reference - Success
- -- Configuring with CXX flag '-Wno-dangling-reference'
- -- Performing Test HAVE_C_FLAG_fexceptions
- -- Performing Test HAVE_C_FLAG_fexceptions - Success
- -- Configuring with C flag '-fexceptions'
- -- Performing Test HAVE_CXX_FLAG_Wsuggest_override
- -- Performing Test HAVE_CXX_FLAG_Wsuggest_override - Success
- -- Configuring with CXX flag '-Wsuggest-override'
- -- Performing Test HAVE_CXX_FLAG_Wnon_virtual_dtor
- -- Performing Test HAVE_CXX_FLAG_Wnon_virtual_dtor - Success
- -- Configuring with CXX flag '-Wnon-virtual-dtor'
- -- Performing Test HAVE_C_FLAG_Wimplicit_fallthrough
- -- Performing Test HAVE_C_FLAG_Wimplicit_fallthrough - Success
- -- Configuring with C flag '-Wimplicit-fallthrough'
- -- Performing Test HAVE_CXX_FLAG_Wimplicit_fallthrough
- -- Performing Test HAVE_CXX_FLAG_Wimplicit_fallthrough - Success
- -- Configuring with CXX flag '-Wimplicit-fallthrough'
- -- Performing Test HAVE_C_FLAG_Wshadow
- -- Performing Test HAVE_C_FLAG_Wshadow - Success
- -- Configuring with C flag '-Wshadow'
- -- Performing Test HAVE_CXX_FLAG_Wshadow
- -- Performing Test HAVE_CXX_FLAG_Wshadow - Success
- -- Configuring with CXX flag '-Wshadow'
- -- Performing Test HAVE_C_FLAG_fno_operator_names
- -- Performing Test HAVE_C_FLAG_fno_operator_names - Failed
- -- Performing Test HAVE_CXX_FLAG_fno_operator_names
- -- Performing Test HAVE_CXX_FLAG_fno_operator_names - Success
- -- Configuring with CXX flag '-fno-operator-names'
- -- Performing Test HAVE_CXX_FLAG_fno_extern_tls_init
- -- Performing Test HAVE_CXX_FLAG_fno_extern_tls_init - Success
- -- Configuring with CXX flag '-fno-extern-tls-init'
- -- Performing Test HAVE_CXX_FLAG_Wclass_memaccess
- -- Performing Test HAVE_CXX_FLAG_Wclass_memaccess - Success
- -- Configuring with CXX flag '-Wno-class-memaccess'
- -- Disabling unit tests since assertions are disabled.
- -- Found Python: /usr/bin/python3 (found version "3.13.5") found components: Interpreter
- -- Found GMP (unknown version): /usr/lib/x86_64-linux-gnu/libgmp.a
- -- Found CaDiCaL 2.1.3
- : /home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cadical/build/libcadical.a
- -- Found Poly 0.2.0: /home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/libpoly/build/src/libpicpoly.a, /home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/libpoly/build/src/libpicpolyxx.a
- -- Found SymFPU: /home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor
- -- Performing Test CVC5_NEED_INT64_T_OVERLOADS
- -- Performing Test CVC5_NEED_INT64_T_OVERLOADS - Failed
- -- Performing Test CVC5_NEED_HASH_UINT64_T_OVERLOAD
- -- Performing Test CVC5_NEED_HASH_UINT64_T_OVERLOAD - Failed
- -- Looking for unistd.h
- -- Looking for unistd.h - found
- -- Looking for sys/wait.h
- -- Looking for sys/wait.h - found
- -- Looking for C++ include ext/stdio_filebuf.h
- -- Looking for C++ include ext/stdio_filebuf.h - found
- -- Looking for clock_gettime
- -- Looking for clock_gettime - found
- -- Looking for ffs
- -- Looking for ffs - found
- -- Looking for optreset
- -- Looking for optreset - not found
- -- Looking for sigaltstack
- -- Looking for sigaltstack - found
- -- Looking for strerror_r
- -- Looking for strerror_r - found
- -- Looking for strtok_r
- -- Looking for strtok_r - found
- -- Looking for setitimer
- -- Looking for setitimer - found
- -- Performing Test STRERROR_R_CHAR_P
- -- Performing Test STRERROR_R_CHAR_P - Failed
- -- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY
- -- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success
- -- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY
- -- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success
- -- Performing Test COMPILER_HAS_DEPRECATED_ATTR
- -- Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success
- 
- cvc5 1.3.0
- 
- Build profile             : production
- 
- Assertions                : off
- Debug symbols             : off
- Debug context mem mgr     : off
- 
- Muzzle                    : off
- Statistics                : on
- Tracing                   : off
- 
- ASan                      : off
- UBSan                     : off
- TSan                      : off
- Coverage (gcov)           : off
- Profiling (gprof)         : off
- Unit tests                : off
- Valgrind                  : off
- 
- Shared build              : off
- Python bindings           : off
- Java bindings             : off
- Interprocedural opt.      : off
- 
- CryptoMiniSat             : off
- GLPK                      : off
- Kissat                    : off
- LibPoly                   : on (system)
- CoCoALib                  : off
- MP library                : gmp (system)
- Editline                  : off
- 
- Api docs                  : off
- 
- 
- CPPLAGS (-D...): NDEBUG CVC5_STATISTICS_ON CVC5_USE_POLY
- CXXFLAGS       : -O3 -Wall -Wno-dangling-reference -Wsuggest-override -Wnon-virtual-dtor -Wimplicit-fallthrough -Wshadow -fno-operator-names -fno-extern-tls-init -Wno-class-memaccess
- CFLAGS         : -O3 -Wall -fexceptions -Wimplicit-fallthrough -Wshadow
- Linker flags   : 
- 
- Install prefix : /usr/local
- 
- cvc5 license: modified BSD
- 
- Note that this configuration is NOT built against any GPL'ed libraries, so
- it is covered by the (modified) BSD license.  To build against GPL'ed
- libraries which can improve cvc5's performance on arithmetic and bit-vector
- logics, use the 'configure.sh' script to re-configure with '--best --gpl'.
- 
- Now change to 'build' and type 'make', followed by 'make check' or 'make install'.
- 
- -- Configuring done (7.7s)
- -- Generating done (0.5s)
- -- Build files have been written to: /home/opam/.opam/4.14/.opam-switch/build/cvc5.1.3.0/_build/default/vendor/cvc5/build
2026-03-22 00:20.47: Cancelling: Timeout (120.0 minutes)
Job cancelled
2026-03-22 00:20.59: Timeout (120.0 minutes)