(for PR #23330)

2024-04-17 20:44.05: New job: test bap-thumb.2.5.0 with conf-gmp.5, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/23330/head (e065de656cee71750ee448a95ca37886f41c1cd4)
                              on debian-12-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/23330/head" && git reset --hard e065de65
git fetch origin master
git merge --no-edit f089d8564db935c703bea70a4b3d8335ffa1bef3
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:cf8d7fbd6be04384c5ea9d5daa691b0e785464d4f78abd504e650892e6f5db95
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="500"
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
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN opam pin add -k version -yn conf-gmp.5 5
RUN opam reinstall conf-gmp.5; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'conf-gmp.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN opam reinstall bap-thumb.2.5.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'bap-thumb.2.5.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
ENV OPAMCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMFIXUPCRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
ENV OPAMUPGRADECRITERIA="-removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed"
RUN (opam reinstall --with-test bap-thumb.2.5.0) || true
RUN opam reinstall --with-test --verbose bap-thumb.2.5.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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'bap-thumb.2.5.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 .

2024-04-17 20:44.05: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:cf8d7fbd6be04384c5ea9d5daa691b0e785464d4f78abd504e650892e6f5db95-conf-gmp.5-bap-thumb.2.5.0-e065de656cee71750ee448a95ca37886f41c1cd4"
2024-04-17 20:44.05: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:cf8d7fbd6be04384c5ea9d5daa691b0e785464d4f78abd504e650892e6f5db95)
 (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 "uname -rs && opam exec -- ocaml -version && opam --version"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 500)
 (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"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (shell "opam pin add -k version -yn conf-gmp.5 5"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall conf-gmp.5;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'conf-gmp.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall bap-thumb.2.5.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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'bap-thumb.2.5.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)
 (run (network host)
      (shell "(opam reinstall --with-test bap-thumb.2.5.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose bap-thumb.2.5.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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'bap-thumb.2.5.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-04-17 20:44.05: Waiting for resource in pool OCluster
2024-04-18 04:51.56: Waiting for worker…
2024-04-18 04:57.06: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
Updating files:  87% (29476/33527)
Updating files:  88% (29504/33527)
Updating files:  89% (29840/33527)
Updating files:  90% (30175/33527)
Updating files:  91% (30510/33527)
Updating files:  92% (30845/33527)
Updating files:  93% (31181/33527)
Updating files:  94% (31516/33527)
Updating files:  95% (31851/33527)
Updating files:  96% (32186/33527)
Updating files:  97% (32522/33527)
Updating files:  98% (32857/33527)
Updating files:  99% (33192/33527)
Updating files: 100% (33527/33527)
Updating files: 100% (33527/33527), done.
HEAD is now at f089d8564d Merge pull request #25672 from gborough/opam-publish-fred.0.1.0
Merge made by the 'ort' strategy.
 .../conf-gmp-powm-sec.4/files/test.c               | 26 ++++++++++++
 .../conf-gmp-powm-sec/conf-gmp-powm-sec.4/opam     | 17 ++++++++
 packages/conf-gmp/conf-gmp.5/files/test.c          | 10 +++++
 packages/conf-gmp/conf-gmp.5/opam                  | 32 +++++++++++++++
 packages/zarith/zarith.1.12-1/opam                 | 47 ++++++++++++++++++++++
 5 files changed, 132 insertions(+)
 create mode 100644 packages/conf-gmp-powm-sec/conf-gmp-powm-sec.4/files/test.c
 create mode 100644 packages/conf-gmp-powm-sec/conf-gmp-powm-sec.4/opam
 create mode 100644 packages/conf-gmp/conf-gmp.5/files/test.c
 create mode 100644 packages/conf-gmp/conf-gmp.5/opam
 create mode 100644 packages/zarith/zarith.1.12-1/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:cf8d7fbd6be04384c5ea9d5daa691b0e785464d4f78abd504e650892e6f5db95)
2024-04-18 04:57.48 ---> using "d067232bc6d554f704d96db510d98a09db454469d02feddab0e42aad928d63b1" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-04-18 04:57.48 ---> using "7ba6a357838d0c6dffd1ab84838aef33228d8bff6c010809eaf5038f14c36c3b" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2~alpha, 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 31 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=31 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-04-18 04:57.48 ---> using "983e95dd5ec1a58f04d02949e9a3380e2545ed1ff23babc42a673f7a3da56de8" from cache

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-101-generic
The OCaml toplevel, version 4.14.2
2.2.0~beta3~dev
2024-04-18 04:57.48 ---> using "ac3343965a00b30b35efd8593357dec9874e8fd8b4f43fe80af589440a734a31" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 500)

/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/"))
2024-04-18 04:57.48 ---> using "ef9e56a00980413d97b6bd05c1cd108fd97f547588ffc026c7f1b66f3c95fc80" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-04-18 04:57.50 ---> using "b5d86228d6098a612d6a831f8f85904a5e47fe1c1978d02c3cd9ab0665a511b8" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-04-18 04:57.50 ---> using "9512aec6c8046c634ff06a0fbceae3d912b905ef573ca5616b11eb9dc90e068c" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [154 kB]
- Fetched 257 kB in 0s (886 kB/s)
- Reading package lists...
2024-04-18 04:57.50 ---> using "9310ba51c07330e3d54b9ecad5ab683190144dc649aec4b9a893fb7c643d6794" from cache

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (shell "opam pin add -k version -yn conf-gmp.5 5"))
conf-gmp is now pinned to version 5
2024-04-18 04:57.50 ---> using "531233f8ed84704d4cc979aa61b52c64fd222d12f59b4ca12b6c2c85fea67cab" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall conf-gmp.5;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'conf-gmp.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
conf-gmp.5 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 2 packages
  - install conf-gmp        5 (pinned)
  - install conf-pkg-config 3          [required by conf-gmp]

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

<><> 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" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18735 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.3
-> installed conf-gmp.5
Done.
# Run eval $(opam env) to update the current shell environment
2024-04-18 04:57.50 ---> using "5b7e2b87c3b8be4a6c6c3e2d4142a00fa3e9b72d54a684600f4d2633bd4311bb" from cache

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall bap-thumb.2.5.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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'bap-thumb.2.5.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
bap-thumb.2.5.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 126 packages
  - install angstrom            0.16.0  [required by uri]
  - install bap-abi             2.5.0   [required by bap-arm]
  - install bap-api             2.5.0   [required by bap-arm]
  - install bap-arm             2.5.0   [required by bap-thumb]
  - install bap-build           2.5.0   [required by bap-core-theory]
  - install bap-bundle          2.5.0   [required by bap-std]
  - install bap-c               2.5.0   [required by bap-arm]
  - install bap-core-theory     2.5.0   [required by bap-thumb]
  - install bap-future          2.5.0   [required by bap-primus]
  - install bap-knowledge       2.5.0   [required by bap-thumb]
  - install bap-main            2.5.0   [required by bap-thumb]
  - install bap-plugins         2.5.0   [required by bap-std]
  - install bap-primus          2.5.0   [required by bap-arm]
  - install bap-recipe          2.5.0   [required by bap-main]
  - install bap-relation        2.5.0   [required by bap-std]
  - install bap-std             2.5.0   [required by bap-thumb]
  - install bap-strings         2.5.0   [required by bap-primus]
  - install bap-thumb           2.5.0
  - install bap-traces          2.5.0   [required by bap-arm]
  - install base                v0.14.3 [required by bap-relation]
  - install base-bytes          base    [required by ocplib-endian]
  - install base_bigstring      v0.14.0 [required by core_kernel]
  - install base_quickcheck     v0.14.1 [required by core_kernel, ppx_bap]
  - install bigarray-compat     1.1.0   [required by mmap]
  - install bigstringaf         0.9.1   [required by angstrom]
  - install bin_prot            v0.14.1 [required by bap-std]
  - install bitvec              2.5.0   [required by bap-thumb]
  - install bitvec-binprot      2.5.0   [required by bap-primus]
  - install bitvec-order        2.5.0   [required by bap-arm]
  - install bitvec-sexp         2.5.0   [required by bap-core-theory]
  - install camlzip             1.11    [required by bap-std]
  - install cmdliner            1.2.0   [required by bap-std]
  - install conf-binutils       0.3     [required by bap-std]
  - install conf-clang          1       [required by bap-std]
  - install conf-m4             1       [required by bap-std]
  - install conf-perl           2       [required by bap-std]
  - install conf-which          1       [required by bap-std]
  - install conf-zlib           1       [required by bap-std]
  - install core_kernel         v0.14.2 [required by bap-thumb]
  - install cppo                1.6.9   [required by utop]
  - install csexp               1.5.2   [required by dune-configurator]
  - install dune                3.15.0  [required by result, mmap, utop]
  - install dune-configurator   3.15.0  [required by base]
  - install fieldslib           v0.14.0 [required by core_kernel]
  - install fileutils           0.6.4   [required by bap-api]
  - install graphlib            2.5.0   [required by bap-primus]
  - install jane-street-headers v0.14.0 [required by core_kernel]
  - install jst-config          v0.14.1 [required by core_kernel]
  - install lambda-term         3.3.2   [required by utop]
  - install logs                0.7.0   [required by utop]
  - install lwt                 5.7.0   [required by utop]
  - install lwt_react           1.2.0   [required by utop]
  - install mew                 0.1.0   [required by mew_vi]
  - install mew_vi              0.5.0   [required by lambda-term]
  - install mmap                1.2.0   [required by bap-std]
  - install monads              2.5.0   [required by bap-arm]
  - install num                 1.5     [required by sexplib]
  - install oasis               0.4.11  [required by bap-traces]
  - install ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0   [required by angstrom]
  - install ocamlbuild          0.14.3  [required by oasis, bap-build]
  - install ocamlfind           1.9.6   [required by bap-std]
  - install ocamlgraph          2.1.0   [required by graphlib]
  - install ocamlify            0.0.1   [required by oasis]
  - install ocamlmod            0.0.9   [required by oasis]
  - install ocplib-endian       1.2     [required by lwt]
  - install octavius            1.2.2   [required by ppx_js_style]
  - install ogre                2.5.0   [required by bap-thumb]
  - install parsexp             v0.14.2 [required by bap-primus]
  - install ppx_assert          v0.14.0 [required by core_kernel, ppx_bap]
  - install ppx_bap             v0.14.0 [required by bap-thumb]
  - install ppx_base            v0.14.0 [required by core_kernel]
  - install ppx_bench           v0.14.1 [required by ppx_bap]
  - install ppx_bin_prot        v0.14.0 [required by ppx_bap]
  - install ppx_cold            v0.14.0 [required by ppx_bap]
  - install ppx_compare         v0.14.0 [required by ppx_bap]
  - install ppx_custom_printf   v0.14.1 [required by ppx_jane]
  - install ppx_derivers        1.2.1   [required by ppxlib]
  - install ppx_enumerate       v0.14.0 [required by ppx_bap]
  - install ppx_expect          v0.14.2 [required by ppx_jane]
  - install ppx_fields_conv     v0.14.2 [required by ppx_bap]
  - install ppx_fixed_literal   v0.14.0 [required by ppx_jane]
  - install ppx_hash            v0.14.0 [required by core_kernel, ppx_bap]
  - install ppx_here            v0.14.0 [required by ppx_bap]
  - install ppx_inline_test     v0.14.1 [required by core_kernel]
  - install ppx_jane            v0.14.0 [required by core_kernel]
  - install ppx_js_style        v0.14.1 [required by ppx_base]
  - install ppx_let             v0.14.0 [required by ppx_jane]
  - install ppx_module_timer    v0.14.0 [required by ppx_jane]
  - install ppx_optcomp         v0.14.3 [required by core_kernel, ppx_bap]
  - install ppx_optional        v0.14.0 [required by ppx_jane]
  - install ppx_pipebang        v0.14.0 [required by ppx_jane]
  - install ppx_sexp_conv       v0.14.3 [required by core_kernel, ppx_bap]
  - install ppx_sexp_message    v0.14.1 [required by core_kernel]
  - install ppx_sexp_value      v0.14.0 [required by ppx_bap]
  - install ppx_stable          v0.14.1 [required by ppx_jane]
  - install ppx_string          v0.14.1 [required by ppx_jane]
  - install ppx_typerep_conv    v0.14.2 [required by ppx_jane]
  - install ppx_variants_conv   v0.14.2 [required by ppx_bap]
  - install ppxlib              0.25.1  [required by ppx_bap]
  - install re                  1.11.0  [required by ppx_expect]
  - install react               1.2.2   [required by utop]
  - install regular             2.5.0   [required by bap-arm]
  - install result              1.5     [required by bap-std]
  - install seq                 base    [required by fileutils]
  - install sexplib             v0.14.0 [required by core_kernel]
  - install sexplib0            v0.14.0 [required by sexplib, base, bitvec-sexp]
  - install splittable_random   v0.14.0 [required by core_kernel]
  - install stdio               v0.14.0 [required by core_kernel, bap-main]
  - install stdlib-shims        0.3.0   [required by fileutils, ocamlgraph]
  - install stringext           1.6.0   [required by uri]
  - install time_now            v0.14.0 [required by core_kernel]
  - install topkg               1.0.7   [required by logs]
  - install trie                1.0.0   [required by mew]
  - install typerep             v0.14.0 [required by core_kernel]
  - install uchar               0.0.2   [required by zed]
  - install uri                 4.4.0   [required by bap-traces]
  - install utop                2.14.0  [required by bap-std]
  - install uucp                15.1.0  [required by zed]
  - install uuidm               0.9.8   [required by bap-primus, bap-traces]
  - install uuseg               15.1.0  [required by zed]
  - install uutf                1.0.3   [required by zed]
  - install variantslib         v0.14.0 [required by core_kernel]
  - install xdg                 3.15.0  [required by utop]
  - install zarith              1.13    [required by bap-std]
  - install zed                 3.2.3   [required by utop]

The following system packages will first need to be installed:
    binutils-multiarch clang m4 zlib1g-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" "binutils-multiarch" "clang" "m4" "zlib1g-dev"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpipeline1:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18793 files and directories currently installed.)
- Preparing to unpack .../libpipeline1_1.5.7-1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.7-1) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../binfmt-support_2.2.2-2_amd64.deb ...
- Unpacking binfmt-support (2.2.2-2) ...
- Selecting previously unselected package libpython3.11-minimal:amd64.
- Preparing to unpack .../libpython3.11-minimal_3.11.2-6_amd64.deb ...
- Unpacking libpython3.11-minimal:amd64 (3.11.2-6) ...
- Selecting previously unselected package python3.11-minimal.
- Preparing to unpack .../python3.11-minimal_3.11.2-6_amd64.deb ...
- Unpacking python3.11-minimal (3.11.2-6) ...
- Setting up libpython3.11-minimal:amd64 (3.11.2-6) ...
- Setting up python3.11-minimal (3.11.2-6) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 19122 files and directories currently installed.)
- Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ...
- Unpacking python3-minimal (3.11.2-1+b1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../media-types_10.0.0_all.deb ...
- Unpacking media-types (10.0.0) ...
- Selecting previously unselected package libpython3.11-stdlib:amd64.
- Preparing to unpack .../libpython3.11-stdlib_3.11.2-6_amd64.deb ...
- Unpacking libpython3.11-stdlib:amd64 (3.11.2-6) ...
- Selecting previously unselected package python3.11.
- Preparing to unpack .../python3.11_3.11.2-6_amd64.deb ...
- Unpacking python3.11 (3.11.2-6) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../libpython3-stdlib_3.11.2-1+b1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ...
- Setting up python3-minimal (3.11.2-1+b1) ...
- Selecting previously unselected package python3.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 19532 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.11.2-1+b1_amd64.deb ...
- Unpacking python3 (3.11.2-1+b1) ...
- Selecting previously unselected package binutils-multiarch.
- Preparing to unpack .../01-binutils-multiarch_2.40-2_amd64.deb ...
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-nm to /usr/bin/x86_64-linux-gnu-nm.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-objdump to /usr/bin/x86_64-linux-gnu-objdump.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-objcopy to /usr/bin/x86_64-linux-gnu-objcopy.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-strings to /usr/bin/x86_64-linux-gnu-strings.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-strip to /usr/bin/x86_64-linux-gnu-strip.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-size to /usr/bin/x86_64-linux-gnu-size.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-ar to /usr/bin/x86_64-linux-gnu-ar.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-ranlib to /usr/bin/x86_64-linux-gnu-ranlib.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-addr2line to /usr/bin/x86_64-linux-gnu-addr2line.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-gprof to /usr/bin/x86_64-linux-gnu-gprof.single by binutils-multiarch'
- Adding 'diversion of /usr/bin/x86_64-linux-gnu-readelf to /usr/bin/x86_64-linux-gnu-readelf.single by binutils-multiarch'
- Unpacking binutils-multiarch (2.40-2) ...
- Selecting previously unselected package libicu72:amd64.
- Preparing to unpack .../02-libicu72_72.1-3_amd64.deb ...
- Unpacking libicu72:amd64 (72.1-3) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../03-libxml2_2.9.14+dfsg-1.3~deb12u1_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../04-libz3-4_4.8.12-3.1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.8.12-3.1) ...
- Selecting previously unselected package libllvm14:amd64.
- Preparing to unpack .../05-libllvm14_1%3a14.0.6-12_amd64.deb ...
- Unpacking libllvm14:amd64 (1:14.0.6-12) ...
- Selecting previously unselected package libclang-cpp14.
- Preparing to unpack .../06-libclang-cpp14_1%3a14.0.6-12_amd64.deb ...
- Unpacking libclang-cpp14 (1:14.0.6-12) ...
- Selecting previously unselected package libgc1:amd64.
- Preparing to unpack .../07-libgc1_1%3a8.2.2-3_amd64.deb ...
- Unpacking libgc1:amd64 (1:8.2.2-3) ...
- Selecting previously unselected package libobjc4:amd64.
- Preparing to unpack .../08-libobjc4_12.2.0-14_amd64.deb ...
- Unpacking libobjc4:amd64 (12.2.0-14) ...
- Selecting previously unselected package libobjc-12-dev:amd64.
- Preparing to unpack .../09-libobjc-12-dev_12.2.0-14_amd64.deb ...
- Unpacking libobjc-12-dev:amd64 (12.2.0-14) ...
- Selecting previously unselected package libclang-common-14-dev.
- Preparing to unpack .../10-libclang-common-14-dev_1%3a14.0.6-12_all.deb ...
- Unpacking libclang-common-14-dev (1:14.0.6-12) ...
- Selecting previously unselected package llvm-14-linker-tools.
- Preparing to unpack .../11-llvm-14-linker-tools_1%3a14.0.6-12_amd64.deb ...
- Unpacking llvm-14-linker-tools (1:14.0.6-12) ...
- Selecting previously unselected package libclang1-14.
- Preparing to unpack .../12-libclang1-14_1%3a14.0.6-12_amd64.deb ...
- Unpacking libclang1-14 (1:14.0.6-12) ...
- Selecting previously unselected package clang-14.
- Preparing to unpack .../13-clang-14_1%3a14.0.6-12_amd64.deb ...
- Unpacking clang-14 (1:14.0.6-12) ...
- Selecting previously unselected package clang.
- Preparing to unpack .../14-clang_1%3a14.0-55.7~deb12u1_amd64.deb ...
- Unpacking clang (1:14.0-55.7~deb12u1) ...
- Selecting previously unselected package icu-devtools.
- Preparing to unpack .../15-icu-devtools_72.1-3_amd64.deb ...
- Unpacking icu-devtools (72.1-3) ...
- Selecting previously unselected package libc6-i386.
- Preparing to unpack .../16-libc6-i386_2.36-9+deb12u4_amd64.deb ...
- Unpacking libc6-i386 (2.36-9+deb12u4) ...
- Selecting previously unselected package lib32gcc-s1.
- Preparing to unpack .../17-lib32gcc-s1_12.2.0-14_amd64.deb ...
- Unpacking lib32gcc-s1 (12.2.0-14) ...
- Selecting previously unselected package lib32stdc++6.
- Preparing to unpack .../18-lib32stdc++6_12.2.0-14_amd64.deb ...
- Unpacking lib32stdc++6 (12.2.0-14) ...
- Selecting previously unselected package libclang-rt-14-dev:amd64.
- Preparing to unpack .../19-libclang-rt-14-dev_1%3a14.0.6-12_amd64.deb ...
- Unpacking libclang-rt-14-dev:amd64 (1:14.0.6-12) ...
- Selecting previously unselected package libnspr4:amd64.
- Preparing to unpack .../20-libnspr4_2%3a4.35-1_amd64.deb ...
- Unpacking libnspr4:amd64 (2:4.35-1) ...
- Selecting previously unselected package libnss3:amd64.
- Preparing to unpack .../21-libnss3_2%3a3.87.1-1_amd64.deb ...
- Unpacking libnss3:amd64 (2:3.87.1-1) ...
- Selecting previously unselected package nss-plugin-pem:amd64.
- Preparing to unpack .../22-nss-plugin-pem_1.0.8+1-1_amd64.deb ...
- Unpacking nss-plugin-pem:amd64 (1.0.8+1-1) ...
- Selecting previously unselected package libcurl3-nss:amd64.
- Preparing to unpack .../23-libcurl3-nss_7.88.1-10+deb12u5_amd64.deb ...
- Unpacking libcurl3-nss:amd64 (7.88.1-10+deb12u5) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../24-libffi-dev_3.4.4-1_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.4-1) ...
- Selecting previously unselected package libicu-dev:amd64.
- Preparing to unpack .../25-libicu-dev_72.1-3_amd64.deb ...
- Unpacking libicu-dev:amd64 (72.1-3) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../26-libncurses6_6.4-4_amd64.deb ...
- Unpacking libncurses6:amd64 (6.4-4) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../27-libncurses-dev_6.4-4_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.4-4) ...
- Selecting previously unselected package libpfm4:amd64.
- Preparing to unpack .../28-libpfm4_4.13.0-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0-1) ...
- Selecting previously unselected package libtinfo-dev:amd64.
- Preparing to unpack .../29-libtinfo-dev_6.4-4_amd64.deb ...
- Unpacking libtinfo-dev:amd64 (6.4-4) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../30-libxml2-dev_2.9.14+dfsg-1.3~deb12u1_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../31-libyaml-0-2_0.2.5-1_amd64.deb ...
- Unpacking libyaml-0-2:amd64 (0.2.5-1) ...
- Selecting previously unselected package libz3-dev:amd64.
- Preparing to unpack .../32-libz3-dev_4.8.12-3.1_amd64.deb ...
- Unpacking libz3-dev:amd64 (4.8.12-3.1) ...
- Selecting previously unselected package llvm-14-runtime.
- Preparing to unpack .../33-llvm-14-runtime_1%3a14.0.6-12_amd64.deb ...
- Unpacking llvm-14-runtime (1:14.0.6-12) ...
- Selecting previously unselected package llvm-14.
- Preparing to unpack .../34-llvm-14_1%3a14.0.6-12_amd64.deb ...
- Unpacking llvm-14 (1:14.0.6-12) ...
- Selecting previously unselected package python3-pkg-resources.
- Preparing to unpack .../35-python3-pkg-resources_66.1.1-1_all.deb ...
- Unpacking python3-pkg-resources (66.1.1-1) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../36-python3-pygments_2.14.0+dfsg-1_all.deb ...
- Unpacking python3-pygments (2.14.0+dfsg-1) ...
- Selecting previously unselected package python3-yaml.
- Preparing to unpack .../37-python3-yaml_6.0-3+b2_amd64.deb ...
- Unpacking python3-yaml (6.0-3+b2) ...
- Selecting previously unselected package llvm-14-tools.
- Preparing to unpack .../38-llvm-14-tools_1%3a14.0.6-12_amd64.deb ...
- Unpacking llvm-14-tools (1:14.0.6-12) ...
- Selecting previously unselected package llvm-14-dev.
- Preparing to unpack .../39-llvm-14-dev_1%3a14.0.6-12_amd64.deb ...
- Unpacking llvm-14-dev (1:14.0.6-12) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../40-m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../41-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up media-types (10.0.0) ...
- Setting up libpipeline1:amd64 (1.5.7-1) ...
- Setting up libicu72:amd64 (72.1-3) ...
- Setting up binutils-multiarch (2.40-2) ...
- Setting up libyaml-0-2:amd64 (0.2.5-1) ...
- Setting up libpython3.11-stdlib:amd64 (3.11.2-6) ...
- Setting up m4 (1.4.19-3) ...
- Setting up libffi-dev:amd64 (3.4.4-1) ...
- Setting up libz3-4:amd64 (4.8.12-3.1) ...
- Setting up libpfm4:amd64 (4.13.0-1) ...
- Setting up libnspr4:amd64 (2:4.35-1) ...
- Setting up libncurses6:amd64 (6.4-4) ...
- Setting up binfmt-support (2.2.2-2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up icu-devtools (72.1-3) ...
- Setting up libgc1:amd64 (1:8.2.2-3) ...
- Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
- Setting up libc6-i386 (2.36-9+deb12u4) ...
- Setting up libicu-dev:amd64 (72.1-3) ...
- Setting up libxml2:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ...
- Setting up libz3-dev:amd64 (4.8.12-3.1) ...
- Setting up python3.11 (3.11.2-6) ...
- Setting up libncurses-dev:amd64 (6.4-4) ...
- Setting up libobjc4:amd64 (12.2.0-14) ...
- Setting up python3 (3.11.2-1+b1) ...
- running python rtupdate hooks for python3.11...
- running python post-rtupdate hooks for python3.11...
- Setting up libnss3:amd64 (2:3.87.1-1) ...
- Setting up libxml2-dev:amd64 (2.9.14+dfsg-1.3~deb12u1) ...
- Setting up lib32gcc-s1 (12.2.0-14) ...
- Setting up lib32stdc++6 (12.2.0-14) ...
- Setting up libllvm14:amd64 (1:14.0.6-12) ...
- Setting up libobjc-12-dev:amd64 (12.2.0-14) ...
- Setting up llvm-14-linker-tools (1:14.0.6-12) ...
- Setting up python3-pkg-resources (66.1.1-1) ...
- Setting up libtinfo-dev:amd64 (6.4-4) ...
- Setting up nss-plugin-pem:amd64 (1.0.8+1-1) ...
- Setting up libclang1-14 (1:14.0.6-12) ...
- Setting up python3-yaml (6.0-3+b2) ...
- Setting up python3-pygments (2.14.0+dfsg-1) ...
- Setting up llvm-14-runtime (1:14.0.6-12) ...
- Setting up libclang-rt-14-dev:amd64 (1:14.0.6-12) ...
- Setting up libclang-common-14-dev (1:14.0.6-12) ...
- Setting up libclang-cpp14 (1:14.0.6-12) ...
- Setting up libcurl3-nss:amd64 (7.88.1-10+deb12u5) ...
- Setting up llvm-14 (1:14.0.6-12) ...
- Setting up llvm-14-tools (1:14.0.6-12) ...
- Setting up clang-14 (1:14.0.6-12) ...
- Setting up clang (1:14.0-55.7~deb12u1) ...
- Setting up llvm-14-dev (1:14.0.6-12) ...
- Processing triggers for libc-bin (2.36-9+deb12u4) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.0  (cached)
-> retrieved bap-abi.2.5.0, bap-api.2.5.0, bap-arm.2.5.0, bap-build.2.5.0, bap-bundle.2.5.0, bap-c.2.5.0, bap-core-theory.2.5.0, bap-future.2.5.0, bap-knowledge.2.5.0, bap-main.2.5.0, bap-plugins.2.5.0, bap-primus.2.5.0, bap-recipe.2.5.0, bap-relation.2.5.0, bap-std.2.5.0, bap-strings.2.5.0, bap-thumb.2.5.0, bap-traces.2.5.0, bitvec.2.5.0, bitvec-binprot.2.5.0, bitvec-order.2.5.0, bitvec-sexp.2.5.0, graphlib.2.5.0, monads.2.5.0, ogre.2.5.0, regular.2.5.0  (cached)
-> retrieved base.v0.14.3  (cached)
-> retrieved base_bigstring.v0.14.0  (cached)
-> retrieved base_quickcheck.v0.14.1  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved bigstringaf.0.9.1  (cached)
-> retrieved bin_prot.v0.14.1  (cached)
-> retrieved camlzip.1.11  (cached)
-> retrieved cmdliner.1.2.0  (cached)
-> retrieved core_kernel.v0.14.2  (cached)
-> installed conf-clang.1
-> installed conf-m4.1
-> installed conf-perl.2
-> installed conf-which.1
-> installed conf-zlib.1
-> retrieved cppo.1.6.9  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-binutils.0.3
-> retrieved dune.3.15.0, dune-configurator.3.15.0, xdg.3.15.0  (cached)
-> retrieved fieldslib.v0.14.0  (cached)
-> retrieved fileutils.0.6.4  (cached)
-> retrieved jane-street-headers.v0.14.0  (cached)
-> retrieved jst-config.v0.14.1  (cached)
-> retrieved lambda-term.3.3.2  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lwt.5.7.0  (cached)
-> retrieved lwt_react.1.2.0  (cached)
-> retrieved mew.0.1.0  (cached)
-> retrieved mew_vi.0.5.0  (cached)
-> installed cmdliner.1.2.0
-> retrieved mmap.1.2.0  (cached)
-> retrieved num.1.5  (cached)
-> retrieved oasis.0.4.11  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.14.3  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ocamlgraph.2.1.0  (cached)
-> retrieved ocamlify.0.0.1  (cached)
-> retrieved ocamlmod.0.0.9  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved octavius.1.2.2  (cached)
-> retrieved parsexp.v0.14.2  (cached)
-> retrieved ppx_assert.v0.14.0  (cached)
-> retrieved ppx_bap.v0.14.0  (cached)
-> retrieved ppx_base.v0.14.0  (cached)
-> retrieved ppx_bench.v0.14.1  (cached)
-> retrieved ppx_bin_prot.v0.14.0  (cached)
-> retrieved ppx_cold.v0.14.0  (cached)
-> retrieved ppx_compare.v0.14.0  (cached)
-> retrieved ppx_custom_printf.v0.14.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_enumerate.v0.14.0  (cached)
-> retrieved ppx_expect.v0.14.2  (cached)
-> retrieved ppx_fields_conv.v0.14.2  (cached)
-> retrieved ppx_fixed_literal.v0.14.0  (cached)
-> retrieved ppx_hash.v0.14.0  (cached)
-> retrieved ppx_here.v0.14.0  (cached)
-> retrieved ppx_inline_test.v0.14.1  (cached)
-> retrieved ppx_jane.v0.14.0  (cached)
-> retrieved ppx_js_style.v0.14.1  (cached)
-> retrieved ppx_let.v0.14.0  (cached)
-> retrieved ppx_module_timer.v0.14.0  (cached)
-> retrieved ppx_optcomp.v0.14.3  (cached)
-> retrieved ppx_optional.v0.14.0  (cached)
-> retrieved ppx_pipebang.v0.14.0  (cached)
-> retrieved ppx_sexp_conv.v0.14.3  (cached)
-> retrieved ppx_sexp_message.v0.14.1  (cached)
-> retrieved ppx_sexp_value.v0.14.0  (cached)
-> retrieved ppx_stable.v0.14.1  (cached)
-> retrieved ppx_string.v0.14.1  (cached)
-> retrieved ppx_typerep_conv.v0.14.2  (cached)
-> retrieved ppx_variants_conv.v0.14.2  (cached)
-> retrieved ppxlib.0.25.1  (cached)
-> retrieved re.1.11.0  (cached)
-> retrieved react.1.2.2  (cached)
-> retrieved result.1.5  (cached)
-> installed seq.base
-> retrieved sexplib.v0.14.0  (cached)
-> retrieved sexplib0.v0.14.0  (cached)
-> retrieved splittable_random.v0.14.0  (cached)
-> retrieved stdio.v0.14.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved time_now.v0.14.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved trie.1.0.0  (cached)
-> retrieved typerep.v0.14.0  (cached)
-> retrieved uchar.0.0.2  (cached)
-> retrieved uri.4.4.0  (cached)
-> retrieved utop.2.14.0  (cached)
-> retrieved uucp.15.1.0  (cached)
-> retrieved uuidm.0.9.8  (cached)
-> retrieved uuseg.15.1.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> retrieved variantslib.v0.14.0  (cached)
-> retrieved zarith.1.13  (cached)
-> installed num.1.5
-> retrieved zed.3.2.3  (cached)
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed camlzip.1.11
-> installed ocamlbuild.0.14.3
-> installed uchar.0.0.2
-> installed zarith.1.13
-> installed ocamlify.0.0.1
-> installed ocamlmod.0.0.9
-> installed topkg.1.0.7
-> installed uuidm.0.9.8
-> installed uutf.1.0.3
-> installed react.1.2.2
-> installed dune.3.15.0
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> installed cppo.1.6.9
-> installed jane-street-headers.v0.14.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed octavius.1.2.2
-> installed ppx_derivers.1.2.1
-> installed re.1.11.0
-> installed result.1.5
-> installed sexplib0.v0.14.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed trie.1.0.0
-> installed mmap.1.2.0
-> installed ocplib-endian.1.2
-> installed mew.0.1.0
-> installed fileutils.0.6.4
-> installed xdg.3.15.0
-> installed mew_vi.0.5.0
-> installed dune-configurator.3.15.0
-> installed ocamlgraph.2.1.0
-> installed bigstringaf.0.9.1
-> installed angstrom.0.16.0
-> installed uri.4.4.0
-> installed lwt.5.7.0
-> installed lwt_react.1.2.0
-> installed logs.0.7.0
-> installed base.v0.14.3
-> installed fieldslib.v0.14.0
-> installed variantslib.v0.14.0
-> installed stdio.v0.14.0
-> installed typerep.v0.14.0
-> installed parsexp.v0.14.2
-> installed sexplib.v0.14.0
-> installed ppxlib.0.25.1
-> installed ppx_optcomp.v0.14.3
-> installed ppx_cold.v0.14.0
-> installed ppx_enumerate.v0.14.0
-> installed ppx_here.v0.14.0
-> installed ppx_fields_conv.v0.14.2
-> installed ppx_let.v0.14.0
-> installed ppx_stable.v0.14.1
-> installed ppx_variants_conv.v0.14.2
-> installed ppx_typerep_conv.v0.14.2
-> installed ppx_compare.v0.14.0
-> installed ppx_pipebang.v0.14.0
-> installed ppx_fixed_literal.v0.14.0
-> installed ppx_optional.v0.14.0
-> installed ppx_js_style.v0.14.1
-> installed ppx_sexp_conv.v0.14.3
-> installed ppx_hash.v0.14.0
-> installed uucp.15.1.0
-> installed ppx_sexp_value.v0.14.0
-> installed ppx_assert.v0.14.0
-> installed ppx_sexp_message.v0.14.1
-> installed ppx_custom_printf.v0.14.1
-> installed ppx_base.v0.14.0
-> installed uuseg.15.1.0
-> installed zed.3.2.3
-> installed jst-config.v0.14.1
-> installed oasis.0.4.11
-> installed bin_prot.v0.14.1
-> installed lambda-term.3.3.2
-> installed ppx_string.v0.14.1
-> installed time_now.v0.14.0
-> installed utop.2.14.0
-> installed ppx_bin_prot.v0.14.0
-> installed ppx_module_timer.v0.14.0
-> installed ppx_inline_test.v0.14.1
-> installed bap-relation.2.5.0
-> installed bap-recipe.2.5.0
-> installed bitvec.2.5.0
-> installed ppx_bench.v0.14.1
-> installed ppx_expect.v0.14.2
-> installed splittable_random.v0.14.0
-> installed bitvec-sexp.2.5.0
-> installed base_quickcheck.v0.14.1
-> installed ppx_bap.v0.14.0
-> installed ppx_jane.v0.14.0
-> installed bitvec-order.2.5.0
-> installed base_bigstring.v0.14.0
-> installed bitvec-binprot.2.5.0
-> installed core_kernel.v0.14.2
-> installed bap-build.2.5.0
-> installed bap-strings.2.5.0
-> installed bap-bundle.2.5.0
-> installed regular.2.5.0
-> installed monads.2.5.0
-> installed bap-future.2.5.0
-> installed ogre.2.5.0
-> installed bap-knowledge.2.5.0
-> installed bap-plugins.2.5.0
-> installed bap-main.2.5.0
-> installed graphlib.2.5.0
-> installed bap-core-theory.2.5.0
-> installed bap-std.2.5.0
-> installed bap-abi.2.5.0
-> installed bap-api.2.5.0
-> installed bap-traces.2.5.0
-> installed bap-c.2.5.0
-> installed bap-primus.2.5.0
-> installed bap-arm.2.5.0
-> installed bap-thumb.2.5.0
Done.
# Run eval $(opam env) to update the current shell environment
2024-04-18 05:08.53 ---> saved as "34c11546a6857acec5fc1aaa8dc7817f73cc9142d7ee0ebd1160c9bc629e4a9c"

/home/opam: (env OPAMCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMFIXUPCRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

/home/opam: (env OPAMUPGRADECRITERIA -removed,-count[avoid-version,changed],-count[version-lag,request],-count[version-lag,changed],-count[missing-depexts,changed],-changed)

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bap-thumb.2.5.0  (https://github.com/BinaryAnalysisPlatform/bap/archive/v2.5.0.tar.gz)
-> removed   bap-thumb.2.5.0
-> installed bap-thumb.2.5.0
Done.
# Run eval $(opam env) to update the current shell environment
2024-04-18 05:09.37 ---> saved as "554e68cce95aa931576914bfd0a156d4e3b531f09286b26ac9972316e6139996"

/home/opam: (run (shell  "opam reinstall --with-test --verbose bap-thumb.2.5.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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'bap-thumb.2.5.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 bap-thumb 2.5.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4:
-> retrieved bap-thumb.2.5.0  (cached)
Processing  2/4: [bap-thumb: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix=/home/opam/.opam/4.14" "--enable-thumb" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bap-thumb.2.5.0)
- File "oasis/common.setup.ml.in", line 573, characters 4-15:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 601, characters 19-36:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 608, characters 37-48:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 611, characters 17-31:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 1429, characters 16-33:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 1431, characters 22-38:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 1432, characters 14-26:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 1433, characters 11-23:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 1433, characters 28-40:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 1434, characters 11-23:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 1434, characters 28-41:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 1435, characters 11-24:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "oasis/common.setup.ml.in", line 1436, characters 11-23:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3176, characters 8-19:
- 3176 |         Stream.from
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3179, characters 21-32:
- 3179 |                match Stream.next st with
-                             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3182, characters 18-32:
- 3182 |              with Stream.Failure -> None)
-                          ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3184, characters 6-23:
- 3184 |       Genlex.make_lexer ["="] st_line
-              ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3187, characters 12-24:
- 3187 |       match Stream.npeek 3 lxr with
-                    ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3188, characters 9-21:
- 3188 |       | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                 ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3188, characters 26-36:
- 3188 |       | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                                  ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3188, characters 42-55:
- 3188 |       | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                                                  ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3189, characters 8-19:
- 3189 |         Stream.junk lxr; Stream.junk lxr; Stream.junk lxr;
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3189, characters 25-36:
- 3189 |         Stream.junk lxr; Stream.junk lxr; Stream.junk lxr;
-                                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3189, characters 42-53:
- 3189 |         Stream.junk lxr; Stream.junk lxr; Stream.junk lxr;
-                                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3201, characters 17-34:
- 3201 |         let st = Stream.of_channel chn in
-                         ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3326, characters 16-33:
- 3326 |   let var_lxr = Genlex.make_lexer []
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3345, characters 22-38:
- 3345 |              var_lxr (Stream.of_string var)
-                              ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3347, characters 17-29:
- 3347 |            match Stream.npeek 3 st with
-                         ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3348, characters 16-28:
- 3348 |              | [Genlex.Ident "utoh"; Genlex.Ident nm] ->
-                        ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3348, characters 37-49:
- 3348 |              | [Genlex.Ident "utoh"; Genlex.Ident nm] ->
-                                             ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3350, characters 16-28:
- 3350 |              | [Genlex.Ident "utoh"; Genlex.String s] ->
-                        ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3350, characters 37-50:
- 3350 |              | [Genlex.Ident "utoh"; Genlex.String s] ->
-                                             ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3352, characters 16-28:
- 3352 |              | [Genlex.Ident "ocaml_escaped"; Genlex.Ident nm] ->
-                        ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3352, characters 46-58:
- 3352 |              | [Genlex.Ident "ocaml_escaped"; Genlex.Ident nm] ->
-                                                      ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3354, characters 16-28:
- 3354 |              | [Genlex.Ident "ocaml_escaped"; Genlex.String s] ->
-                        ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3354, characters 46-59:
- 3354 |              | [Genlex.Ident "ocaml_escaped"; Genlex.String s] ->
-                                                      ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3356, characters 16-28:
- 3356 |              | [Genlex.Ident nm] ->
-                        ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3369, characters 13-25:
- 3369 |            | Stream.Error e ->
-                     ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 4518, characters 21-38:
- 4518 |            let lxr = Genlex.make_lexer [] (stream_of_reader rdr) in
-                             ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 4520, characters 19-31:
- 4520 |              match Stream.npeek 2 lxr with
-                           ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 4521, characters 16-29:
- 4521 |              | [Genlex.String e; Genlex.String d] ->
-                        ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 4521, characters 33-46:
- 4521 |              | [Genlex.String e; Genlex.String d] ->
-                                         ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 4523, characters 15-26:
- 4523 |                Stream.junk lxr; Stream.junk lxr;
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 4523, characters 32-43:
- 4523 |                Stream.junk lxr; Stream.junk lxr;
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- 
- Configuration:
- ocamlfind: ........................................... /home/opam/.opam/4.14/bin/ocamlfind
- ocamlc: .............................................. /home/opam/.opam/4.14/bin/ocamlc.opt
- ocamlopt: ............................................ /home/opam/.opam/4.14/bin/ocamlopt.opt
- ocamlbuild: .......................................... /home/opam/.opam/4.14/bin/ocamlbuild
- Package name: ........................................ bap
- Package version: ..................................... 2.5.0
- os_type: ............................................. Unix
- system: .............................................. linux
- architecture: ........................................ amd64
- ccomp_type: .......................................... cc
- ocaml_version: ....................................... 4.14.2
- standard_library_default: ............................ /home/opam/.opam/4.14/lib/ocaml
- standard_library: .................................... /home/opam/.opam/4.14/lib/ocaml
- bytecomp_c_compiler: ................................. gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 
- native_c_compiler: ................................... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 
- model: ............................................... default
- ext_obj: ............................................. .o
- ext_asm: ............................................. .s
- ext_lib: ............................................. .a
- ext_dll: ............................................. .so
- default_executable_name: ............................. a.out
- systhread_supported: ................................. true
- Install architecture-independent files dir: .......... /home/opam/.opam/4.14
- Install architecture-dependent files in dir: ......... $prefix
- User executables: .................................... $exec_prefix/bin
- System admin executables: ............................ $exec_prefix/sbin
- Program executables: ................................. $exec_prefix/libexec
- Read-only single-machine data: ....................... $prefix/etc
- Modifiable architecture-independent data: ............ $prefix/com
- Modifiable single-machine data: ...................... $prefix/var
- Object code libraries: ............................... $exec_prefix/lib
- Read-only arch-independent data root: ................ $prefix/share
- Read-only architecture-independent data: ............. $datarootdir
- Info documentation: .................................. $datarootdir/info
- Locale-dependent data: ............................... $datarootdir/locale
- Man documentation: ................................... $datarootdir/man
- Documentation root: .................................. $datarootdir/doc/$pkg_name
- HTML documentation: .................................. $docdir
- DVI documentation: ................................... $docdir
- PDF documentation: ................................... $docdir
- PS documentation: .................................... $docdir
- findlib_version: ..................................... 1.9.6
- is_native: ........................................... true
- suffix_program: ......................................
- Remove a file.: ...................................... rm -f
- Remove a directory.: ................................. rm -rf
- Turn ocaml debug flag on: ............................ true
- Turn ocaml profile flag on: .......................... false
- Compiler support generation of .cmxs.: ............... true
- OCamlbuild additional flags: .........................
- A default folder for plugins: ........................ /home/opam/.opam/4.14/lib/bap
- c++ compiler: ........................................ /usr/bin/c++
- C compiler optimization level: ....................... -O2
- Build every feature by default: ...................... false
- Enable development mode: ............................. false
- Build Thumb lifter: .................................. true
- Create documentations: ............................... true
- Compile tests executable and library and run them: ... false
- pkg_core_kernel: ..................................... /home/opam/.opam/4.14/lib/core_kernel
- pkg_ppx_bap: ......................................... /home/opam/.opam/4.14/lib/ppx_bap
- pkg_ogre: ............................................ /home/opam/.opam/4.14/lib/ogre
- pkg_bap_core_theory: ................................. /home/opam/.opam/4.14/lib/bap-core-theory
- pkg_bap_knowledge: ................................... /home/opam/.opam/4.14/lib/bap-knowledge
- pkg_bap_main: ........................................ /home/opam/.opam/4.14/lib/bap-main
- pkg_bap: ............................................. /home/opam/.opam/4.14/lib/bap
- pkg_bap_arm: ......................................... /home/opam/.opam/4.14/lib/bap-arm
- pkg_bitvec: .......................................... /home/opam/.opam/4.14/lib/bitvec
- 
Processing  2/4: [bap-thumb: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bap-thumb.2.5.0)
- ./setup.exe -quiet -build 
- ocamlfind ocamlopt -package unix -package ocamlbuild -linkpkg -package findlib myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -modules tools/postinstall.ml > tools/postinstall.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -I tools -o tools/postinstall.cmo tools/postinstall.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -I tools -o tools/postinstall.cmo tools/postinstall.ml
- File "tools/postinstall.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -I tools -o tools/postinstall.cmx tools/postinstall.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -I tools -o tools/postinstall.cmx tools/postinstall.ml
- File "tools/postinstall.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -linkpkg -g -linkpkg -I tools tools/postinstall.cmx -o tools/postinstall.native
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_main.mli > plugins/thumb/thumb_main.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_main.cmi plugins/thumb/thumb_main.mli
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_main.ml > plugins/thumb/thumb_main.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_bits.mli > plugins/thumb/thumb_bits.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_core.mli > plugins/thumb/thumb_core.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_opcodes.ml > plugins/thumb/thumb_opcodes.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_opcodes.cmo plugins/thumb/thumb_opcodes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_opcodes.cmo plugins/thumb/thumb_opcodes.ml
- File "plugins/thumb/thumb_opcodes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_core.cmi plugins/thumb/thumb_core.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_core.cmi plugins/thumb/thumb_core.mli
- File "plugins/thumb/thumb_core.mli", line 44, characters 12-14:
- 44 | module Make(CT : Theory.Core) : sig
-                  ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter CT.
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_branch.mli > plugins/thumb/thumb_branch.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_mem.mli > plugins/thumb/thumb_mem.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_mov.mli > plugins/thumb/thumb_mov.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_bits.cmi plugins/thumb/thumb_bits.mli
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_branch.cmi plugins/thumb/thumb_branch.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_branch.cmi plugins/thumb/thumb_branch.mli
- File "plugins/thumb/thumb_branch.mli", line 7, characters 12-14:
- 7 | module Make(CT : Theory.Core) : sig
-                 ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter CT.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_mem.cmi plugins/thumb/thumb_mem.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_mem.cmi plugins/thumb/thumb_mem.mli
- File "plugins/thumb/thumb_mem.mli", line 8, characters 12-16:
- 8 | module Make(Core : Theory.Core) : sig
-                 ^^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Core.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_mov.cmi plugins/thumb/thumb_mov.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_mov.cmi plugins/thumb/thumb_mov.mli
- File "plugins/thumb/thumb_mov.mli", line 5, characters 12-14:
- 5 | module Make(CT : Theory.Core) : sig
-                 ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter CT.
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_bits.ml > plugins/thumb/thumb_bits.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_branch.ml > plugins/thumb/thumb_branch.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_core.ml > plugins/thumb/thumb_core.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_mem.ml > plugins/thumb/thumb_mem.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -modules plugins/thumb/thumb_mov.ml > plugins/thumb/thumb_mov.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_main.cmo plugins/thumb/thumb_main.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_bits.cmo plugins/thumb/thumb_bits.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_branch.cmo plugins/thumb/thumb_branch.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_core.cmo plugins/thumb/thumb_core.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_mem.cmo plugins/thumb/thumb_mem.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_mov.cmo plugins/thumb/thumb_mov.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -I plugins/thumb plugins/thumb/thumb_opcodes.cmo plugins/thumb/thumb_core.cmo plugins/thumb/thumb_bits.cmo plugins/thumb/thumb_branch.cmo plugins/thumb/thumb_mem.cmo plugins/thumb/thumb_mov.cmo plugins/thumb/thumb_main.cmo -o plugins/thumb/thumb_plugin.cma
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_opcodes.cmx plugins/thumb/thumb_opcodes.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_opcodes.cmx plugins/thumb/thumb_opcodes.ml
- File "plugins/thumb/thumb_opcodes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_core.cmx plugins/thumb/thumb_core.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_bits.cmx plugins/thumb/thumb_bits.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_branch.cmx plugins/thumb/thumb_branch.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_mem.cmx plugins/thumb/thumb_mem.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_mov.cmx plugins/thumb/thumb_mov.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package ppx_bap -package ogre -package core_kernel -package bitvec -package bap-main -package bap-knowledge -package bap-core-theory -package bap-arm -package bap -I plugins/thumb -o plugins/thumb/thumb_main.cmx plugins/thumb/thumb_main.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -I plugins/thumb plugins/thumb/thumb_opcodes.cmx plugins/thumb/thumb_core.cmx plugins/thumb/thumb_bits.cmx plugins/thumb/thumb_branch.cmx plugins/thumb/thumb_mem.cmx plugins/thumb/thumb_mov.cmx plugins/thumb/thumb_main.cmx -o plugins/thumb/thumb_plugin.cmxa
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -linkall -I plugins/thumb plugins/thumb/thumb_plugin.cmxa -o plugins/thumb/thumb_plugin.cmxs
- + ocamlfind ocamlopt -package unix -package ocamlbuild -linkpkg -package findlib myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- File "myocamlbuild.ml", line 454, characters 8-19:
- 454 |         Stream.from
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 457, characters 21-32:
- 457 |                match Stream.next st with
-                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 460, characters 18-32:
- 460 |              with Stream.Failure -> None)
-                         ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 462, characters 6-23:
- 462 |       Genlex.make_lexer ["="] st_line
-             ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 465, characters 12-24:
- 465 |       match Stream.npeek 3 lxr with
-                   ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 466, characters 9-21:
- 466 |       | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 466, characters 26-36:
- 466 |       | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                                 ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 466, characters 42-55:
- 466 |       | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                                                 ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 467, characters 8-19:
- 467 |         Stream.junk lxr; Stream.junk lxr; Stream.junk lxr;
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 467, characters 25-36:
- 467 |         Stream.junk lxr; Stream.junk lxr; Stream.junk lxr;
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 467, characters 42-53:
- 467 |         Stream.junk lxr; Stream.junk lxr; Stream.junk lxr;
-                                                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 479, characters 17-34:
- 479 |         let st = Stream.of_channel chn in
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
-> compiled  bap-thumb.2.5.0
Processing  3/4: [bap-thumb: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "bap-thumb" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-thumb.2.5.0)
- ocamlfind: [WARNING] No such file: /home/opam/.opam/4.14/lib/bap-thumb/META
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "bap-plugin-thumb" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-thumb.2.5.0)
- Removed /home/opam/.opam/4.14/lib/bap-plugin-thumb/META
- Removed /home/opam/.opam/4.14/lib/bap-plugin-thumb
Processing  3/4: [bap-thumb: bapbundle remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "bapbundle" "remove" "thumb.plugin" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-thumb.2.5.0)
-> removed   bap-thumb.2.5.0
Processing  4/4: [bap-thumb: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bap-thumb.2.5.0)
- ./setup.exe -quiet -install 
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_plugin.cma
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_plugin.cmxa
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_plugin.a
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_plugin.cmxs
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_opcodes.cmx
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_mov.cmx
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_mem.cmx
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_core.cmx
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_branch.cmx
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_bits.cmx
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_main.cmx
- Installed /home/opam/.opam/4.14/lib/bap-plugin-thumb/META
- sh tools/build_plugins.sh
- ocamlfind ocamldep -package bap-plugin-thumb -package ppx_bap -package core_kernel -package bap -modules bap_plugin_thumb.ml > bap_plugin_thumb.ml.depends
- ocamlfind ocamlc -c -g -thread -package bap-plugin-thumb -package ppx_bap -package core_kernel -package bap -o bap_plugin_thumb.cmo bap_plugin_thumb.ml
- ocamlfind ocamlopt -c -g -thread -package bap-plugin-thumb -package ppx_bap -package core_kernel -package bap -o bap_plugin_thumb.cmx bap_plugin_thumb.ml
- ocamlfind ocamlopt -a -thread -package bap-plugin-thumb -package ppx_bap -package core_kernel -package bap bap_plugin_thumb.cmx -o bap_plugin_thumb.cmxa
- ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt . bap_plugin_thumb.cmxa -o bap_plugin_thumb.cmxs
- cp /home/opam/.opam/4.14/lib/bap-abi/bap_abi.cmxs .
- cp /home/opam/.opam/4.14/lib/bap-abi/bap_abi.cma .
- cp /home/opam/.opam/4.14/lib/bap-api/bap_api.cmxs .
- cp /home/opam/.opam/4.14/lib/bap-api/bap_api.cma .
- cp /home/opam/.opam/4.14/lib/bap-c/bap_c.cmxs .
- cp /home/opam/.opam/4.14/lib/bap-c/bap_c.cma .
- cp /home/opam/.opam/4.14/lib/bap-strings/bap_strings.cmxs .
- cp /home/opam/.opam/4.14/lib/bap-strings/bap_strings.cma .
- cp /home/opam/.opam/4.14/lib/bap-primus/bap_primus.cmxs .
- cp /home/opam/.opam/4.14/lib/bap-primus/bap_primus.cma .
- cp /home/opam/.opam/4.14/lib/bap-traces/traces.cmxs .
- cp /home/opam/.opam/4.14/lib/bap-traces/traces.cma .
- cp /home/opam/.opam/4.14/lib/bap-arm/bap-arm.cmxs .
- cp /home/opam/.opam/4.14/lib/bap-arm/bap-arm.cma .
- cp /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_plugin.cmxs .
- cp /home/opam/.opam/4.14/lib/bap-plugin-thumb/thumb_plugin.cma .
- ocamlfind ocamlc -a -custom -thread -package bap-plugin-thumb -package ppx_bap -package core_kernel -package bap bap_plugin_thumb.cmo -o bap_plugin_thumb.cma
- bapbundle pack -name bap_plugin_thumb -main bap_plugin_thumb.cmxs -main bap_plugin_thumb.cma -requires 'bap_abi=bap_abi.cmxs,bap_abi=bap_abi.cma,bap_api=bap_api.cmxs,bap_api=bap_api.cma,bap_c=bap_c.cmxs,bap_c=bap_c.cma,bap_strings=bap_strings.cmxs,bap_strings=bap_strings.cma,bap_primus=bap_primus.cmxs,bap_primus=bap_primus.cma,traces=traces.cmxs,traces=traces.cma,bap-arm=bap-arm.cmxs,bap-arm=bap-arm.cma,thumb_plugin=thumb_plugin.cmxs,thumb_plugin=thumb_plugin.cma' -provides bap_plugin_thumb bap_plugin_thumb.plugin
- ln -sf /home/opam/.opam/4.14/.opam-switch/build/bap-thumb.2.5.0/_build/built_plugins/thumb/_build/bap_plugin_thumb.plugin ..
- Finished updating plugins
- if [ -f ./postinstall.native ]; then ./postinstall.native; fi
- if [ -f ./postinstall.byte ]; then ./postinstall.byte; fi
- if [ -f ./postinstall ]; then ./postinstall; fi
-> installed bap-thumb.2.5.0
Done.
# Run eval $(opam env) to update the current shell environment
2024-04-18 05:10.22 ---> saved as "0439fc29c5a430d43d21fb2d21049f4593f10b97d1d3cb322aa9be633e2ee3d9"
Job succeeded
2024-04-18 05:10.31: Job succeeded