- github
- ocaml
- opam-repository
- c005d7
- distributions,opensuse-16.0-ocaml-4.14,bitwuzla-cxx.0.9.0,tests
(not at the head of any monitored branch or PR)
2026-03-23 09:00.47: New job: test bitwuzla-cxx.0.9.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29585/head (c005d764af867295ae8c4ddc313fce4db2093435)
on opensuse-16.0-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/29585/head" && git reset --hard c005d764
git fetch origin master
git merge --no-edit 76bf2ed9443fdee37e6f046c6295d358be3f8598
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324
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 bitwuzla-cxx.0.9.0 0.9.0
RUN opam reinstall bitwuzla-cxx.0.9.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 "\"opensuse-16.0\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'bitwuzla-cxx.0.9.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-cxx.0.9.0) || true
RUN opam reinstall --with-test --verbose bitwuzla-cxx.0.9.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 "\"opensuse-16.0\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'bitwuzla-cxx.0.9.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-23 09:00.47: Using cache hint "ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324-bitwuzla-cxx.0.9.0-c005d764af867295ae8c4ddc313fce4db2093435"
2026-03-23 09:00.47: Using OBuilder spec:
((from ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324)
(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 bitwuzla-cxx.0.9.0 0.9.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall bitwuzla-cxx.0.9.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 \"\\\"opensuse-16.0\\\"\"; 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-cxx.0.9.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-cxx.0.9.0) || true"))
(run (shell "opam reinstall --with-test --verbose bitwuzla-cxx.0.9.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 \"\\\"opensuse-16.0\\\"\"; 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-cxx.0.9.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-23 09:00.47: Waiting for resource in pool OCluster
2026-03-23 09:00.47: Waiting for worker…
2026-03-23 09:01.38: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files: 91% (16888/18510)
Updating files: 92% (17030/18510)
Updating files: 93% (17215/18510)
Updating files: 94% (17400/18510)
Updating files: 95% (17585/18510)
Updating files: 96% (17770/18510)
Updating files: 97% (17955/18510)
Updating files: 98% (18140/18510)
Updating files: 99% (18325/18510)
Updating files: 100% (18510/18510)
Updating files: 100% (18510/18510), done.
HEAD is now at 76bf2ed944 Merge pull request #29572 from hannesm/release-letsencrypt-v2.0.0
Updating 76bf2ed944..c005d764af
Fast-forward
packages/bitwuzla-cxx/bitwuzla-cxx.0.9.0/opam | 51 +++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
create mode 100644 packages/bitwuzla-cxx/bitwuzla-cxx.0.9.0/opam
(from ocaml/opam:opensuse-16.0-ocaml-4.14@sha256:92c28e22e95b118557cf2fee7cdb3bd1df67691136ca51918b0bed6ab9ff7324)
2026-03-23 09:01.42 ---> using "176b78d4712c07b55d53abc789f23e917c1c9b9dc68c6cb518e960b046403981" 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-23 09:01.42 ---> using "3ccb1616cff7e17d1156add8f030a1032d351c14b0fab1019bc5144c35607660" 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 255 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=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-23 09:01.42 ---> using "d68d8c24f617a4e87b9bedc3f3d6072eb86fc5a2e1fc26fd8135bbfbe89f0925" 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=opensuse-leap os-version=16.0
# 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 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-23 09:01.42 ---> using "7a861205fe553fbdddb728fef045c62c8bd63b3cbf11642ab367eb4ca264789c" 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-23 09:01.42 ---> using "61a6556736f9a2c8ef3e8b0a81dfa8e7802a5889c265468b3bf9a3740153aa7a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-23 09:01.53 ---> saved as "398efdf15d0068266a6f22d7cafae2ca1c3da667f691e20e165bfa51060a3929"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-23 09:02.17 ---> saved as "48c2b22210d31a29a562022d62f62a34208f0f83c68e5cb21069d6f9f45eb23a"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'repo-openh264 (16.0)' is up to date.
- Retrieving repository 'repo-oss (16.0)' metadata [..
- Looking for gpg keys in repository repo-oss (16.0).
- gpgkey=http://cdn.opensuse.org/distribution/leap/16.0/repo/oss/x86_64/repodata/repomd.xml.key
- ..
-
- Note: Received 1 new package signing key from repository "repo-oss (16.0)":
-
- Those additional keys are usually used to sign packages shipped by the repository. In order to
- validate those packages upon download and installation the new keys will be imported into the rpm
- database.
-
- New:
- Key Fingerprint: F044 C2C5 07A1 262B 538A AADD 8A49 EB03 25DB 7AE0
- Key Name: openSUSE:Backports OBS Project <openSUSE:Backports@build.opensuse.org>
- Key Algorithm: RSA 4096
- Key Created: Wed May 10 14:46:12 2023
- Key Expires: Sun May 9 14:46:12 2027
- Rpm Name: gpg-pubkey-25db7ae0-645bae34
-
- The repository metadata introducing the new keys have been signed and validated by the trusted
- key:
-
- Repository: repo-oss (16.0)
- Key Fingerprint: AD48 5664 E901 B867 051A B15F 35A2 F86E 29B7 00A4
- Key Name: openSUSE Project Signing Key <opensuse@opensuse.org>
- Key Algorithm: RSA 4096
- Key Created: Mon Jun 20 14:03:14 2022
- Key Expires: Fri Jun 19 14:03:14 2026 (expires in 88 days)
- Rpm Name: gpg-pubkey-29b700a4-62b07e22
-
- .
- .
- ..........
- ........done]
- Building repository 'repo-oss (16.0)' cache [..
- ..done]
- All repositories have been refreshed.
2026-03-23 09:02.32 ---> saved as "e41ff88049c1c3b9a78e02e416f485b835ef08da6fa7fa2d251e01530e7bab2d"
/home/opam: (run (shell "opam pin add -k version -yn bitwuzla-cxx.0.9.0 0.9.0"))
bitwuzla-cxx is now pinned to version 0.9.0
2026-03-23 09:02.33 ---> saved as "33a4757a57b5ca4d0a423ce0a0b45bde99a88c87e94641be1173a0f76f88fc42"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall bitwuzla-cxx.0.9.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 \"\\\"opensuse-16.0\\\"\"; 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-cxx.0.9.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-cxx.0.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 10 packages
- install bitwuzla-cxx 0.9.0 (pinned)
- install conf-g++ 1.0 [required by bitwuzla-cxx]
- install conf-gcc 1.0 [required by bitwuzla-cxx]
- install conf-git 1.1 [required by bitwuzla-cxx]
- install conf-gmp 5 [required by conf-mpfr, zarith]
- install conf-mpfr 3 [required by bitwuzla-cxx]
- install conf-pkg-config 4 [required by conf-mpfr, zarith]
- install dune 3.22.0 [required by bitwuzla-cxx]
- install ocamlfind 1.9.8 [required by zarith]
- install zarith 1.14 [required by bitwuzla-cxx]
The following system packages will first need to be installed:
gmp-devel mpfr-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "gmp-devel" "mpfr-devel"
- Refreshing service 'openSUSE'.
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
-
- The following 3 NEW packages are going to be installed:
- gmp-devel libgmpxx4 mpfr-devel
-
- 3 new packages to install.
-
- Package download size: 505.8 KiB
-
- Package install size change:
- | 1.4 MiB required by packages that will be installed
- 1.4 MiB | - 0 B released by packages that will be removed
-
- Backend: classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [..
- Preloading: libgmpxx4-6.3.0-160000.2.2.x86_64.rpm [done]
- .
- Preloading: mpfr-devel-4.2.1-160000.2.2.x86_64.rpm [done]
- .
-
- Preloading: gmp-devel-6.3.0-160000.2.2.x86_64.rpm [Error: "The requested URL returned error: 404", trying next mirror.]
- ..
- Preloading: gmp-devel-6.3.0-160000.2.2.x86_64.rpm [done]
- .done]
- Retrieving: libgmpxx4-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (1/3), 32.3 KiB
- Retrieving: gmp-devel-6.3.0-160000.2.2.x86_64 (repo-oss (16.0)) (2/3), 320.7 KiB
- Retrieving: mpfr-devel-4.2.1-160000.2.2.x86_64 (repo-oss (16.0)) (3/3), 152.8 KiB
-
- Checking for file conflicts: [..done]
- (1/3) Installing: libgmpxx4-6.3.0-160000.2.2.x86_64 [..done]
- (2/3) Installing: gmp-devel-6.3.0-160000.2.2.x86_64 [..done]
- (3/3) Installing: mpfr-devel-4.2.1-160000.2.2.x86_64 [..
- done]
- Running post-transaction scripts [...done]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bitwuzla-cxx.0.9.0 (https://github.com/bitwuzla/ocaml-bitwuzla/releases/download/0.9.0/bitwuzla-cxx-0.9.0.tbz)
-> retrieved conf-gmp.5 (cached)
-> retrieved conf-mpfr.3 (cached)
-> installed conf-g++.1.0
-> installed conf-gmp.5
-> installed conf-gcc.1.0
-> installed conf-git.1.1
-> installed conf-pkg-config.4
-> installed conf-mpfr.3
-> retrieved dune.3.22.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.22.0
-> installed bitwuzla-cxx.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 09:09.32 ---> saved as "7dd29a6526faf15f7d94885af7254df131b787db4ed2351f6926a5b56c151dfa"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test bitwuzla-cxx.0.9.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile bitwuzla-cxx 0.9.0 (pinned)
=== install 25 packages
- install base v0.16.4 [required by ppx_expect]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.22.0 [required by base]
- install jane-street-headers v0.16.0 [required by time_now]
- install jst-config v0.16.0 [required by time_now]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ppx_assert v0.16.0 [required by jst-config]
- install ppx_base v0.16.0 [required by time_now]
- install ppx_cold v0.16.0 [required by ppx_base]
- install ppx_compare v0.16.0 [required by ppx_base]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_enumerate v0.16.0 [required by ppx_base]
- install ppx_expect v0.16.2 [required by bitwuzla-cxx]
- install ppx_globalize v0.16.0 [required by ppx_base]
- install ppx_hash v0.16.0 [required by ppx_base]
- install ppx_here v0.16.0 [required by ppx_expect]
- install ppx_inline_test v0.16.1 [required by bitwuzla-cxx]
- install ppx_optcomp v0.16.0 [required by time_now]
- install ppx_sexp_conv v0.16.0 [required by ppx_base]
- install ppxlib 0.35.0 [required by ppx_expect]
- install re 1.14.0 [required by ppx_expect]
- install sexplib0 v0.16.0 [required by base]
- install stdio v0.16.0 [required by ppx_expect]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install time_now v0.16.0 [required by ppx_inline_test]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.4 (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.0 (https://opam.ocaml.org/cache)
-> retrieved jane-street-headers.v0.16.0 (https://opam.ocaml.org/cache)
-> installed jane-street-headers.v0.16.0
-> retrieved jst-config.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.12.4 (https://opam.ocaml.org/cache)
-> retrieved ppx_assert.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_base.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_cold.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_compare.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_enumerate.v0.16.0 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_expect.v0.16.2 (https://opam.ocaml.org/cache)
-> retrieved ppx_globalize.v0.16.0 (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved ppx_hash.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_here.v0.16.0 (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.22.0
-> retrieved ppx_inline_test.v0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_optcomp.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_sexp_conv.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.35.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.16.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved time_now.v0.16.0 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.16.0
-> removed bitwuzla-cxx.0.9.0
-> installed re.1.14.0
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed jst-config.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_expect.v0.16.2
-> installed bitwuzla-cxx.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 09:15.46 ---> saved as "98b23319c3963d3988ee005162230ec3f9c81c356684a8a0244639b121aafb78"
/home/opam: (run (shell "opam reinstall --with-test --verbose bitwuzla-cxx.0.9.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 \"\\\"opensuse-16.0\\\"\"; 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-cxx.0.9.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-cxx 0.9.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [bitwuzla-cxx: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bitwuzla-cxx" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bitwuzla-cxx.0.9.0)
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o sccfinder.o -c src/sccfinder.cpp)
- In file included from src/sccfinder.cpp:30:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/bits/locale_classes.h:42,
- from /usr/include/c++/15/bits/ios_base.h:43,
- from /usr/include/c++/15/ios:46,
- from /usr/include/c++/15/bits/ostream.h:43,
- from /usr/include/c++/15/ostream:42,
- from /usr/include/c++/15/iostream:43,
- from src/sccfinder.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o datasync.o -c src/datasync.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/datasync.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/solvertypes.h:27,
- from src/datasync.h:26,
- from src/datasync.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o sls.o -c src/sls.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/sls.cpp:24:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/solvertypes.h:27,
- from src/sls.h:26,
- from src/sls.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o completedetachreattacher.o -c src/completedetachreattacher.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/completedetachreattacher.cpp:24:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/completedetachreattacher.h:26,
- from src/completedetachreattacher.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o intree.o -c src/intree.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/intree.cpp:24:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/cloffset.h:26,
- from src/intree.h:23,
- from src/intree.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o lucky.o -c src/lucky.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/lucky.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/solver.h:25:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o str_impl_w_impl.o -c src/str_impl_w_impl.cpp)
- In file included from src/str_impl_w_impl.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/refwrap.h:41,
- from /usr/include/c++/15/vector:70,
- from src/str_impl_w_impl.h:26,
- from src/str_impl_w_impl.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o get_clause_query.o -c src/get_clause_query.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/get_clause_query.cpp:26:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/get_clause_query.h:25,
- from src/get_clause_query.cpp:25:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o distillerlong.o -c src/distillerlong.cpp)
- In file included from src/distillerlong.cpp:26:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/refwrap.h:41,
- from /usr/include/c++/15/vector:70,
- from src/distillerlong.h:26,
- from src/distillerlong.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o distillerlitrem.o -c src/distillerlitrem.cpp)
- In file included from src/distillerlitrem.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/refwrap.h:41,
- from /usr/include/c++/15/vector:70,
- from src/distillerlitrem.h:26,
- from src/distillerlitrem.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o cardfinder.o -c src/cardfinder.cpp)
- In file included from src/cardfinder.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/cardfinder.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o bva.o -c src/bva.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/bva.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/bits/locale_classes.h:42,
- from /usr/include/c++/15/bits/ios_base.h:43,
- from /usr/include/c++/15/ios:46,
- from /usr/include/c++/15/bits/ostream.h:43,
- from /usr/include/c++/15/ostream:42,
- from /usr/include/c++/15/iostream:43,
- from src/heap.h:24,
- from src/bva.h:26,
- from src/bva.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o clauseallocator.o -c src/clauseallocator.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/clauseallocator.cpp:33:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/clauseallocator.h:27,
- from src/clauseallocator.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor && /usr/bin/patch -p1 --directory bitwuzla) < _build/default/vendor/patch/0001-api-Add-hook-for-ocaml-z-value.patch
- patching file include/bitwuzla/cpp/bitwuzla.h
- patching file src/lib/bv/bitvector.h
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o subsumeimplicit.o -c src/subsumeimplicit.cpp)
- In file included from src/subsumeimplicit.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/refwrap.h:41,
- from /usr/include/c++/15/vector:70,
- from src/subsumeimplicit.h:26,
- from src/subsumeimplicit.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o distillerbin.o -c src/distillerbin.cpp)
- In file included from src/distillerbin.cpp:29:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/bits/locale_classes.h:42,
- from /usr/include/c++/15/bits/ios_base.h:43,
- from /usr/include/c++/15/iomanip:47,
- from src/distillerbin.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor && /usr/bin/patch -p1 --directory bitwuzla) < _build/default/vendor/patch/0002-binding-Fix-segfault-with-parallel-instances.patch
- patching file include/bitwuzla/cpp/bitwuzla.h
- patching file src/api/checks.h
- patching file src/api/cpp/bitwuzla.cpp
- patching file src/node/node_manager.cpp
- patching file src/node/node_manager.h
- patching file src/type/type_manager.cpp
- patching file src/type/type_manager.h
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o solutionextender.o -c src/solutionextender.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/solutionextender.cpp:24:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/solvertypes.h:27,
- from src/solutionextender.h:26,
- from src/solutionextender.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o gatefinder.o -c src/gatefinder.cpp)
- In file included from src/gatefinder.cpp:24:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/solvertypes.h:27,
- from src/gatefinder.h:26,
- from src/gatefinder.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o distillerlongwithimpl.o -c src/distillerlongwithimpl.cpp)
- In file included from src/distillerlongwithimpl.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/refwrap.h:41,
- from /usr/include/c++/15/vector:70,
- from src/distillerlongwithimpl.h:26,
- from src/distillerlongwithimpl.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o vardistgen.o -c src/vardistgen.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/vardistgen.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/refwrap.h:41,
- from /usr/include/c++/15/vector:70,
- from src/vardistgen.h:23,
- from src/vardistgen.cpp:24:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o reducedb.o -c src/reducedb.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/reducedb.cpp:24:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/clauseallocator.h:27,
- from src/reducedb.h:26,
- from src/reducedb.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -Wall -fdiagnostics-color=always -DEMSCRIPTEN -Wno-pointer-compare -g -I /home/opam/.opam/4.14/lib/ocaml -o picosat.o -c src/picosat/picosat.c)
- src/picosat/picosat.c: In function 'picosat_mus_assumptions':
- src/picosat/picosat.c:107:24: warning: 'memset' specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=]
- 107 | #define CLRN(p,n) do { memset ((p), 0, sizeof (*(p)) * (n)); } while (0)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/picosat/picosat.c:7437:3: note: in expansion of macro 'CLRN'
- 7437 | CLRN (redundant, nwork);
- | ^~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o propengine.o -c src/propengine.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/propengine.cpp:32:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/refwrap.h:41,
- from /usr/include/c++/15/deque:69,
- from /usr/include/c++/15/stack:68,
- from src/propengine.h:28,
- from src/propengine.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o matrixfinder.o -c src/matrixfinder.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/matrixfinder.cpp:24:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/refwrap.h:41,
- from /usr/include/c++/15/vector:70,
- from src/matrixfinder.h:26,
- from src/matrixfinder.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o gaussian.o -c src/gaussian.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/gaussian.cpp:41:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/bits/locale_classes.h:42,
- from /usr/include/c++/15/bits/ios_base.h:43,
- from /usr/include/c++/15/iomanip:47,
- from src/gaussian.cpp:31:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o ccnr_cms.o -c src/ccnr_cms.cpp)
- In file included from src/ccnr_cms.cpp:23:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/time_mem.h:26:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o clausecleaner.o -c src/clausecleaner.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/clausecleaner.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/clausecleaner.h:26,
- from src/clausecleaner.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o cryptominisat.o -c src/cryptominisat.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/cryptominisat.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/cryptominisat.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o xorfinder.o -c src/xorfinder.cpp)
- In file included from src/xorfinder.cpp:24:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/refwrap.h:41,
- from /usr/include/c++/15/vector:70,
- from src/xorfinder.h:27,
- from src/xorfinder.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o subsumestrengthen.o -c src/subsumestrengthen.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/subsumestrengthen.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/cloffset.h:26,
- from src/subsumestrengthen.h:26,
- from src/subsumestrengthen.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o varreplacer.o -c src/varreplacer.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/varreplacer.cpp:25:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/bits/stl_tree.h:67,
- from /usr/include/c++/15/map:64,
- from src/varreplacer.h:25,
- from src/varreplacer.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o cnf.o -c src/cnf.cpp)
- In file included from src/cnf.cpp:32:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/cnf.h:27,
- from src/cnf.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o searcher.o -c src/searcher.cpp)
- In file included from src/searcher.h:31,
- from src/searcher.cpp:23:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/searcher.h:28:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o solver.o -c src/solver.cpp)
- In file included from src/searcher.h:31,
- from src/solver.h:36,
- from src/solver.cpp:23:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/solver.h:25:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- (cd _build/default/vendor/cryptominisat && /usr/bin/gcc -x c++ -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -Wall -fdiagnostics-color=always -I/opt/homebrew/include -std=c++17 -I. -Wno-class-memaccess -Wno-maybe-uninitialized -g -I /home/opam/.opam/4.14/lib/ocaml -I src -o occsimplifier.o -c src/occsimplifier.cpp)
- In file included from src/occsimplifier.cpp:24:
- src/time_mem.h: In function 'uint64_t memUsedTotal(double&, std::string*)':
- src/time_mem.h:183:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 183 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), '\t')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/15/bits/stl_function.h:1441,
- from /usr/include/c++/15/string:51,
- from /usr/include/c++/15/random:45,
- from src/constants.h:29,
- from src/occsimplifier.cpp:23:
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
- src/time_mem.h:185:72: warning: 'std::binder1st<_Operation> std::bind1st(const _Operation&, const _Tp&) [with _Operation = not_equal_to<char>; _Tp = char]' is deprecated: use 'std::bind' instead [-Wdeprecated-declarations]
- 185 | std::find_if(tp.begin(), tp.end(), std::bind1st(std::not_equal_to<char>(), ' ')));
- | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/15/backward/binders.h:136:5: note: declared here
- 136 | bind1st(const _Operation& __fn, const _Tp& __x)
- | ^~~~~~~
-> compiled bitwuzla-cxx.0.9.0
-> removed bitwuzla-cxx.0.9.0
-> installed bitwuzla-cxx.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 09:17.37 ---> saved as "d3e0d5dfefc131a648d5925801e637b05a331422bfbe2ab20844b16cbb547e84"
Job succeeded
2026-03-23 09:17.52: Job succeeded