Build:
  1. 0
2025-12-09 07:37.13: New job: test bitwuzla-bin.0.0.0 with dune.3.21.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29042/head (a9b8a0d0db631d21208bd4ab7355e867d7ecf88d)
                              on debian-13-ocaml-5.4/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/29042/head" && git reset --hard a9b8a0d0
git fetch origin master
git merge --no-edit 2e91c1385fa6ee7c38e1108967fe3bf9ccba52f6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
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 dune.3.21.0~alpha2 3.21.0~alpha2
RUN opam reinstall dune.3.21.0~alpha2; \
    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" != 'dune.3.21.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall bitwuzla-bin.0.0.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" != 'bitwuzla-bin.0.0.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 bitwuzla-bin.0.0.0) || true
RUN opam reinstall --with-test --verbose bitwuzla-bin.0.0.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" != 'bitwuzla-bin.0.0.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 .

2025-12-09 07:37.13: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04-dune.3.21.0~alpha2-bitwuzla-bin.0.0.0-a9b8a0d0db631d21208bd4ab7355e867d7ecf88d"
2025-12-09 07:37.13: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
 (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 dune.3.21.0~alpha2 3.21.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.21.0~alpha2;\
             \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\" != 'dune.3.21.0~alpha2' && 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 bitwuzla-bin.0.0.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\" != 'bitwuzla-bin.0.0.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 bitwuzla-bin.0.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose bitwuzla-bin.0.0.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\" != 'bitwuzla-bin.0.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-09 07:37.13: Waiting for resource in pool OCluster
2025-12-09 18:58.50: Waiting for worker…
2025-12-09 19:02.03: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at 2e91c1385f Merge pull request #29043 from hannesm/mirage-kv
Merge made by the 'ort' strategy.
 .../chrome-trace/chrome-trace.3.21.0~alpha2/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.21.0~alpha2/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.21.0~alpha2/opam             | 47 ++++++++++++++
 .../dune-configurator.3.21.0~alpha2/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.0~alpha2/opam    | 44 +++++++++++++
 .../dune-private-libs.3.21.0~alpha2/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha2/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.0~alpha2/opam      | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.0~alpha2/opam    | 39 +++++++++++
 packages/dune/dune.3.21.0~alpha2/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.0~alpha2/opam                | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.0~alpha2/opam            | 40 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha2/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.21.0~alpha2/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.21.0~alpha2/opam          | 48 ++++++++++++++
 .../top-closure/top-closure.3.21.0~alpha2/opam     | 39 +++++++++++
 packages/xdg/xdg.3.21.0~alpha2/opam                | 41 ++++++++++++
 17 files changed, 787 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.21.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.21.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.21.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.21.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.21.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.21.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.21.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.21.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
2025-12-09 19:02.06 ---> using "5f87df8c1f6f0886e7311dfd3df40b8bbb961cc34c83c0d033c6dd248c84bc7d" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-09 19:02.06 ---> using "f1296791f2d76481058db697105a569091a6b6345f05c94bbc5a650f1a364f9a" 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-09 19:02.06 ---> using "0cac9a31b4750e6a46df8ed8d2f68352091a988199fdf62c52779549510cd6bf" 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                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2025-12-09 19:02.06 ---> using "1deb91dc3badca969976ed6f3bc5fe7c443d73a2cfa957be662fd6f93e30aa7b" 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/"))
2025-12-09 19:02.06 ---> using "1a02438c8753bf7228a9eb625e65b7af26778a022b9ce0b16be5ef4f294c58cd" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-09 19:02.07 ---> using "5eb86997857236bc32f8e9906c0a6a1698d33db864496f8e374d3bf25b889084" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-09 19:02.07 ---> using "461b809ba40b3a1f0f49bbba2df1162936b2a997b1e1fab87951df5ee9c3828d" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- 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-security trixie-security/main amd64 Packages [81.7 kB]
- Fetched 172 kB in 0s (1521 kB/s)
- Reading package lists...
- 
2025-12-09 19:02.07 ---> using "d953188c1144583f4d6c9508d29746bc7aa496329e24e2133499412480d3b360" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0~alpha2 3.21.0~alpha2"))
dune is now pinned to version 3.21.0~alpha2
2025-12-09 19:02.07 ---> using "4bbb6c46577f14fbf00d88ad9fe4a416fdaa3fe45eb57c7c8107e7f4e475d88b" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.21.0~alpha2;\
                        \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\" != 'dune.3.21.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.21.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.21.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0~alpha2  (cached)
-> installed dune.3.21.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 19:02.07 ---> using "6e916170e11b6a845780488e15d6d58d70f93cf536b2d72ac046cb05589b0a6d" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall bitwuzla-bin.0.0.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\" != 'bitwuzla-bin.0.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
bitwuzla-bin.0.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install bitwuzla-bin 0.0.0 (deprecated)
  - install conf-cmake   1                  [required by bitwuzla-bin]
  - install conf-g++     1.0                [required by bitwuzla-bin]
  - install conf-gcc     1.0                [required by bitwuzla-bin]
  - install conf-git     1.1                [required by bitwuzla-bin]
  - install conf-gmp     5                  [required by bitwuzla-bin]

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

<><> 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"
- Selecting previously unselected package cmake-data.
- (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 ... 20653 files and directories currently installed.)
- Preparing to unpack .../0-cmake-data_3.31.6-2_all.deb ...
- Unpacking cmake-data (3.31.6-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../1-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 .../2-libarchive13t64_3.7.4-4_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-4) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../3-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../4-librhash1_1.4.5-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../5-libuv1t64_1.50.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../6-cmake_3.31.6-2_amd64.deb ...
- Unpacking cmake (3.31.6-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../7-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 .../8-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libuv1t64:amd64 (1.50.0-2) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- Setting up cmake-data (3.31.6-2) ...
- Setting up librhash1:amd64 (1.4.5-1) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libarchive13t64:amd64 (3.7.4-4) ...
- Setting up cmake (3.31.6-2) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bitwuzla-bin.0.0.0  (https://opam.ocaml.org/cache)
-> retrieved conf-cmake.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> installed conf-cmake.1
-> installed conf-gcc.1.0
-> installed conf-git.1.1
-> installed conf-g++.1.0
-> installed conf-gmp.5
-> installed bitwuzla-bin.0.0.0
Done.

<><> bitwuzla-bin.0.0.0 installed successfully ><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 19:06.39 ---> saved as "1f1594e711c70adf6f6709db732e767755198700905976f8586ced87f61db240"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bitwuzla-bin.0.0.0  (https://opam.ocaml.org/cache)
-> removed   bitwuzla-bin.0.0.0
-> installed bitwuzla-bin.0.0.0
Done.

<><> bitwuzla-bin.0.0.0 installed successfully ><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 19:10.22 ---> saved as "2bbb9a6ce9f066b6f6d9f8fdebabfa8eeae563befe8780fbe1e1328f10ab5dcd"

/home/opam: (run (shell  "opam reinstall --with-test --verbose bitwuzla-bin.0.0.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\" != 'bitwuzla-bin.0.0.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 bitwuzla-bin 0.0.0 (deprecated)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [bitwuzla-bin.0.0.0: extract]
-> retrieved bitwuzla-bin.0.0.0  (cached)
Processing  2/4: [bitwuzla-bin: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bitwuzla-bin" "-j" "71" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0)
- (cd _build/default/vendor/btor2tools && ./configure.sh -fPIC)
- gcc -W -Wall -Wextra -Wredundant-decls -std=gnu99 -fPIC -O3 -DNDEBUG
- makefile generated
- (cd _build/default/vendor/cadical && ./configure -fPIC)
- configure: making default 'build' directory
- configure: building in default '/home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/cadical/build'
- configure: root directory '/home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/cadical'
- configure: compiler supports all required C99/C++0x extensions
- configure: unlocked IO with '{putc,getc}_unlocked' seems to work
- configure: compiling with 'g++ -Wall -Wextra -O3 -DNDEBUG -fPIC'
- configure: generated 'build/makefile' from '../makefile.in'
- configure: generated '../makefile' as proxy to ...
- configure: ... '/home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/cadical/build/makefile'
- configure: now run 'make' to compile CaDiCaL
- configure: optionally run 'make test'
- (cd _build/default/vendor/btor2tools && /usr/bin/make)
- mkdir -p build
- mkdir -p bin
- gcc -W -Wall -Wextra -Wredundant-decls -std=gnu99 -fPIC -O3 -DNDEBUG -o build/btor2parser.o -c src/btor2parser/btor2parser.c -Isrc
- ar rc build/libbtor2parser.a build/btor2parser.o
- ranlib build/libbtor2parser.a
- gcc -W -Wall -Wextra -Wredundant-decls -std=gnu99 -fPIC -O3 -DNDEBUG -o build/catbtor.o -c src/catbtor.c -Isrc
- gcc -W -Wall -Wextra -Wredundant-decls -std=gnu99 -fPIC -O3 -DNDEBUG -o bin/catbtor build/catbtor.o -Lbuild -lbtor2parser
- gcc -W -Wall -Wextra -Wredundant-decls -std=gnu99 -fPIC -O3 -DNDEBUG -o build/btorsimrng.o -c src/btorsim/btorsimrng.c -Isrc/btorsim
- gcc -W -Wall -Wextra -Wredundant-decls -std=gnu99 -fPIC -O3 -DNDEBUG -o build/btorsimbv.o -c src/btorsim/btorsimbv.c -Isrc
- gcc -W -Wall -Wextra -Wredundant-decls -std=gnu99 -fPIC -O3 -DNDEBUG -o build/btorsim.o -c src/btorsim/btorsim.c -Ibtorsim -Isrc
- gcc -W -Wall -Wextra -Wredundant-decls -std=gnu99 -fPIC -O3 -DNDEBUG -o bin/btorsim build/btorsim.o build/btorsimbv.o build/btorsimrng.o -Lbuild -lbtor2parser
- (cd _build/default/vendor/cadical && /usr/bin/make)
- /usr/bin/make -C "/home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/cadical/build"
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/cadical/build'
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/analyze.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/arena.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/assume.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/averages.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/backtrack.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/backward.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/bins.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/block.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/ccadical.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/checker.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/clause.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/collect.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/compact.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/condition.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/config.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/contract.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/cover.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/decide.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/decompose.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/deduplicate.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/elim.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/ema.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/extend.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/external.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/file.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/flags.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/format.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/gates.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/instantiate.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/internal.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/ipasir.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/limit.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/logging.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/lookahead.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/lucky.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/message.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/minimize.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/occs.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/options.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/parse.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/phases.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/probe.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/profile.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/proof.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/propagate.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/queue.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/random.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/reap.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/reduce.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/rephase.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/report.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/resources.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/restart.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/restore.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/score.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/shrink.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/signal.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/solution.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/solver.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/stats.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/subsume.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/terminal.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/ternary.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/tracer.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/transred.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/util.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/var.cpp
- ../scripts/make-build-header.sh > build.hpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/version.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/vivify.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/walk.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/watch.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 contract.o cover.o decide.o decompose.o deduplicate.o elim.o ema.o extend.o external.o file.o flags.o format.o gates.o instantiate.o internal.o ipasir.o limit.o logging.o lookahead.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 tracer.o transred.o util.o var.o version.o vivify.o walk.o watch.o
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/cadical.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -o cadical cadical.o -L. -lcadical
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -c ../src/mobical.cpp
- g++ -Wall -Wextra -O3 -DNDEBUG -fPIC -I../build -o mobical mobical.o -L. -lcadical
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/cadical/build'
- ../src/decompose.cpp: In member function 'bool CaDiCaL::Internal::decompose_round()':
- ../src/decompose.cpp:282:22: warning: array subscript 2 is above array bounds of 'int [2]' [-Warray-bounds=]
-   282 |         c->literals[l] = clause[l];
-       |         ~~~~~~~~~~~~~^
- In file included from ../src/internal.hpp:49,
-                  from ../src/decompose.cpp:1:
- ../src/clause.hpp:89:9: note: while referencing 'CaDiCaL::Clause::<unnamed union>::literals'
-    89 |     int literals[2];    // Of variadic 'size' (shrunken if strengthened).
-       |         ^~~~~~~~
- ../src/solver.cpp: In destructor 'CaDiCaL::Solver::~Solver()':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:346:3: note: in expansion of macro 'TRACE'
-   346 |   TRACE ("reset");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'int CaDiCaL::Solver::vars()':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:394:3: note: in expansion of macro 'TRACE'
-   394 |   TRACE ("vars");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::reserve(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:402:3: note: in expansion of macro 'TRACE'
-   402 |   TRACE ("reserve", min_max_var);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'bool CaDiCaL::Solver::set(const char*, int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:449:3: note: in expansion of macro 'TRACE'
-   449 |   TRACE ("set", arg, val);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'bool CaDiCaL::Solver::limit(const char*, int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:489:3: note: in expansion of macro 'TRACE'
-   489 |   TRACE ("limit", arg, val);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::add(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:524:3: note: in expansion of macro 'TRACE'
-   524 |   TRACE ("add", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::assume(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:535:3: note: in expansion of macro 'TRACE'
-   535 |   TRACE ("assume", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'int CaDiCaL::Solver::lookahead()':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:547:3: note: in expansion of macro 'TRACE'
-   547 |   TRACE ("lookahead");
-       |   ^~~~~
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:544:3: note: in expansion of macro 'TRACE'
-   544 |   TRACE ("lookahead");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::reset_assumptions()':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:564:3: note: in expansion of macro 'TRACE'
-   564 |   TRACE ("reset_assumptions");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'int CaDiCaL::Solver::solve()':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:605:3: note: in expansion of macro 'TRACE'
-   605 |   TRACE ("solve");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'int CaDiCaL::Solver::simplify(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:613:3: note: in expansion of macro 'TRACE'
-   613 |   TRACE ("simplify", rounds);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'bool CaDiCaL::Solver::failed(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:637:3: note: in expansion of macro 'TRACE'
-   637 |   TRACE ("failed", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::phase(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:657:3: note: in expansion of macro 'TRACE'
-   657 |   TRACE ("phase", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::unphase(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:665:3: note: in expansion of macro 'TRACE'
-   665 |   TRACE ("unphase", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'int CaDiCaL::Solver::active() const':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:740:3: note: in expansion of macro 'TRACE'
-   740 |   TRACE ("active");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'int64_t CaDiCaL::Solver::redundant() const':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:748:3: note: in expansion of macro 'TRACE'
-   748 |   TRACE ("redundant");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'int64_t CaDiCaL::Solver::irredundant() const':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:756:3: note: in expansion of macro 'TRACE'
-   756 |   TRACE ("irredundant");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::freeze(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:766:3: note: in expansion of macro 'TRACE'
-   766 |   TRACE ("freeze", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::statistics()':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:911:3: note: in expansion of macro 'TRACE'
-   911 |   TRACE ("stats");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::resources()':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:919:3: note: in expansion of macro 'TRACE'
-   919 |   TRACE ("resources");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::dump_cnf()':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:1023:3: note: in expansion of macro 'TRACE'
-  1023 |   TRACE ("dump");
-       |   ^~~~~
- ../src/solver.cpp: In constructor 'CaDiCaL::Solver::Solver()':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:335:3: note: in expansion of macro 'TRACE'
-   335 |   TRACE ("init");
-       |   ^~~~~
- ../src/solver.cpp: In member function 'void CaDiCaL::Solver::melt(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:774:3: note: in expansion of macro 'TRACE'
-   774 |   TRACE ("melt", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'bool CaDiCaL::Solver::frozen(int) const':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:784:3: note: in expansion of macro 'TRACE'
-   784 |   TRACE ("frozen", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'int CaDiCaL::Solver::fixed(int) const':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:648:3: note: in expansion of macro 'TRACE'
-   648 |   TRACE ("fixed", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'int CaDiCaL::Solver::val(int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:626:3: note: in expansion of macro 'TRACE'
-   626 |   TRACE ("val", lit);
-       |   ^~~~~
- ../src/solver.cpp: In member function 'CaDiCaL::Solver::CubesWithStatus CaDiCaL::Solver::generate_cubes(int, int)':
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:555:3: note: in expansion of macro 'TRACE'
-   555 |   TRACE ("lookahead_cubes");
-       |   ^~~~~
- ../src/solver.cpp:259:3: warning: 'nonnull' argument 'this' compared to NULL [-Wnonnull-compare]
-   259 |   if ((this == 0)) break; \
-       |   ^~
- ../src/solver.cpp:552:3: note: in expansion of macro 'TRACE'
-   552 |   TRACE ("lookahead_cubes");
-       |   ^~~~~
- make-build-header.sh: warning: could not determine 'IDENTIFIER' (git id)
- (cd _build/default && /usr/bin/patch -p1 --directory vendor/symfpu) < _build/default/vendor/bitwuzla/contrib/symfpu_20201114.patch
- File core/add.h is read-only; trying to patch anyway
- patching file core/add.h
- Hunk #1 succeeded at 402 (offset 6 lines).
- Hunk #2 succeeded at 529 (offset 6 lines).
- Hunk #3 succeeded at 547 (offset 6 lines).
- File core/convert.h is read-only; trying to patch anyway
- patching file core/convert.h
- Hunk #1 succeeded at 100 (offset 6 lines).
- Hunk #2 succeeded at 180 (offset 6 lines).
- Hunk #3 succeeded at 224 (offset 6 lines).
- File core/divide.h is read-only; trying to patch anyway
- patching file core/divide.h
- Hunk #1 succeeded at 111 (offset 6 lines).
- Hunk #2 succeeded at 122 (offset 6 lines).
- File core/multiply.h is read-only; trying to patch anyway
- patching file core/multiply.h
- Hunk #1 succeeded at 103 (offset 6 lines).
- File core/operations.h is read-only; trying to patch anyway
- patching file core/operations.h
- Hunk #1 succeeded at 30 (offset 6 lines).
- File core/packing.h is read-only; trying to patch anyway
- patching file core/packing.h
- Hunk #1 succeeded at 108 (offset 6 lines).
- Hunk #2 succeeded at 137 (offset 6 lines).
- File core/rounder.h is read-only; trying to patch anyway
- patching file core/rounder.h
- Hunk #1 succeeded at 387 (offset 6 lines).
- Hunk #2 succeeded at 582 (offset 6 lines).
- File core/sqrt.h is read-only; trying to patch anyway
- patching file core/sqrt.h
- Hunk #1 succeeded at 97 (offset 6 lines).
- File core/unpackedFloat.h is read-only; trying to patch anyway
- patching file core/unpackedFloat.h
- Hunk #1 succeeded at 108 (offset 6 lines).
- Hunk #2 succeeded at 172 (offset 6 lines).
- Hunk #3 succeeded at 182 (offset 6 lines).
- Hunk #4 succeeded at 444 (offset 6 lines).
- (cd _build/default/vendor/bitwuzla && ./configure.sh -fPIC --only-cadical --no-unit-testing --path ../.. --path ../../vendor --path ../../vendor/cadical/src --path ../../vendor/btor2tools/src)
- -- 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
- -- LIB directory is '/home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/bitwuzla/build/lib'
- -- BIN directory is '/home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/bitwuzla/build/bin'
- -- Performing Test HAVE_FLAG_std_gnu99
- -- Performing Test HAVE_FLAG_std_gnu99 - Success
- -- Configuring with C flag '-std=gnu99'
- -- Configuring with CXX flag '-std=gnu++11'
- -- Performing Test HAVE_FLAG_W
- -- Performing Test HAVE_FLAG_W - Success
- -- Configuring with C flag '-W'
- -- Configuring with CXX flag '-W'
- -- Performing Test HAVE_FLAG_Wall
- -- Performing Test HAVE_FLAG_Wall - Success
- -- Configuring with C flag '-Wall'
- -- Configuring with CXX flag '-Wall'
- -- Performing Test HAVE_FLAG_Wextra
- -- Performing Test HAVE_FLAG_Wextra - Success
- -- Configuring with C flag '-Wextra'
- -- Configuring with CXX flag '-Wextra'
- -- Performing Test HAVE_FLAG_Wredundant_decls
- -- Performing Test HAVE_FLAG_Wredundant_decls - Success
- -- Configuring with C flag '-Wredundant-decls'
- -- Configuring with CXX flag '-Wredundant-decls'
- -- Performing Test HAVE_FLAG_fPIC
- -- Performing Test HAVE_FLAG_fPIC - Success
- -- Configuring with C flag '-fPIC'
- -- Configuring with CXX flag '-fPIC'
- -- No build type set, options are: Debug;Production
- -- Building Production build
- -- Performing Test HAVE_FLAG_O3
- -- Performing Test HAVE_FLAG_O3 - Success
- -- Configuring with C flag '-O3'
- -- Configuring with CXX flag '-O3'
- -- Performing Test HAVE_SIGNALS
- -- Performing Test HAVE_SIGNALS - Success
- -- Performing Test HAVE_TIME_UTILS
- -- Performing Test HAVE_TIME_UTILS - Success
- -- Performing Test HAVE_NO_EXPORT_DYNAMIC
- -- Performing Test HAVE_NO_EXPORT_DYNAMIC - Success
- -- Found Btor2Tools: /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/btor2tools/src
- -- Found Btor2Tools library: /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/libbtor2parser.a
- -- Found GMP: /usr/include/x86_64-linux-gnu
- -- Found GMP libs: /usr/lib/x86_64-linux-gnu/libgmp.a
- -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
- -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
- -- Found Threads: TRUE
- -- Found SymFPU: /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor
- -- Found CaDiCaL: /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/cadical/src
- -- Found CaDiCaL library: /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/libcadical.a
- -- Found Git: /usr/bin/git (found version "2.47.3")
- -- Build type: Production
- -- Shared build: no
- -- ASAN support: no
- -- UBSAN support: no
- -- Assertions enabled: no
- -- Testing: no
- -- gcov support: no
- -- gprof support: no
- -- Logging support: no
- -- Python bindings: no
- -- Time statistics: no
- -- Build API documentation: no
- -- CaDiCaL: yes
- -- CryptoMiniSat: no
- -- Lingeling: no
- -- MiniSat: no
- -- PicoSAT: no
- -- Kissat: no
- -- SymFPU: yes
- -- Configuring done (2.4s)
- -- Generating done (0.0s)
- -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/bitwuzla/build
- CMake Deprecation Warning at CMakeLists.txt:11 (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.
- 
- 
- (cd _build/default/vendor/bitwuzla/build && /usr/bin/make)
- [  1%] Building C object src/CMakeFiles/bitwuzla.dir/aigprop.c.o
- [  2%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaaig.c.o
- [  3%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaaigvec.c.o
- [  4%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaass.c.o
- [  5%] Building C object src/CMakeFiles/bitwuzla.dir/bzlabeta.c.o
- [  6%] Building C object src/CMakeFiles/bitwuzla.dir/bzlabv.c.o
- [  8%] Building C object src/CMakeFiles/bitwuzla.dir/bzlabvdomain.c.o
- [  9%] Building C object src/CMakeFiles/bitwuzla.dir/bzlabvprop.c.o
- [ 10%] Building C object src/CMakeFiles/bitwuzla.dir/bzlachkclone.c.o
- [ 11%] Building C object src/CMakeFiles/bitwuzla.dir/bzlachkmodel.c.o
- [ 12%] Building C object src/CMakeFiles/bitwuzla.dir/bzlachkfailed.c.o
- [ 13%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaclone.c.o
- [ 15%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaconsutils.c.o
- [ 16%] Building C object src/CMakeFiles/bitwuzla.dir/bzlacore.c.o
- [ 17%] Building C object src/CMakeFiles/bitwuzla.dir/bzladbg.c.o
- [ 18%] Building C object src/CMakeFiles/bitwuzla.dir/bzladcr.c.o
- [ 19%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaessutils.c.o
- [ 20%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaexp.c.o
- [ 22%] Building C object src/CMakeFiles/bitwuzla.dir/bzlainvutils.c.o
- [ 23%] Building C object src/CMakeFiles/bitwuzla.dir/bzlalsutils.c.o
- [ 24%] Building C object src/CMakeFiles/bitwuzla.dir/bzlamodel.c.o
- [ 25%] Building C object src/CMakeFiles/bitwuzla.dir/bzlamsg.c.o
- [ 26%] Building C object src/CMakeFiles/bitwuzla.dir/bzlanode.c.o
- [ 27%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaopt.c.o
- [ 29%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaparse.c.o
- [ 30%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaprintmodel.c.o
- [ 31%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaproputils.c.o
- [ 32%] Building C object src/CMakeFiles/bitwuzla.dir/bzlarewrite.c.o
- [ 33%] Building C object src/CMakeFiles/bitwuzla.dir/bzlarm.c.o
- [ 34%] Building C object src/CMakeFiles/bitwuzla.dir/bzlarwcache.c.o
- [ 36%] Building C object src/CMakeFiles/bitwuzla.dir/bzlasat.c.o
- [ 37%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaslsutils.c.o
- [ 38%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaslvaigprop.c.o
- [ 39%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaslvfun.c.o
- [ 40%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaslvprop.c.o
- [ 41%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaslvquant.c.o
- [ 43%] Building C object src/CMakeFiles/bitwuzla.dir/bzlaslvsls.c.o
- [ 44%] Building C object src/CMakeFiles/bitwuzla.dir/bzlasort.c.o
- [ 45%] Building C object src/CMakeFiles/bitwuzla.dir/bzlasubst.c.o
- [ 46%] Building CXX object src/CMakeFiles/bitwuzla.dir/bzlafp.cpp.o
- [ 47%] Building C object src/CMakeFiles/bitwuzla.dir/bzlasynth.c.o
- [ 48%] Building C object src/CMakeFiles/bitwuzla.dir/api/c/bitwuzla.c.o
- [ 50%] Building C object src/CMakeFiles/bitwuzla.dir/dumper/bzladumpaig.c.o
- [ 51%] Building C object src/CMakeFiles/bitwuzla.dir/dumper/bzladumpbtor.c.o
- [ 52%] Building C object src/CMakeFiles/bitwuzla.dir/dumper/bzladumpsmt.c.o
- [ 53%] Building C object src/CMakeFiles/bitwuzla.dir/parser/bzlabtor.c.o
- [ 54%] Building C object src/CMakeFiles/bitwuzla.dir/parser/bzlabtor2.c.o
- [ 55%] Building C object src/CMakeFiles/bitwuzla.dir/parser/bzlasmt2.c.o
- [ 56%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaack.c.o
- [ 58%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlader.c.o
- [ 59%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaelimapplies.c.o
- [ 60%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaelimites.c.o
- [ 61%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaelimslices.c.o
- [ 62%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaembed.c.o
- [ 63%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaextract.c.o
- [ 65%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlamerge.c.o
- [ 66%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaminiscope.c.o
- [ 67%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlanormadd.c.o
- [ 68%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlanormquant.c.o
- [ 69%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlapputils.c.o
- [ 70%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlapreprocess.c.o
- [ 72%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaskel.c.o
- [ 73%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaskolemize.c.o
- [ 74%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlaunconstrained.c.o
- [ 75%] Building C object src/CMakeFiles/bitwuzla.dir/preprocess/bzlavarsubst.c.o
- [ 76%] Building C object src/CMakeFiles/bitwuzla.dir/sat/bzlacadical.c.o
- [ 77%] Building CXX object src/CMakeFiles/bitwuzla.dir/sat/bzlacms.cpp.o
- [ 79%] Building C object src/CMakeFiles/bitwuzla.dir/sat/bzlalgl.c.o
- [ 80%] Building CXX object src/CMakeFiles/bitwuzla.dir/sat/bzlaminisat.cpp.o
- [ 81%] Building C object src/CMakeFiles/bitwuzla.dir/sat/bzlapicosat.c.o
- [ 82%] Building C object src/CMakeFiles/bitwuzla.dir/sat/bzlakissat.c.o
- [ 83%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlahashint.c.o
- [ 84%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlahashptr.c.o
- [ 86%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlamem.c.o
- [ 87%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlanodeiter.c.o
- [ 88%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlanodemap.c.o
- [ 89%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlaoptparse.c.o
- [ 90%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlapartgen.c.o
- [ 91%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlarng.c.o
- [ 93%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlaunionfind.c.o
- [ 94%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlautil.c.o
- [ 95%] Building C object src/CMakeFiles/bitwuzla.dir/utils/bzlaabort.c.o
- [ 96%] Linking CXX static library ../lib/libbitwuzla.a
- [ 96%] Built target bitwuzla
- [ 97%] Building C object src/CMakeFiles/bitwuzla-bin.dir/bitwuzlamain.c.o
- [ 98%] Building C object src/CMakeFiles/bitwuzla-bin.dir/bzlamain.c.o
- [100%] Linking CXX executable ../bin/bitwuzla
- [100%] Built target bitwuzla-bin
- /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/bitwuzla/src/bzlabvprop.c: In function 'bzla_bvprop_mul_aux':
- /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/bitwuzla/src/bzlabvprop.c:2832:49: warning: 'n' may be used uninitialized [-Wmaybe-uninitialized]
-  2832 |         tmp = n > 1 ? &d_add_stack.start[n - 2] : &d_ite_stack.start[0];
-       |               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/bitwuzla/src/bzlabvprop.c:2527:24: note: 'n' was declared here
-  2527 |   uint32_t i, bw, bwo, n;
-       |                        ^
- In file included from /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/bitwuzla/src/bzlafp.cpp:35:
- /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/symfpu/core/convert.h: In instantiation of 'symfpu::significandRounderResult<t> symfpu::convertFloatToBV(const typename t::fpt&, const typename t::rm&, const unpackedFloat<t>&, const typename t::bwt&, const typename t::bwt&) [with t = BzlaFPSymTraits; typename t::fpt = BzlaFPSortInfo; typename t::rm = BzlaFPSymRM; typename t::bwt = unsigned int]':
- /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/symfpu/core/convert.h:481:56:   required from 'typename t::sbv symfpu::convertFloatToSBV(const typename t::fpt&, const typename t::rm&, const unpackedFloat<t>&, const typename t::bwt&, const typename t::sbv&, const typename t::bwt&) [with t = BzlaFPSymTraits; typename t::sbv = BzlaFPSymBV<true>; typename t::fpt = BzlaFPSortInfo; typename t::rm = BzlaFPSymRM; typename t::bwt = unsigned int]'
-   481 |    significandRounderResult<t> rounded(convertFloatToBV(format, roundingMode, input,
-       |                                        ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   482 |                                                         targetWidth, decimalPointPosition));
-       |                                                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/bitwuzla/src/bzlafp.cpp:2577:71:   required from here
-  2577 |                             symfpu::convertFloatToSBV<BzlaFPSymTraits>(
-       |                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
-  2578 |                                 bzla_node_get_sort_id(cur->e[1]),
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~      
-  2579 |                                 d_rm_map.at(cur->e[0]),
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~                
-  2580 |                                 d_unpacked_float_map.at(cur->e[1]),
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~    
-  2581 |                                 bw,
-       |                                 ~~~                                    
-  2582 |                                 BzlaFPSymBV<true>(apply)));
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~~~              
- /home/opam/.opam/5.4/.opam-switch/build/bitwuzla-bin.0.0.0/_build/default/vendor/symfpu/core/convert.h:253:73: warning: unused parameter 'format' [-Wunused-parameter]
-   253 |    significandRounderResult<t> convertFloatToBV (const typename t::fpt &format,
-       |                                                  ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
-> compiled  bitwuzla-bin.0.0.0
-> removed   bitwuzla-bin.0.0.0
-> installed bitwuzla-bin.0.0.0
Done.

<><> bitwuzla-bin.0.0.0 installed successfully ><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 19:14.03 ---> saved as "d57e4bb09e8f2403533671303e7d07458dd0bfc8aeb42431085a56cf706a4e5c"
Job succeeded
2025-12-09 19:14.11: Job succeeded