Build:
  1. 0
2025-09-18 12:21.28: New job: test bap-piqi.2.2.0 with re.1.14.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28544/head (8165ebc987d9de35b2fdba552fd80e37f5bd842d)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

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

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

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

2025-09-18 12:21.28: Waiting for resource in pool OCluster
2025-09-18 14:30.08: Waiting for worker…
2025-09-18 14:35.45: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 151ffce963 Merge pull request #28412 from andersfugmann/release-ocaml-protoc-plugin-6.2.0
Updating 151ffce963..8165ebc987
Fast-forward
 packages/re/re.1.14.0/opam | 54 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)
 create mode 100644 packages/re/re.1.14.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:ce7583a4463e517dda39f02d53e6fd4065fe70d94a26e5f51dcceb761272b5dc)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:ce7583a4463e517dda39f02d53e6fd4065fe70d94a26e5f51dcceb761272b5dc' locally
docker.io/ocaml/opam@sha256:ce7583a4463e517dda39f02d53e6fd4065fe70d94a26e5f51dcceb761272b5dc: Pulling from ocaml/opam
15b1d8a5ff03: Already exists
4d5eb3ed0208: Already exists
b44e00377829: Already exists
93018e586176: Already exists
587e432a29e2: Already exists
cdf304204754: Already exists
a444cfe202e3: Already exists
964991c828c0: Already exists
a94458d90f79: Already exists
e972c69afbc9: Already exists
3997d62e9de2: Already exists
d78ea61f72f9: Already exists
c68a1176424c: Already exists
63495b383f1a: Already exists
aa1a6204320d: Already exists
187b2023e0b3: Already exists
4787e66ddf43: Already exists
973a552bac2d: Already exists
8ad831d15267: Already exists
a8377bc33a29: Already exists
84a002321686: Already exists
4f4fb700ef54: Already exists
5d52c4f201d6: Already exists
68ef19bc296a: Already exists
1cda2aa0af1b: Already exists
769f31bcfe07: Already exists
b1d715eb0b34: Already exists
6b92d559de80: Already exists
1552f16d9075: Already exists
7a69328970da: Already exists
e66b1fc86e6f: Already exists
b14737f10b30: Already exists
4b7cf33f8dea: Already exists
0499d18bfcaa: Already exists
fb0e4a52e51b: Already exists
af1ea896d29c: Already exists
cff41317f198: Already exists
fbb90a49a8ca: Already exists
2f7f155032eb: Already exists
02f68e1ce660: Already exists
ecccefc40725: Pulling fs layer
b3c55c49d7c7: Pulling fs layer
086c23210c52: Pulling fs layer
be64ebf82eb2: Pulling fs layer
be64ebf82eb2: Waiting
b3c55c49d7c7: Download complete
086c23210c52: Verifying Checksum
086c23210c52: Download complete
be64ebf82eb2: Verifying Checksum
be64ebf82eb2: Download complete
ecccefc40725: Verifying Checksum
ecccefc40725: Download complete
ecccefc40725: Pull complete
b3c55c49d7c7: Pull complete
086c23210c52: Pull complete
be64ebf82eb2: Pull complete
Digest: sha256:ce7583a4463e517dda39f02d53e6fd4065fe70d94a26e5f51dcceb761272b5dc
Status: Downloaded newer image for ocaml/opam@sha256:ce7583a4463e517dda39f02d53e6fd4065fe70d94a26e5f51dcceb761272b5dc
2025-09-18 14:35.46 ---> using "f2c15438f4e8107ac42e1adfbd29c5c483ff0e5aaf05ff1291b0b30470c339be" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-09-18 14:35.46 ---> using "8e4815ff6b482deb2badd55f707e4331a2daf52d1f97e062604f979853124597" from cache

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

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

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-09-18 14:35.46 ---> using "0309994c25db3359b71c182dd526d9cd4b87f08f6fd345755107482f61709ee3" from cache

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

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-09-18 14:35.46 ---> using "88d8ec224acefa159471a25872197bf5efdd28e8b95159888107feac1f31a583" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-09-18 14:35.47 ---> using "2daa40f8cb706c5ad638d9f505ce5440193f9c6caab6f7a1374dce811b359b23" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-09-18 14:35.47 ---> using "c7e4a8d501560eb3ca7fc845c078f1e10620c9e07b60e1684df8a29206dc874f" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [40.4 kB]
- Fetched 131 kB in 0s (1342 kB/s)
- Reading package lists...
2025-09-18 14:35.47 ---> using "bf0d21ec1484e3c2798ebb3f62e67a8d7cca2892927fadac2a00726789e47b1e" from cache

/home/opam: (run (shell "opam pin add -k version -yn re.1.14.0 1.14.0"))
re is now pinned to version 1.14.0
2025-09-18 14:35.47 ---> using "3e93ff8b91dae5836d1785da64da20f4001f9fc3eeded7d2071cf7741852d20e" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2  (cached)
-> retrieved re.1.14.0  (cached)
-> installed dune.3.20.2
-> installed re.1.14.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 14:35.47 ---> using "3bdffe64ac10ca97ac896c7a816dde89b5172193da7b76c72d478fa5566dafe0" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall bap-piqi.2.2.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'bap-piqi.2.2.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-piqi.2.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 121 packages
  - install angstrom            0.16.1  [required by uri]
  - install bap-build           2.2.0   [required by bap-main]
  - install bap-bundle          2.2.0   [required by bap-std]
  - install bap-core-theory     2.2.0   [required by bap-std]
  - install bap-future          2.2.0   [required by bap-std]
  - install bap-knowledge       2.2.0   [required by bap-std]
  - install bap-main            2.2.0   [required by bap-std]
  - install bap-piqi            2.2.0
  - install bap-plugins         2.2.0   [required by bap-std]
  - install bap-recipe          2.2.0   [required by bap-main]
  - install bap-relation        2.2.0   [required by bap-std]
  - install bap-std             2.2.0   [required by bap-piqi]
  - install base                v0.14.3 [required by bap-main, bap-relation]
  - install base-bytes          base    [required by ocplib-endian]
  - install base64              3.5.1   [required by piqilib]
  - 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.10.0  [required by angstrom]
  - install bin_prot            v0.14.1 [required by bap-std]
  - install bitvec              2.2.0   [required by bap-std]
  - install bitvec-binprot      2.2.0   [required by bap-core-theory]
  - install bitvec-order        2.2.0   [required by bap-std]
  - install bitvec-sexp         2.2.0   [required by bap-core-theory]
  - install camlzip             1.13    [required by bap-std]
  - install cmdliner            1.3.0   [required by bap-piqi]
  - install conf-gmp            5       [required by zarith]
  - install conf-pkg-config     4       [required by conf-zlib, zarith]
  - install conf-zlib           1       [required by camlzip]
  - install core_kernel         v0.14.2 [required by bap-std]
  - install cppo                1.8.0   [required by utop]
  - install csexp               1.5.2   [required by dune-configurator]
  - install dune-configurator   3.20.2  [required by base]
  - install easy-format         1.3.4   [required by piqilib]
  - install fieldslib           v0.14.0 [required by core_kernel]
  - install fileutils           0.6.6   [required by bap-std]
  - install gen                 1.1     [required by sedlex]
  - install graphlib            2.2.0   [required by bap-std]
  - 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.9.0   [required by utop]
  - install lwt                 5.9.2   [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.2.0   [required by bap-std]
  - install num                 1.6     [required by sexplib]
  - install oasis               0.4.11  [required by bap-piqi]
  - install ocaml-compiler-libs v0.12.4 [required by ppxlib]
  - install ocaml-syntax-shims  1.0.0   [required by angstrom]
  - install ocamlbuild          0.16.1  [required by bap-build, oasis, xmlm]
  - install ocamlfind           1.9.8   [required by bap-std]
  - install ocamlgraph          2.2.0   [required by graphlib]
  - install ocamlify            0.0.1   [required by oasis]
  - install ocamlmod            0.1.1   [required by oasis]
  - install ocplib-endian       1.2     [required by lwt]
  - install octavius            1.2.2   [required by ppx_js_style]
  - install ogre                2.2.0   [required by bap-std]
  - install parsexp             v0.14.2 [required by bap-recipe]
  - install piqi                0.7.8   [required by bap-piqi]
  - install piqilib             0.6.16  [required by piqi]
  - install ppx_assert          v0.14.0 [required by core_kernel, ppx_bap]
  - install ppx_bap             v0.14.0 [required by bap-std]
  - 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, sedlex]
  - install react               1.2.2   [required by utop]
  - install regular             2.2.0   [required by bap-std]
  - install result              1.5     [required by bap-std]
  - install sedlex              2.5     [required by piqilib]
  - install seq                 base    [required by gen]
  - 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 bap-main]
  - install stdlib-shims        0.3.0   [required by piqi]
  - install stringext           1.6.0   [required by uri]
  - install time_now            v0.14.0 [required by core_kernel]
  - install topkg               1.1.0   [required by xmlm]
  - install trie                1.0.0   [required by mew]
  - install typerep             v0.14.0 [required by core_kernel]
  - install uchar               0.0.2   [required by sedlex]
  - install uri                 4.4.0   [required by bap-std]
  - install utop                2.16.0  [required by bap-std]
  - install uucp                17.0.0  [required by zed]
  - install uuidm               0.9.10  [required by bap-std]
  - install uuseg               17.0.0  [required by zed]
  - install uutf                1.0.4   [required by zed]
  - install variantslib         v0.14.0 [required by core_kernel]
  - install xdg                 3.20.2  [required by utop]
  - install xmlm                1.4.0   [required by piqilib]
  - install zarith              1.14    [required by bap-std]
  - install zed                 3.2.3   [required by utop]

The following system packages will first need to be installed:
    clang libgmp-dev pkg-config 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" "clang" "libgmp-dev" "pkg-config" "zlib1g-dev"
- 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 ... 20622 files and directories currently installed.)
- Preparing to unpack .../libpipeline1_1.5.8-1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.8-1) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../binfmt-support_2.2.2-7_amd64.deb ...
- Unpacking binfmt-support (2.2.2-7) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20969 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21455 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../01-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u1_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../02-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../03-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libclang-cpp19.
- Preparing to unpack .../04-libclang-cpp19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-cpp19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libgc1:amd64.
- Preparing to unpack .../05-libgc1_1%3a8.2.8-1_amd64.deb ...
- Unpacking libgc1:amd64 (1:8.2.8-1) ...
- Selecting previously unselected package libobjc4:amd64.
- Preparing to unpack .../06-libobjc4_14.2.0-19_amd64.deb ...
- Unpacking libobjc4:amd64 (14.2.0-19) ...
- Selecting previously unselected package libobjc-14-dev:amd64.
- Preparing to unpack .../07-libobjc-14-dev_14.2.0-19_amd64.deb ...
- Unpacking libobjc-14-dev:amd64 (14.2.0-19) ...
- Selecting previously unselected package libclang-common-19-dev:amd64.
- Preparing to unpack .../08-libclang-common-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-linker-tools.
- Preparing to unpack .../09-llvm-19-linker-tools_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-linker-tools (1:19.1.7-3+b1) ...
- Selecting previously unselected package libclang1-19.
- Preparing to unpack .../10-libclang1-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang1-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package clang-19.
- Preparing to unpack .../11-clang-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking clang-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package clang.
- Preparing to unpack .../12-clang_1%3a19.0-63_amd64.deb ...
- Unpacking clang (1:19.0-63) ...
- Selecting previously unselected package clang-tools-19.
- Preparing to unpack .../13-clang-tools-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking clang-tools-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libc6-i386.
- Preparing to unpack .../14-libc6-i386_2.41-12_amd64.deb ...
- Unpacking libc6-i386 (2.41-12) ...
- Selecting previously unselected package lib32gcc-s1.
- Preparing to unpack .../15-lib32gcc-s1_14.2.0-19_amd64.deb ...
- Unpacking lib32gcc-s1 (14.2.0-19) ...
- Selecting previously unselected package lib32stdc++6.
- Preparing to unpack .../16-lib32stdc++6_14.2.0-19_amd64.deb ...
- Unpacking lib32stdc++6 (14.2.0-19) ...
- Selecting previously unselected package libclang-rt-19-dev:amd64.
- Preparing to unpack .../17-libclang-rt-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../18-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../19-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../20-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../21-libncurses6_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses6:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../22-libncurses-dev_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libpfm4:amd64.
- Preparing to unpack .../23-libpfm4_4.13.0+git99-gc5587f9-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../24-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../25-libxml2-dev_2.12.7+dfsg+really2.9.14-2.1+deb13u1_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../26-libyaml-0-2_0.2.5-2_amd64.deb ...
- Unpacking libyaml-0-2:amd64 (0.2.5-2) ...
- Selecting previously unselected package libz3-dev:amd64.
- Preparing to unpack .../27-libz3-dev_4.13.3-1_amd64.deb ...
- Unpacking libz3-dev:amd64 (4.13.3-1) ...
- Selecting previously unselected package llvm-19-runtime.
- Preparing to unpack .../28-llvm-19-runtime_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-runtime (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19.
- Preparing to unpack .../29-llvm-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../30-python3-pygments_2.18.0+dfsg-2_all.deb ...
- Unpacking python3-pygments (2.18.0+dfsg-2) ...
- Selecting previously unselected package python3-yaml.
- Preparing to unpack .../31-python3-yaml_6.0.2-1+b2_amd64.deb ...
- Unpacking python3-yaml (6.0.2-1+b2) ...
- Selecting previously unselected package llvm-19-tools.
- Preparing to unpack .../32-llvm-19-tools_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-tools (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-dev.
- Preparing to unpack .../33-llvm-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-dev (1:19.1.7-3+b1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../34-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../35-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../36-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../37-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up media-types (13.0.0) ...
- Setting up libpipeline1:amd64 (1.5.8-1) ...
- Setting up libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ...
- Setting up libyaml-0-2:amd64 (0.2.5-2) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Setting up libncurses6:amd64 (6.5+20250216-2) ...
- Setting up binfmt-support (2.2.2-7) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgc1:amd64 (1:8.2.8-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libc6-i386 (2.41-12) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up libz3-dev:amd64 (4.13.3-1) ...
- Setting up libncurses-dev:amd64 (6.5+20250216-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libclang1-19 (1:19.1.7-3+b1) ...
- Setting up libobjc4:amd64 (14.2.0-19) ...
- Setting up libobjc-14-dev:amd64 (14.2.0-19) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u1) ...
- Setting up lib32gcc-s1 (14.2.0-19) ...
- Setting up lib32stdc++6 (14.2.0-19) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ...
- Setting up llvm-19-linker-tools (1:19.1.7-3+b1) ...
- Setting up llvm-19-runtime (1:19.1.7-3+b1) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libclang-cpp19 (1:19.1.7-3+b1) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up clang-19 (1:19.1.7-3+b1) ...
- Setting up clang-tools-19 (1:19.1.7-3+b1) ...
- Setting up python3-pygments (2.18.0+dfsg-2) ...
- Setting up clang (1:19.0-63) ...
- Setting up llvm-19 (1:19.1.7-3+b1) ...
- Setting up python3-yaml (6.0.2-1+b2) ...
- Setting up llvm-19-tools (1:19.1.7-3+b1) ...
- Setting up llvm-19-dev (1:19.1.7-3+b1) ...
- Processing triggers for libc-bin (2.41-12) ...
- Processing triggers for base-files (13.8+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved bap-build.2.2.0, bap-bundle.2.2.0, bap-core-theory.2.2.0, bap-future.2.2.0, bap-knowledge.2.2.0, bap-main.2.2.0, bap-piqi.2.2.0, bap-plugins.2.2.0, bap-recipe.2.2.0, bap-relation.2.2.0, bap-std.2.2.0, bitvec.2.2.0, bitvec-binprot.2.2.0, bitvec-order.2.2.0, bitvec-sexp.2.2.0, graphlib.2.2.0, monads.2.2.0, ogre.2.2.0, regular.2.2.0  (cached)
-> retrieved base.v0.14.3  (cached)
-> retrieved base64.3.5.1  (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.10.0  (cached)
-> retrieved bin_prot.v0.14.1  (cached)
-> retrieved camlzip.1.13  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved core_kernel.v0.14.2  (cached)
-> installed conf-gmp.5
-> retrieved cppo.1.8.0  (cached)
-> installed bigarray-compat.1.1.0
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> installed conf-zlib.1
-> installed base64.3.5.1
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.20.2, xdg.3.20.2  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> retrieved fieldslib.v0.14.0  (cached)
-> retrieved fileutils.0.6.6  (cached)
-> retrieved gen.1.1  (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.9.0  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved lwt_react.1.2.0  (cached)
-> installed cmdliner.1.3.0
-> installed cppo.1.8.0
-> installed jane-street-headers.v0.14.0
-> retrieved mew.0.1.0  (cached)
-> installed easy-format.1.3.4
-> retrieved mew_vi.0.5.0  (cached)
-> retrieved mmap.1.2.0  (cached)
-> retrieved num.1.6  (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.16.1  (cached)
-> installed mmap.1.2.0
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocamlify.0.0.1  (cached)
-> retrieved ocamlmod.0.1.1  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved octavius.1.2.2  (cached)
-> retrieved parsexp.v0.14.2  (cached)
-> retrieved piqi.0.7.8  (cached)
-> retrieved piqilib.0.6.16  (cached)
-> installed fileutils.0.6.6
-> 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)
-> installed xdg.3.20.2
-> 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)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_sexp_value.v0.14.0  (cached)
-> installed ocamlmod.0.1.1
-> 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)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved react.1.2.2  (cached)
-> retrieved result.1.5  (cached)
-> retrieved sedlex.2.5  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib.v0.14.0  (cached)
-> installed ocaml-compiler-libs.v0.12.4
-> 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.1.0  (cached)
-> retrieved trie.1.0.0  (cached)
-> retrieved typerep.v0.14.0  (cached)
-> retrieved uchar.0.0.2  (cached)
-> installed dune-configurator.3.20.2
-> installed result.1.5
-> retrieved uri.4.4.0  (cached)
-> installed trie.1.0.0
-> retrieved utop.2.16.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed octavius.1.2.2
-> retrieved uucp.17.0.0  (cached)
-> retrieved uuidm.0.9.10  (cached)
-> installed sexplib0.v0.14.0
-> installed num.1.6
-> installed mew.0.1.0
-> retrieved uuseg.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved variantslib.v0.14.0  (cached)
-> retrieved xmlm.1.4.0  (cached)
-> retrieved zarith.1.14  (cached)
-> retrieved zed.3.2.3  (cached)
-> installed bigstringaf.0.10.0
-> installed gen.1.1
-> installed angstrom.0.16.1
-> installed ocamlgraph.2.2.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocplib-endian.1.2
-> installed camlzip.1.13
-> installed uri.4.4.0
-> installed ocamlbuild.0.16.1
-> installed uchar.0.0.2
-> installed lwt.5.9.2
-> installed zarith.1.14
-> 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 ocamlify.0.0.1
-> installed parsexp.v0.14.2
-> installed topkg.1.1.0
-> installed sexplib.v0.14.0
-> installed uuidm.0.9.10
-> installed logs.0.9.0
-> installed react.1.2.2
-> installed uutf.1.0.4
-> installed xmlm.1.4.0
-> installed lwt_react.1.2.0
-> installed mew_vi.0.5.0
-> installed ppxlib.0.25.1
-> installed ppx_optcomp.v0.14.3
-> installed ppx_let.v0.14.0
-> installed ppx_cold.v0.14.0
-> installed ppx_variants_conv.v0.14.2
-> installed ppx_here.v0.14.0
-> installed ppx_stable.v0.14.1
-> installed ppx_fixed_literal.v0.14.0
-> installed ppx_enumerate.v0.14.0
-> installed ppx_typerep_conv.v0.14.2
-> installed ppx_fields_conv.v0.14.2
-> installed ppx_compare.v0.14.0
-> installed ppx_optional.v0.14.0
-> installed ppx_pipebang.v0.14.0
-> installed ppx_sexp_conv.v0.14.3
-> installed sedlex.2.5
-> installed ppx_js_style.v0.14.1
-> installed ppx_hash.v0.14.0
-> installed ppx_sexp_message.v0.14.1
-> installed ppx_sexp_value.v0.14.0
-> installed ppx_assert.v0.14.0
-> installed ppx_custom_printf.v0.14.1
-> installed ppx_base.v0.14.0
-> installed jst-config.v0.14.1
-> installed piqilib.0.6.16
-> installed bin_prot.v0.14.1
-> installed time_now.v0.14.0
-> installed ppx_string.v0.14.1
-> installed piqi.0.7.8
-> installed ppx_bin_prot.v0.14.0
-> installed ppx_module_timer.v0.14.0
-> installed ppx_inline_test.v0.14.1
-> installed ppx_bench.v0.14.1
-> installed ppx_expect.v0.14.2
-> installed splittable_random.v0.14.0
-> installed base_quickcheck.v0.14.1
-> installed ppx_bap.v0.14.0
-> installed ppx_jane.v0.14.0
-> installed base_bigstring.v0.14.0
-> installed oasis.0.4.11
-> installed uucp.17.0.0
-> installed uuseg.17.0.0
-> installed bitvec.2.2.0
-> installed bap-recipe.2.2.0
-> installed bap-relation.2.2.0
-> installed zed.3.2.3
-> installed bitvec-sexp.2.2.0
-> installed bitvec-binprot.2.2.0
-> installed lambda-term.3.3.2
-> installed utop.2.16.0
-> installed bitvec-order.2.2.0
-> installed core_kernel.v0.14.2
-> installed bap-build.2.2.0
-> installed bap-bundle.2.2.0
-> installed regular.2.2.0
-> installed monads.2.2.0
-> installed bap-future.2.2.0
-> installed ogre.2.2.0
-> installed bap-knowledge.2.2.0
-> installed bap-plugins.2.2.0
-> installed bap-main.2.2.0
-> installed bap-core-theory.2.2.0
-> installed graphlib.2.2.0
-> installed bap-std.2.2.0
-> installed bap-piqi.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 14:54.07 ---> saved as "b2b54cbe4cf9cc7b2b2a57ae5ef4827d2445ad5b0e23a912396b98aec4dfdfb5"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bap-piqi.2.2.0  (https://opam.ocaml.org/cache)
-> removed   bap-piqi.2.2.0
-> installed bap-piqi.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 14:55.01 ---> saved as "72e94b36c41afd3c419b0b96f7fbaed8c6cce26f7336ff5ca8285da0e94b93e8"

/home/opam: (run (shell  "opam reinstall --with-test --verbose bap-piqi.2.2.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'bap-piqi.2.2.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-piqi 2.2.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [bap-piqi.2.2.0: extract]
-> retrieved bap-piqi.2.2.0  (cached)
Processing  2/4: [bap-piqi: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix=/home/opam/.opam/4.14" "--mandir=/home/opam/.opam/4.14/man" "--enable-piqi-printers" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bap-piqi.2.2.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.2.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: ................................... /home/opam/.opam/4.14/man
- Documentation root: .................................. $datarootdir/doc/$pkg_name
- HTML documentation: .................................. $docdir
- DVI documentation: ................................... $docdir
- PDF documentation: ................................... $docdir
- PS documentation: .................................... $docdir
- findlib_version: ..................................... 1.9.8
- 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
- piqic_path: .......................................... /home/opam/.opam/4.14/bin/piqic-ocaml
- piqic_flags: .........................................
- piqic: ............................................... /home/opam/.opam/4.14/bin/piqic-ocaml
- c++ compiler: ........................................ /usr/bin/c++
- C compiler optimization level: ....................... -O2
- Build every feature by default: ...................... false
- Enable development mode: ............................. false
- Build piqi serialization library and plugin: ......... true
- Create documentations: ............................... true
- Compile tests executable and library and run them: ... false
- piqi: ................................................ /home/opam/.opam/4.14/bin/piqi
- pkg_piqirun: ......................................... /home/opam/.opam/4.14/lib/piqirun
- pkg_piqirun_pb: ...................................... /home/opam/.opam/4.14/lib/piqirun/pb
- pkg_piqirun_ext: ..................................... /home/opam/.opam/4.14/lib/piqirun/ext
- pkg_bap: ............................................. /home/opam/.opam/4.14/lib/bap
- 
Processing  2/4: [bap-piqi: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bap-piqi.2.2.0)
- ./setup.exe -quiet -build 
- + ocamlfind ocamlc -config
- + ocamlfind ocamlopt -package unix -package ocamlbuild -linkpkg -package findlib myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- + ocamlfind ocamlc -config
- + /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 piqirun.pb -package piqirun.ext -package piqirun -package bap -modules lib/bap_piqi/bir_piqi.mli > lib/bap_piqi/bir_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/bir_piqi.cmi lib/bap_piqi/bir_piqi.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package piqirun.pb -package piqirun.ext -package piqirun -package bap -modules lib/bap_piqi/bir_piqi.ml > lib/bap_piqi/bir_piqi.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package piqirun.pb -package piqirun.ext -package piqirun -package bap -modules lib/bap_piqi/bil_piqi.mli > lib/bap_piqi/bil_piqi.mli.depends
- + /home/opam/.opam/4.14/bin/piqic-ocaml -C lib/bap_piqi -I ../lib/bap_piqi lib/bap_piqi/stmt.piqi --multi-format
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package piqirun.pb -package piqirun.ext -package piqirun -package bap -modules lib/bap_piqi/stmt_piqi.ml > lib/bap_piqi/stmt_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/stmt_piqi.cmo lib/bap_piqi/stmt_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/stmt_piqi.cmo lib/bap_piqi/stmt_piqi.ml
- File "lib/bap_piqi/stmt_piqi.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/piqic-ocaml -C lib/bap_piqi -I ../lib/bap_piqi lib/bap_piqi/ir.piqi --multi-format
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package piqirun.pb -package piqirun.ext -package piqirun -package bap -modules lib/bap_piqi/ir_piqi.ml > lib/bap_piqi/ir_piqi.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package piqirun.pb -package piqirun.ext -package piqirun -package bap -modules lib/bap_piqi/ir_piqi_ext.ml > lib/bap_piqi/ir_piqi_ext.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/ir_piqi.cmo lib/bap_piqi/ir_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/ir_piqi.cmo lib/bap_piqi/ir_piqi.ml
- File "lib/bap_piqi/ir_piqi.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package piqirun.pb -package piqirun.ext -package piqirun -package bap -modules lib/bap_piqi/stmt_piqi_ext.ml > lib/bap_piqi/stmt_piqi_ext.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/stmt_piqi_ext.cmo lib/bap_piqi/stmt_piqi_ext.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/stmt_piqi_ext.cmo lib/bap_piqi/stmt_piqi_ext.ml
- File "lib/bap_piqi/stmt_piqi_ext.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/bil_piqi.cmi lib/bap_piqi/bil_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/ir_piqi_ext.cmo lib/bap_piqi/ir_piqi_ext.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/ir_piqi_ext.cmo lib/bap_piqi/ir_piqi_ext.ml
- File "lib/bap_piqi/ir_piqi_ext.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package piqirun.pb -package piqirun.ext -package piqirun -package bap -modules lib/bap_piqi/bil_piqi.ml > lib/bap_piqi/bil_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/bir_piqi.cmo lib/bap_piqi/bir_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/bil_piqi.cmo lib/bap_piqi/bil_piqi.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -I lib/bap_piqi lib/bap_piqi/stmt_piqi.cmo lib/bap_piqi/stmt_piqi_ext.cmo lib/bap_piqi/bil_piqi.cmo lib/bap_piqi/ir_piqi.cmo lib/bap_piqi/ir_piqi_ext.cmo lib/bap_piqi/bir_piqi.cmo -o lib/bap_piqi/bap-piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/stmt_piqi.cmx lib/bap_piqi/stmt_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/stmt_piqi.cmx lib/bap_piqi/stmt_piqi.ml
- File "lib/bap_piqi/stmt_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/stmt_piqi_ext.cmx lib/bap_piqi/stmt_piqi_ext.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/stmt_piqi_ext.cmx lib/bap_piqi/stmt_piqi_ext.ml
- File "lib/bap_piqi/stmt_piqi_ext.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/ir_piqi.cmx lib/bap_piqi/ir_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/ir_piqi.cmx lib/bap_piqi/ir_piqi.ml
- File "lib/bap_piqi/ir_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/bil_piqi.cmx lib/bap_piqi/bil_piqi.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/ir_piqi_ext.cmx lib/bap_piqi/ir_piqi_ext.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/ir_piqi_ext.cmx lib/bap_piqi/ir_piqi_ext.ml
- File "lib/bap_piqi/ir_piqi_ext.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 piqirun.pb -package piqirun.ext -package piqirun -package bap -I lib/bap_piqi -o lib/bap_piqi/bir_piqi.cmx lib/bap_piqi/bir_piqi.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -I lib/bap_piqi lib/bap_piqi/stmt_piqi.cmx lib/bap_piqi/stmt_piqi_ext.cmx lib/bap_piqi/bil_piqi.cmx lib/bap_piqi/ir_piqi.cmx lib/bap_piqi/ir_piqi_ext.cmx lib/bap_piqi/bir_piqi.cmx -o lib/bap_piqi/bap-piqi.cmxa
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -linkall -I lib/bap_piqi lib/bap_piqi/bap-piqi.cmxa -o lib/bap_piqi/bap-piqi.cmxs
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package piqirun.pb -package piqirun.ext -package piqirun -package bap -modules plugins/piqi_printers/piqi_printers_main.mli > plugins/piqi_printers/piqi_printers_main.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -I lib/bap_piqi -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package piqirun.pb -package piqirun.ext -package piqirun -package bap -I plugins/piqi_printers -I lib/bap_piqi -o plugins/piqi_printers/piqi_printers_main.cmi plugins/piqi_printers/piqi_printers_main.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package piqirun.pb -package piqirun.ext -package piqirun -package bap -modules plugins/piqi_printers/piqi_printers_main.ml > plugins/piqi_printers/piqi_printers_main.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -I lib/bap_piqi -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package piqirun.pb -package piqirun.ext -package piqirun -package bap -I plugins/piqi_printers -I lib/bap_piqi -o plugins/piqi_printers/piqi_printers_main.cmo plugins/piqi_printers/piqi_printers_main.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -I plugins/piqi_printers plugins/piqi_printers/piqi_printers_main.cmo -o plugins/piqi_printers/piqi_printers_plugin.cma
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -I lib/bap_piqi -w +a-4-6-7-9-27-29-32..42-44-45-48-50-60 -package piqirun.pb -package piqirun.ext -package piqirun -package bap -I plugins/piqi_printers -I lib/bap_piqi -o plugins/piqi_printers/piqi_printers_main.cmx plugins/piqi_printers/piqi_printers_main.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -I plugins/piqi_printers plugins/piqi_printers/piqi_printers_main.cmx -o plugins/piqi_printers/piqi_printers_plugin.cmxa
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -linkall -I plugins/piqi_printers plugins/piqi_printers/piqi_printers_plugin.cmxa -o plugins/piqi_printers/piqi_printers_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-piqi.2.2.0
Processing  3/4: [bap-piqi: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "bap-plugin-piqi_printers" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-piqi.2.2.0)
- Removed /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers/META
- Removed /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "bap-piqi" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-piqi.2.2.0)
- Removed /home/opam/.opam/4.14/lib/bap-piqi/META
- Removed /home/opam/.opam/4.14/lib/bap-piqi
Processing  3/4: [bap-piqi: bapbundle remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "bapbundle" "remove" "piqi_printers.plugin" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-piqi.2.2.0)
Processing  3/4: [bap-piqi: rm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "-f" "/home/opam/.opam/4.14/share/bap/exp.piqi" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-piqi.2.2.0)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "-f" "/home/opam/.opam/4.14/share/bap/ir.piqi" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-piqi.2.2.0)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "-f" "/home/opam/.opam/4.14/share/bap/stmt.piqi" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-piqi.2.2.0)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "-f" "/home/opam/.opam/4.14/share/bap/type.piqi" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/bap-piqi.2.2.0)
-> removed   bap-piqi.2.2.0
Processing  4/4: [bap-piqi: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bap-piqi.2.2.0)
- ./setup.exe -quiet -install 
- Installed /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers/piqi_printers_plugin.cma
- Installed /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers/piqi_printers_plugin.cmxa
- Installed /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers/piqi_printers_plugin.a
- Installed /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers/piqi_printers_plugin.cmxs
- Installed /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers/piqi_printers_main.cmx
- Installed /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers/META
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bir_piqi.mli
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bil_piqi.mli
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bap-piqi.cma
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bap-piqi.cmxa
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bap-piqi.a
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bap-piqi.cmxs
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bil_piqi.cmi
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bil_piqi.cmti
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bil_piqi.cmt
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bil_piqi.annot
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bir_piqi.cmi
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bir_piqi.cmti
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bir_piqi.cmt
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bir_piqi.annot
- Installed /home/opam/.opam/4.14/lib/bap-piqi/ir_piqi_ext.cmx
- Installed /home/opam/.opam/4.14/lib/bap-piqi/ir_piqi.cmx
- Installed /home/opam/.opam/4.14/lib/bap-piqi/stmt_piqi_ext.cmx
- Installed /home/opam/.opam/4.14/lib/bap-piqi/stmt_piqi.cmx
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bil_piqi.cmx
- Installed /home/opam/.opam/4.14/lib/bap-piqi/bir_piqi.cmx
- Installed /home/opam/.opam/4.14/lib/bap-piqi/META
- sh tools/build_plugins.sh
- + ocamlfind ocamlc -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package bap-plugin-piqi_printers -package ppx_bap -package core_kernel -package bap -modules bap_plugin_piqi_printers.ml > bap_plugin_piqi_printers.ml.depends
- + ocamlfind ocamlc -c -g -thread -package bap-plugin-piqi_printers -package ppx_bap -package core_kernel -package bap -o bap_plugin_piqi_printers.cmo bap_plugin_piqi_printers.ml
- + ocamlfind ocamlopt -c -g -thread -package bap-plugin-piqi_printers -package ppx_bap -package core_kernel -package bap -o bap_plugin_piqi_printers.cmx bap_plugin_piqi_printers.ml
- + ocamlfind ocamlopt -a -thread -package bap-plugin-piqi_printers -package ppx_bap -package core_kernel -package bap bap_plugin_piqi_printers.cmx -o bap_plugin_piqi_printers.cmxa
- + ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt . bap_plugin_piqi_printers.cmxa -o bap_plugin_piqi_printers.cmxs
- + ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt /home/opam/.opam/4.14/lib/base64 /home/opam/.opam/4.14/lib/base64/base64.cmxa -o base64.cmxs
- + ocamlfind ocamlc -linkall -a /home/opam/.opam/4.14/lib/base64/base64.cma -o base64.cma
- + ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt /home/opam/.opam/4.14/lib/easy-format /home/opam/.opam/4.14/lib/easy-format/easy_format.cmxa -o easy_format.cmxs
- + ocamlfind ocamlc -linkall -a /home/opam/.opam/4.14/lib/easy-format/easy_format.cma -o easy_format.cma
- + ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt /home/opam/.opam/4.14/lib/gen /home/opam/.opam/4.14/lib/gen/gen.cmxa -o gen.cmxs
- + ocamlfind ocamlc -linkall -a /home/opam/.opam/4.14/lib/gen/gen.cma -o gen.cma
- + ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt /home/opam/.opam/4.14/lib/sedlex /home/opam/.opam/4.14/lib/sedlex/sedlex.cmxa -o sedlex.cmxs
- + ocamlfind ocamlc -linkall -a /home/opam/.opam/4.14/lib/sedlex/sedlex.cma -o sedlex.cma
- + ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt /home/opam/.opam/4.14/lib/xmlm /home/opam/.opam/4.14/lib/xmlm/xmlm.cmxa -o xmlm.cmxs
- + ocamlfind ocamlc -linkall -a /home/opam/.opam/4.14/lib/xmlm/xmlm.cma -o xmlm.cma
- + ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt /home/opam/.opam/4.14/lib/piqilib /home/opam/.opam/4.14/lib/piqilib/piqilib.cmxa -o piqilib.cmxs
- + ocamlfind ocamlc -linkall -a /home/opam/.opam/4.14/lib/piqilib/piqilib.cma -o piqilib.cma
- + ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt /home/opam/.opam/4.14/lib/piqirun/pb /home/opam/.opam/4.14/lib/piqirun/pb/piqirun.cmxa -o piqirun.cmxs
- + ocamlfind ocamlc -linkall -a /home/opam/.opam/4.14/lib/piqirun/pb/piqirun.cma -o piqirun.cma
- + ocamlfind ocamlopt -shared -linkall -ccopt -L -ccopt /home/opam/.opam/4.14/lib/piqirun/ext /home/opam/.opam/4.14/lib/piqirun/ext/piqirun_ext.cmxa -o piqirun_ext.cmxs
- + ocamlfind ocamlc -linkall -a /home/opam/.opam/4.14/lib/piqirun/ext/piqirun_ext.cma -o piqirun_ext.cma
- + cp /home/opam/.opam/4.14/lib/bap-piqi/bap-piqi.cmxs .
- + cp /home/opam/.opam/4.14/lib/bap-piqi/bap-piqi.cma .
- + cp /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers/piqi_printers_plugin.cmxs .
- + cp /home/opam/.opam/4.14/lib/bap-plugin-piqi_printers/piqi_printers_plugin.cma .
- + ocamlfind ocamlc -a -custom -thread -package bap-plugin-piqi_printers -package ppx_bap -package core_kernel -package bap bap_plugin_piqi_printers.cmo -o bap_plugin_piqi_printers.cma
- + bapbundle pack -name bap_plugin_piqi_printers -main bap_plugin_piqi_printers.cmxs -main bap_plugin_piqi_printers.cma -requires 'base64=base64.cmxs,base64=base64.cma,easy_format=easy_format.cmxs,easy_format=easy_format.cma,gen=gen.cmxs,gen=gen.cma,sedlex=sedlex.cmxs,sedlex=sedlex.cma,xmlm=xmlm.cmxs,xmlm=xmlm.cma,piqilib=piqilib.cmxs,piqilib=piqilib.cma,piqirun=piqirun.cmxs,piqirun=piqirun.cma,piqirun_ext=piqirun_ext.cmxs,piqirun_ext=piqirun_ext.cma,bap-piqi=bap-piqi.cmxs,bap-piqi=bap-piqi.cma,piqi_printers_plugin=piqi_printers_plugin.cmxs,piqi_printers_plugin=piqi_printers_plugin.cma' -provides bap_plugin_piqi_printers bap_plugin_piqi_printers.plugin
- + ln -sf /home/opam/.opam/4.14/.opam-switch/build/bap-piqi.2.2.0/_build/built_plugins/piqi_printers/_build/bap_plugin_piqi_printers.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-piqi.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 14:55.54 ---> saved as "10871b062266a54e8460c425025c57a3929efd10bab581f1a828b7e04129067e"
Job succeeded
2025-09-18 14:56.01: Job succeeded