(not at the head of any monitored branch or PR)
2026-04-30 02:05.07: New job: test llvm.18-static with dune-configurator.3.23.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
                              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/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit d1c56642b8ca7e1166c90bfe0c74f38007bbad58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune-configurator.3.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall dune-configurator.3.23.0~alpha2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune-configurator.3.23.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall llvm.18-static; \
    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" != 'llvm.18-static' && 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 llvm.18-static) || true
RUN opam reinstall --with-test --verbose llvm.18-static; \
    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" != 'llvm.18-static' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

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

2026-04-30 02:05.07: Waiting for resource in pool OCluster
2026-04-30 11:37.10: Waiting for worker…
2026-04-30 11:39.15: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files:  59% (11205/18887)
Updating files:  60% (11333/18887)
Updating files:  61% (11522/18887)
Updating files:  62% (11710/18887)
Updating files:  63% (11899/18887)
Updating files:  64% (12088/18887)
Updating files:  65% (12277/18887)
Updating files:  66% (12466/18887)
Updating files:  67% (12655/18887)
Updating files:  68% (12844/18887)
Updating files:  69% (13033/18887)
Updating files:  70% (13221/18887)
Updating files:  71% (13410/18887)
Updating files:  72% (13599/18887)
Updating files:  73% (13788/18887)
Updating files:  74% (13977/18887)
Updating files:  75% (14166/18887)
Updating files:  76% (14355/18887)
Updating files:  77% (14543/18887)
Updating files:  78% (14732/18887)
Updating files:  79% (14921/18887)
Updating files:  80% (15110/18887)
Updating files:  81% (15299/18887)
Updating files:  82% (15488/18887)
Updating files:  83% (15677/18887)
Updating files:  84% (15866/18887)
Updating files:  85% (16054/18887)
Updating files:  86% (16243/18887)
Updating files:  87% (16432/18887)
Updating files:  88% (16621/18887)
Updating files:  89% (16810/18887)
Updating files:  90% (16999/18887)
Updating files:  91% (17188/18887)
Updating files:  92% (17377/18887)
Updating files:  93% (17565/18887)
Updating files:  94% (17754/18887)
Updating files:  95% (17943/18887)
Updating files:  96% (18132/18887)
Updating files:  97% (18321/18887)
Updating files:  98% (18510/18887)
Updating files:  99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at d1c56642b8 Merge pull request #29820 from jmid/core-0.17.1-bound
Merge made by the 'ort' strategy.
 .../chrome-trace/chrome-trace.3.23.0~alpha2/opam   | 39 +++++++++++
 .../dune-action-plugin.3.23.0~alpha2/opam          | 52 ++++++++++++++
 .../dune-action-trace.3.23.0~alpha2/opam           | 39 +++++++++++
 .../dune-build-info.3.23.0~alpha2/opam             | 45 ++++++++++++
 .../dune-configurator.3.23.0~alpha2/opam           | 49 +++++++++++++
 packages/dune-glob/dune-glob.3.23.0~alpha2/opam    | 42 ++++++++++++
 .../dune-private-libs.3.23.0~alpha2/opam           | 50 ++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam   | 41 +++++++++++
 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam      | 44 ++++++++++++
 packages/dune-site/dune-site.3.23.0~alpha2/opam    | 37 ++++++++++
 packages/dune/dune.3.23.0~alpha2/opam              | 80 ++++++++++++++++++++++
 packages/dyn/dyn.3.23.0~alpha2/opam                | 40 +++++++++++
 packages/fs-io/fs-io.3.23.0~alpha2/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam  | 43 ++++++++++++
 packages/ordering/ordering.3.23.0~alpha2/opam      | 38 ++++++++++
 packages/stdune/stdune.3.23.0~alpha2/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.23.0~alpha2/opam     | 38 ++++++++++
 packages/xdg/xdg.3.23.0~alpha2/opam                | 39 +++++++++++
 18 files changed, 801 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353' locally
docker.io/ocaml/opam@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353: Pulling from ocaml/opam
3b32e3bb7338: Pulling fs layer
745aa02d649b: Pulling fs layer
bc737f5d3c43: Pulling fs layer
435aae15a5aa: Pulling fs layer
0c18c39f6bae: Pulling fs layer
eef74b82df23: Pulling fs layer
f7d9cf0406d8: Pulling fs layer
01a1dc37e798: Pulling fs layer
4960811e07ec: Pulling fs layer
be2894c36d5e: Pulling fs layer
b5a017ae191d: Pulling fs layer
3ba39ce4e9c9: Pulling fs layer
1db570dbe1c8: Pulling fs layer
753bb4b44994: Pulling fs layer
b5a1e811909d: Pulling fs layer
6f3d83ba47b6: Pulling fs layer
002305272cbf: Pulling fs layer
249535cd82cd: Pulling fs layer
87fe8c2a0989: Pulling fs layer
b6932f04a343: Pulling fs layer
17b274223ca8: Pulling fs layer
4f4fb700ef54: Pulling fs layer
924952a8fbf8: Pulling fs layer
0c18c39f6bae: Waiting
435aae15a5aa: Waiting
17671b650f63: Pulling fs layer
eef74b82df23: Waiting
9fe75d873195: Pulling fs layer
87fe8c2a0989: Waiting
24216535046d: Pulling fs layer
b6932f04a343: Waiting
f7d9cf0406d8: Waiting
b5a1e811909d: Waiting
ac2e1c9e90df: Pulling fs layer
01a1dc37e798: Waiting
c2126be13b26: Pulling fs layer
6f3d83ba47b6: Waiting
3ba39ce4e9c9: Waiting
01ff22a5eb70: Pulling fs layer
4960811e07ec: Waiting
be2894c36d5e: Waiting
50415235a68f: Pulling fs layer
b5a017ae191d: Waiting
1db570dbe1c8: Waiting
deb6182b549b: Pulling fs layer
753bb4b44994: Waiting
249535cd82cd: Waiting
002305272cbf: Waiting
ad728fb9a18c: Pulling fs layer
a36bcae85a3d: Pulling fs layer
17b274223ca8: Waiting
17671b650f63: Waiting
9fe75d873195: Waiting
1c746fdc6a3a: Pulling fs layer
4351b787b295: Pulling fs layer
24216535046d: Waiting
380abb093977: Pulling fs layer
ac2e1c9e90df: Waiting
0fc1b10f3fd9: Pulling fs layer
c2126be13b26: Waiting
01ff22a5eb70: Waiting
966bc35978c3: Pulling fs layer
ae53b61ccb9e: Pulling fs layer
50415235a68f: Waiting
d8ada9072f1a: Pulling fs layer
deb6182b549b: Waiting
ad728fb9a18c: Waiting
70f923473ca1: Pulling fs layer
a36bcae85a3d: Waiting
df81036acc4a: Pulling fs layer
1b9253ea29a0: Pulling fs layer
14d08e4f5c89: Pulling fs layer
4351b787b295: Waiting
380abb093977: Waiting
0fc1b10f3fd9: Waiting
966bc35978c3: Waiting
ae53b61ccb9e: Waiting
d8ada9072f1a: Waiting
70f923473ca1: Waiting
df81036acc4a: Waiting
1b9253ea29a0: Waiting
14d08e4f5c89: Waiting
924952a8fbf8: Waiting
4f4fb700ef54: Waiting
1c746fdc6a3a: Waiting
745aa02d649b: Verifying Checksum
745aa02d649b: Download complete
bc737f5d3c43: Verifying Checksum
bc737f5d3c43: Download complete
0c18c39f6bae: Verifying Checksum
0c18c39f6bae: Download complete
3b32e3bb7338: Verifying Checksum
3b32e3bb7338: Download complete
435aae15a5aa: Download complete
f7d9cf0406d8: Verifying Checksum
f7d9cf0406d8: Download complete
4960811e07ec: Verifying Checksum
4960811e07ec: Download complete
01a1dc37e798: Verifying Checksum
01a1dc37e798: Download complete
be2894c36d5e: Verifying Checksum
be2894c36d5e: Download complete
b5a017ae191d: Verifying Checksum
b5a017ae191d: Download complete
1db570dbe1c8: Verifying Checksum
1db570dbe1c8: Download complete
3ba39ce4e9c9: Verifying Checksum
3ba39ce4e9c9: Download complete
b5a1e811909d: Download complete
753bb4b44994: Verifying Checksum
753bb4b44994: Download complete
002305272cbf: Verifying Checksum
002305272cbf: Download complete
6f3d83ba47b6: Verifying Checksum
6f3d83ba47b6: Download complete
87fe8c2a0989: Download complete
249535cd82cd: Verifying Checksum
249535cd82cd: Download complete
b6932f04a343: Verifying Checksum
b6932f04a343: Download complete
3b32e3bb7338: Pull complete
745aa02d649b: Pull complete
bc737f5d3c43: Pull complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
17b274223ca8: Download complete
924952a8fbf8: Verifying Checksum
924952a8fbf8: Download complete
17671b650f63: Download complete
435aae15a5aa: Pull complete
0c18c39f6bae: Pull complete
9fe75d873195: Verifying Checksum
9fe75d873195: Download complete
24216535046d: Verifying Checksum
24216535046d: Download complete
eef74b82df23: Verifying Checksum
eef74b82df23: Download complete
ac2e1c9e90df: Verifying Checksum
ac2e1c9e90df: Download complete
01ff22a5eb70: Verifying Checksum
01ff22a5eb70: Download complete
c2126be13b26: Verifying Checksum
c2126be13b26: Download complete
50415235a68f: Verifying Checksum
50415235a68f: Download complete
a36bcae85a3d: Download complete
ad728fb9a18c: Verifying Checksum
ad728fb9a18c: Download complete
deb6182b549b: Verifying Checksum
deb6182b549b: Download complete
380abb093977: Verifying Checksum
380abb093977: Download complete
1c746fdc6a3a: Verifying Checksum
1c746fdc6a3a: Download complete
966bc35978c3: Download complete
ae53b61ccb9e: Download complete
0fc1b10f3fd9: Verifying Checksum
0fc1b10f3fd9: Download complete
d8ada9072f1a: Verifying Checksum
d8ada9072f1a: Download complete
df81036acc4a: Verifying Checksum
df81036acc4a: Download complete
1b9253ea29a0: Verifying Checksum
1b9253ea29a0: Download complete
4351b787b295: Verifying Checksum
4351b787b295: Download complete
14d08e4f5c89: Verifying Checksum
14d08e4f5c89: Download complete
70f923473ca1: Verifying Checksum
70f923473ca1: Download complete
eef74b82df23: Pull complete
f7d9cf0406d8: Pull complete
01a1dc37e798: Pull complete
4960811e07ec: Pull complete
be2894c36d5e: Pull complete
b5a017ae191d: Pull complete
3ba39ce4e9c9: Pull complete
1db570dbe1c8: Pull complete
753bb4b44994: Pull complete
b5a1e811909d: Pull complete
6f3d83ba47b6: Pull complete
002305272cbf: Pull complete
249535cd82cd: Pull complete
87fe8c2a0989: Pull complete
b6932f04a343: Pull complete
17b274223ca8: Pull complete
4f4fb700ef54: Pull complete
924952a8fbf8: Pull complete
17671b650f63: Pull complete
9fe75d873195: Pull complete
24216535046d: Pull complete
ac2e1c9e90df: Pull complete
c2126be13b26: Pull complete
01ff22a5eb70: Pull complete
50415235a68f: Pull complete
deb6182b549b: Pull complete
ad728fb9a18c: Pull complete
a36bcae85a3d: Pull complete
1c746fdc6a3a: Pull complete
4351b787b295: Pull complete
380abb093977: Pull complete
0fc1b10f3fd9: Pull complete
966bc35978c3: Pull complete
ae53b61ccb9e: Pull complete
d8ada9072f1a: Pull complete
70f923473ca1: Pull complete
df81036acc4a: Pull complete
1b9253ea29a0: Pull complete
14d08e4f5c89: Pull complete
Digest: sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
Status: Downloaded newer image for ocaml/opam@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
2026-04-30 11:39.23 ---> using "59750879172620501422dd230c4db220684ca7fe3e97409754eb72dcd3390183" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-30 11:39.23 ---> using "b9ebb375f27da820f646269f579489455309b96c19083cd92f7f6ddd05a4b5f2" 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
2026-04-30 11:39.23 ---> using "a861010f9e8d58738e62217a8c0fc067b85ae67b915e1ef93e08d814bb3c914c" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.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.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, 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.3
2026-04-30 11:39.23 ---> using "a880c606232c92d84d818c349c45696fe9be139917bfa5f7b1065b497e8df441" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-30 11:39.23 ---> using "47c085e53aa5880966ff9fc1e1e12a4661255166181f7931a397db06034201cf" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 11:39.25 ---> using "4f46738dfb91aa0cd6670022d574de26b7ba05050d8f85957ea4872d96399e01" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 11:39.25 ---> using "f445e8c26fbca2dd0e343fb9cad949aab8e50ebe8f19361a10c799b6322ab39c" 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 [129 kB]
- Fetched 219 kB in 0s (855 kB/s)
- Reading package lists...
- 
2026-04-30 11:39.25 ---> using "b966a5b49a15ba3eb63ca44315c18e89b0e8b1ab5327a74622eb8f27705503f7" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.23.0~alpha2 3.23.0~alpha2"))
dune-configurator is now pinned to version 3.23.0~alpha2
2026-04-30 11:39.25 ---> using "9626eb3f72c6886eed38db70a806f24da7d64d25588b5416dc43cf8d67558751" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.23.0~alpha2, dune-configurator.3.23.0~alpha2  (cached)
-> installed dune.3.23.0~alpha2
-> installed csexp.1.5.2
-> installed dune-configurator.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 11:39.25 ---> using "79495b309dbba2c640b58413499799bf6eb0b6e53b5025f16354c21ab3266ac1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall llvm.18-static;\
                        \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\" != 'llvm.18-static' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
llvm.18-static is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
  - install conf-bash        1         [required by conf-llvm-static]
  - install conf-cmake       1         [required by llvm]
  - install conf-llvm-static 18        [required by llvm]
  - install ctypes           0.24.0    [required by llvm]
  - install integers         0.7.0     [required by ctypes]
  - install llvm             18-static
  - install ocamlfind        1.9.8     [required by llvm]
  - install stdlib-shims     0.3.0     [required by integers]

The following system packages will first need to be installed:
    cmake libzstd-dev llvm-18-dev 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" "cmake" "libzstd-dev" "llvm-18-dev" "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 ... 20623 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 ... 20970 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 ... 21456 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../01-cmake-data_3.31.6-2_all.deb ...
- Unpacking cmake-data (3.31.6-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../02-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libarchive13t64:amd64.
- Preparing to unpack .../03-libarchive13t64_3.7.4-4_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-4) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../04-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../05-librhash1_1.4.5-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../06-libuv1t64_1.50.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../07-cmake_3.31.6-2_amd64.deb ...
- Unpacking cmake (3.31.6-2) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../08-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm18:amd64.
- Preparing to unpack .../09-libllvm18_1%3a18.1.8-18+b1_amd64.deb ...
- Unpacking libllvm18:amd64 (1:18.1.8-18+b1) ...
- Selecting previously unselected package libclang-cpp18.
- Preparing to unpack .../10-libclang-cpp18_1%3a18.1.8-18+b1_amd64.deb ...
- Unpacking libclang-cpp18 (1:18.1.8-18+b1) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../11-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../12-libncurses6_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses6:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../13-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 .../14-libpfm4_4.13.0+git99-gc5587f9-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../15-libxml2-dev_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../16-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 .../17-libz3-dev_4.13.3-1_amd64.deb ...
- Unpacking libz3-dev:amd64 (4.13.3-1) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../18-libzstd-dev_1.5.7+dfsg-1_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Selecting previously unselected package llvm-18-runtime.
- Preparing to unpack .../19-llvm-18-runtime_1%3a18.1.8-18+b1_amd64.deb ...
- Unpacking llvm-18-runtime (1:18.1.8-18+b1) ...
- Selecting previously unselected package llvm-18-linker-tools.
- Preparing to unpack .../20-llvm-18-linker-tools_1%3a18.1.8-18+b1_amd64.deb ...
- Unpacking llvm-18-linker-tools (1:18.1.8-18+b1) ...
- Selecting previously unselected package llvm-18.
- Preparing to unpack .../21-llvm-18_1%3a18.1.8-18+b1_amd64.deb ...
- Unpacking llvm-18 (1:18.1.8-18+b1) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../22-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 .../23-python3-yaml_6.0.2-1+b2_amd64.deb ...
- Unpacking python3-yaml (6.0.2-1+b2) ...
- Selecting previously unselected package llvm-18-tools.
- Preparing to unpack .../24-llvm-18-tools_1%3a18.1.8-18+b1_amd64.deb ...
- Unpacking llvm-18-tools (1:18.1.8-18+b1) ...
- Selecting previously unselected package llvm-18-dev.
- Preparing to unpack .../25-llvm-18-dev_1%3a18.1.8-18+b1_amd64.deb ...
- Unpacking llvm-18-dev (1:18.1.8-18+b1) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../26-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 libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Setting up libyaml-0-2:amd64 (0.2.5-2) ...
- Setting up libuv1t64:amd64 (1.50.0-2) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- 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 zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up cmake-data (3.31.6-2) ...
- Setting up librhash1:amd64 (1.4.5-1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libllvm18:amd64 (1:18.1.8-18+b1) ...
- Setting up libz3-dev:amd64 (4.13.3-1) ...
- Setting up libncurses-dev:amd64 (6.5+20250216-2) ...
- Setting up libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up llvm-18-linker-tools (1:18.1.8-18+b1) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up llvm-18-runtime (1:18.1.8-18+b1) ...
- Setting up libclang-cpp18 (1:18.1.8-18+b1) ...
- Setting up libarchive13t64:amd64 (3.7.4-4) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up python3-pygments (2.18.0+dfsg-2) ...
- Setting up llvm-18 (1:18.1.8-18+b1) ...
- Setting up cmake (3.31.6-2) ...
- Setting up python3-yaml (6.0.2-1+b2) ...
- Setting up llvm-18-tools (1:18.1.8-18+b1) ...
- Setting up llvm-18-dev (1:18.1.8-18+b1) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-cmake.1  (cached)
-> retrieved conf-llvm-static.18  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> installed conf-bash.1
-> installed conf-cmake.1
-> retrieved integers.0.7.0  (cached)
-> installed conf-llvm-static.18
-> retrieved llvm.18-static  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed ocamlfind.1.9.8
-> installed ctypes.0.24.0
-> installed llvm.18-static
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 11:43.46 ---> saved as "bc8108dbe0b55b9ade102e846f7f2c7bafa42e57afd7eadfc614baf52ca853c3"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved llvm.18-static  (https://opam.ocaml.org/cache)
-> removed   llvm.18-static
-> installed llvm.18-static
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 11:46.53 ---> saved as "efdf2fe26587893b529bdf988cac1b8a11b7a781252ea36dbc3f1ba297e0f1c4"

/home/opam: (run (shell  "opam reinstall --with-test --verbose llvm.18-static;\
                        \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\" != 'llvm.18-static' && 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 llvm 18-static

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [llvm.18-static: extract]
-> retrieved llvm.18-static  (cached)
[llvm: patch] applying AddOCaml.cmake.patch
Processing  2/4: [llvm: bash install.sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "bash" "-ex" "install.sh" "build" "--llvm-config" "llvm-config-18" "--libdir" "/home/opam/.opam/4.14/lib" "--cmake" "cmake" "--make" "make" "--link-mode" "static" (CWD=/home/opam/.opam/4.14/.opam-switch/build/llvm.18-static)
- + action=build
- + shift
- + llvm_config=
- + libdir=
- + cmake=
- + make=
- + link_mode=
- + use_homebrew=FALSE
- + [[ 10 -gt 0 ]]
- + case $1 in
- + [[ 10 -lt 2 ]]
- + llvm_config=llvm-config-18
- + shift 2
- + [[ 8 -gt 0 ]]
- + case $1 in
- + [[ 8 -lt 2 ]]
- + libdir=/home/opam/.opam/4.14/lib
- + shift 2
- + [[ 6 -gt 0 ]]
- + case $1 in
- + [[ 6 -lt 2 ]]
- + cmake=cmake
- + shift 2
- + [[ 4 -gt 0 ]]
- + case $1 in
- + [[ 4 -lt 2 ]]
- + make=make
- + shift 2
- + [[ 2 -gt 0 ]]
- + case $1 in
- + [[ 2 -lt 2 ]]
- + link_mode=static
- + shift 2
- + [[ 0 -gt 0 ]]
- + case "$action" in
- + llvm_build
- + mkdir build
- ++ llvm-config-18 --build-mode
- ++ llvm-config-18 --targets-built
- ++ filter_experimental_targets
- ++ sed 's/ /;/g'
- ++ sed s/CSKY//g
- ++ sed s/M68k//g
- ++ sed s/Xtensa//g
- ++ xargs
- ++ sed s/SPIRV//g
- ++ sed s/DirectX//g
- ++ sed s/ARC//g
- ++ llvm-config-18 --libdir
- ++ '[' static = shared ']'
- ++ echo FALSE
- + cmake -Bbuild -Sllvm -DCMAKE_BUILD_TYPE=RelWithDebInfo '-DLLVM_TARGETS_TO_BUILD=AArch64;AMDGPU;ARM;AVR;BPF;Hexagon;Lanai;LoongArch;Mips;MSP430;NVPTX;PowerPC;RISCV;Sparc;SystemZ;VE;WebAssembly;X86;XCore' -DLLVM_OCAML_EXTERNAL_LLVM_LIBDIR=/usr/lib/llvm-18/lib -DLLVM_LINK_LLVM_DYLIB=FALSE -DLLVM_OCAML_OUT_OF_TREE=TRUE -DLLVM_OCAML_INSTALL_PATH=/home/opam/.opam/4.14/lib -DLLVM_OCAML_USE_HOMEBREW=FALSE
- CMake Deprecation Warning at /home/opam/.opam/4.14/.opam-switch/build/llvm.18-static/cmake/Modules/CMakePolicy.cmake:6 (cmake_policy):
-   The OLD behavior for policy CMP0114 will be removed from a future version
-   of CMake.
- 
-   The cmake-policies(7) manual explains that the OLD behaviors of all
-   policies are deprecated and that a policy should be set to OLD only under
-   specific short-term circumstances.  Projects should be ported to the NEW
-   behavior and not rely on setting a policy to OLD.
- Call Stack (most recent call first):
-   CMakeLists.txt:6 (include)
- 
- 
- CMake Deprecation Warning at /home/opam/.opam/4.14/.opam-switch/build/llvm.18-static/cmake/Modules/CMakePolicy.cmake:11 (cmake_policy):
-   The OLD behavior for policy CMP0116 will be removed from a future version
-   of CMake.
- 
-   The cmake-policies(7) manual explains that the OLD behaviors of all
-   policies are deprecated and that a policy should be set to OLD only under
-   specific short-term circumstances.  Projects should be ported to the NEW
-   behavior and not rely on setting a policy to OLD.
- Call Stack (most recent call first):
-   CMakeLists.txt:6 (include)
- 
- 
- -- The C compiler identification is GNU 14.2.0
- -- The CXX compiler identification is GNU 14.2.0
- -- The ASM compiler identification is GNU
- -- Found assembler: /usr/bin/cc
- -- Detecting C compiler ABI info
- -- Detecting C compiler ABI info - done
- -- Check for working C compiler: /usr/bin/cc - skipped
- -- Detecting C compile features
- -- Detecting C compile features - done
- -- Detecting CXX compiler ABI info
- -- Detecting CXX compiler ABI info - done
- -- Check for working CXX compiler: /usr/bin/c++ - skipped
- -- Detecting CXX compile features
- -- Detecting CXX compile features - done
- -- Found Python3: /usr/bin/python3 (found suitable version "3.13.5", minimum required is "3.6") found components: Interpreter
- -- Looking for dlfcn.h
- -- Looking for dlfcn.h - found
- -- Looking for errno.h
- -- Looking for errno.h - found
- -- Looking for fcntl.h
- -- Looking for fcntl.h - found
- -- Looking for link.h
- -- Looking for link.h - found
- -- Looking for malloc/malloc.h
- -- Looking for malloc/malloc.h - not found
- -- Looking for pthread.h
- -- Looking for pthread.h - found
- -- Looking for signal.h
- -- Looking for signal.h - found
- -- Looking for sys/ioctl.h
- -- Looking for sys/ioctl.h - found
- -- Looking for sys/mman.h
- -- Looking for sys/mman.h - found
- -- Looking for sys/param.h
- -- Looking for sys/param.h - found
- -- Looking for sys/resource.h
- -- Looking for sys/resource.h - found
- -- Looking for sys/stat.h
- -- Looking for sys/stat.h - found
- -- Looking for sys/time.h
- -- Looking for sys/time.h - found
- -- Looking for sys/types.h
- -- Looking for sys/types.h - found
- -- Looking for sysexits.h
- -- Looking for sysexits.h - found
- -- Looking for termios.h
- -- Looking for termios.h - found
- -- Looking for unistd.h
- -- Looking for unistd.h - found
- -- Looking for valgrind/valgrind.h
- -- Looking for valgrind/valgrind.h - not found
- -- Looking for fenv.h
- -- Looking for fenv.h - found
- -- Looking for FE_ALL_EXCEPT
- -- Looking for FE_ALL_EXCEPT - found
- -- Looking for FE_INEXACT
- -- Looking for FE_INEXACT - found
- -- Performing Test HAVE_BUILTIN_THREAD_POINTER
- -- Performing Test HAVE_BUILTIN_THREAD_POINTER - Success
- -- Looking for mach/mach.h
- -- Looking for mach/mach.h - not found
- -- Looking for CrashReporterClient.h
- -- Looking for CrashReporterClient.h - not found
- -- Looking for linux/magic.h
- -- Looking for linux/magic.h - found
- -- Looking for pthread_create in pthread
- -- Looking for pthread_create in pthread - found
- -- Looking for pthread_rwlock_init in pthread
- -- Looking for pthread_rwlock_init in pthread - found
- -- Looking for pthread_mutex_lock in pthread
- -- Looking for pthread_mutex_lock in pthread - found
- -- Looking for dlopen in dl
- -- Looking for dlopen in dl - found
- -- Looking for clock_gettime in rt
- -- Looking for clock_gettime in rt - found
- -- Looking for pfm_initialize in pfm
- -- Looking for pfm_initialize in pfm - not found
- -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
- -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
- -- Found Threads: TRUE
- -- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version "1.3.1")
- -- Looking for compress2
- -- Looking for compress2 - found
- -- Found LibXml2: /usr/lib/x86_64-linux-gnu/libxml2.so (found version "2.9.14")
- -- Looking for xmlReadMemory
- -- Looking for xmlReadMemory - found
- -- Could NOT find LibEdit (missing: LibEdit_INCLUDE_DIRS LibEdit_LIBRARIES) 
- -- Performing Test Terminfo_LINKABLE
- -- Performing Test Terminfo_LINKABLE - Success
- -- Found Terminfo: /usr/lib/x86_64-linux-gnu/libtinfo.so
- -- Looking for arc4random
- -- Looking for arc4random - found
- -- Looking for backtrace
- -- Looking for backtrace - found
- -- backtrace facility detected in default set of libraries
- -- Found Backtrace: /usr/include
- -- Performing Test C_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW
- -- Performing Test C_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW - Failed
- -- Looking for __register_frame
- -- Looking for __register_frame - found
- -- Looking for __deregister_frame
- -- Looking for __deregister_frame - found
- -- Looking for __unw_add_dynamic_fde
- -- Looking for __unw_add_dynamic_fde - not found
- -- Looking for _Unwind_Backtrace
- -- Looking for _Unwind_Backtrace - found
- -- Looking for getpagesize
- -- Looking for getpagesize - found
- -- Looking for sysconf
- -- Looking for sysconf - found
- -- Looking for getrusage
- -- Looking for getrusage - found
- -- Looking for setrlimit
- -- Looking for setrlimit - found
- -- Looking for isatty
- -- Looking for isatty - found
- -- Looking for futimens
- -- Looking for futimens - found
- -- Looking for futimes
- -- Looking for futimes - found
- -- Looking for sigaltstack
- -- Looking for sigaltstack - found
- -- Looking for mallctl
- -- Looking for mallctl - not found
- -- Looking for mallinfo
- -- Looking for mallinfo - found
- -- Looking for mallinfo2
- -- Looking for mallinfo2 - found
- -- Looking for malloc_zone_statistics
- -- Looking for malloc_zone_statistics - not found
- -- Looking for getrlimit
- -- Looking for getrlimit - found
- -- Looking for posix_spawn
- -- Looking for posix_spawn - found
- -- Looking for pread
- -- Looking for pread - found
- -- Looking for sbrk
- -- Looking for sbrk - found
- -- Looking for strerror_r
- -- Looking for strerror_r - found
- -- Looking for strerror_s
- -- Looking for strerror_s - not found
- -- Looking for setenv
- -- Looking for setenv - found
- -- Performing Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC
- -- Performing Test HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC - Failed
- -- Performing Test HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
- -- Performing Test HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC - Success
- -- Looking for __GLIBC__
- -- Looking for __GLIBC__ - found
- -- Looking for pthread_getname_np
- -- Looking for pthread_getname_np - found
- -- Looking for pthread_setname_np
- -- Looking for pthread_setname_np - found
- -- Looking for dlopen
- -- Looking for dlopen - found
- -- Looking for dladdr
- -- Looking for dladdr - found
- -- Looking for proc_pid_rusage
- -- Looking for proc_pid_rusage - not found
- -- Performing Test HAVE_CXX_ATOMICS_WITHOUT_LIB
- -- Performing Test HAVE_CXX_ATOMICS_WITHOUT_LIB - Success
- -- Performing Test HAVE_CXX_ATOMICS64_WITHOUT_LIB
- -- Performing Test HAVE_CXX_ATOMICS64_WITHOUT_LIB - Success
- -- Performing Test LLVM_HAS_ATOMICS
- -- Performing Test LLVM_HAS_ATOMICS - Success
- -- Performing Test SUPPORTS_VARIADIC_MACROS_FLAG
- -- Performing Test SUPPORTS_VARIADIC_MACROS_FLAG - Success
- -- Performing Test SUPPORTS_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS_FLAG
- -- Performing Test SUPPORTS_GNU_ZERO_VARIADIC_MACRO_ARGUMENTS_FLAG - Failed
- -- Performing Test HAS_MAYBE_UNINITIALIZED
- -- Performing Test HAS_MAYBE_UNINITIALIZED - Success
- -- LLVM host triple: x86_64-unknown-linux-gnu
- -- Native target architecture is X86
- -- Threads enabled.
- -- Doxygen disabled.
- -- Found OCaml: /home/opam/.opam/4.14/bin/ocamlfind
- -- OCaml bindings enabled.
- -- Found Python module pygments
- -- Found Python module pygments.lexers.c_cpp
- -- Found Python module yaml
- -- LLVM default target triple: x86_64-unknown-linux-gnu
- -- Performing Test C_SUPPORTS_FPIC
- -- Performing Test C_SUPPORTS_FPIC - Success
- -- Performing Test CXX_SUPPORTS_FPIC
- -- Performing Test CXX_SUPPORTS_FPIC - Success
- -- Building with -fPIC
- -- Performing Test C_SUPPORTS_FNO_SEMANTIC_INTERPOSITION
- -- Performing Test C_SUPPORTS_FNO_SEMANTIC_INTERPOSITION - Success
- -- Performing Test CXX_SUPPORTS_FNO_SEMANTIC_INTERPOSITION
- -- Performing Test CXX_SUPPORTS_FNO_SEMANTIC_INTERPOSITION - Success
- -- Performing Test SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG
- -- Performing Test SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG - Success
- -- Performing Test C_SUPPORTS_WERROR_DATE_TIME
- -- Performing Test C_SUPPORTS_WERROR_DATE_TIME - Success
- -- Performing Test CXX_SUPPORTS_WERROR_DATE_TIME
- -- Performing Test CXX_SUPPORTS_WERROR_DATE_TIME - Success
- -- Performing Test CXX_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW
- -- Performing Test CXX_SUPPORTS_WERROR_UNGUARDED_AVAILABILITY_NEW - Failed
- -- Performing Test C_SUPPORTS_CMAKE_CXX_FLAGS
- -- Performing Test C_SUPPORTS_CMAKE_CXX_FLAGS - Success
- -- Performing Test CXX_SUPPORTS_CMAKE_CXX_FLAGS
- -- Performing Test CXX_SUPPORTS_CMAKE_CXX_FLAGS - Success
- -- Performing Test CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG
- -- Performing Test CXX_SUPPORTS_MISSING_FIELD_INITIALIZERS_FLAG - Success
- -- Performing Test C_SUPPORTS_CXX98_COMPAT_EXTRA_SEMI_FLAG
- -- Performing Test C_SUPPORTS_CXX98_COMPAT_EXTRA_SEMI_FLAG - Failed
- -- Performing Test CXX_SUPPORTS_CXX98_COMPAT_EXTRA_SEMI_FLAG
- -- Performing Test CXX_SUPPORTS_CXX98_COMPAT_EXTRA_SEMI_FLAG - Failed
- -- Performing Test C_SUPPORTS_IMPLICIT_FALLTHROUGH_FLAG
- -- Performing Test C_SUPPORTS_IMPLICIT_FALLTHROUGH_FLAG - Success
- -- Performing Test CXX_SUPPORTS_IMPLICIT_FALLTHROUGH_FLAG
- -- Performing Test CXX_SUPPORTS_IMPLICIT_FALLTHROUGH_FLAG - Success
- -- Performing Test C_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG
- -- Performing Test C_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG - Failed
- -- Performing Test CXX_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG
- -- Performing Test CXX_SUPPORTS_COVERED_SWITCH_DEFAULT_FLAG - Failed
- -- Performing Test CXX_SUPPORTS_CLASS_MEMACCESS_FLAG
- -- Performing Test CXX_SUPPORTS_CLASS_MEMACCESS_FLAG - Success
- -- Performing Test CXX_SUPPORTS_REDUNDANT_MOVE_FLAG
- -- Performing Test CXX_SUPPORTS_REDUNDANT_MOVE_FLAG - Success
- -- Performing Test CXX_SUPPORTS_PESSIMIZING_MOVE_FLAG
- -- Performing Test CXX_SUPPORTS_PESSIMIZING_MOVE_FLAG - Success
- -- Performing Test CXX_SUPPORTS_NOEXCEPT_TYPE_FLAG
- -- Performing Test CXX_SUPPORTS_NOEXCEPT_TYPE_FLAG - Success
- -- Performing Test CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR
- -- Performing Test CXX_WONT_WARN_ON_FINAL_NONVIRTUALDTOR - Failed
- -- Performing Test CXX_SUPPORTS_SUGGEST_OVERRIDE_FLAG
- -- Performing Test CXX_SUPPORTS_SUGGEST_OVERRIDE_FLAG - Success
- -- Performing Test CXX_WSUGGEST_OVERRIDE_ALLOWS_ONLY_FINAL
- -- Performing Test CXX_WSUGGEST_OVERRIDE_ALLOWS_ONLY_FINAL - Success
- -- Performing Test C_WCOMMENT_ALLOWS_LINE_WRAP
- -- Performing Test C_WCOMMENT_ALLOWS_LINE_WRAP - Failed
- -- Performing Test C_SUPPORTS_STRING_CONVERSION_FLAG
- -- Performing Test C_SUPPORTS_STRING_CONVERSION_FLAG - Failed
- -- Performing Test CXX_SUPPORTS_STRING_CONVERSION_FLAG
- -- Performing Test CXX_SUPPORTS_STRING_CONVERSION_FLAG - Failed
- -- Performing Test CXX_SUPPORTS_MISLEADING_INDENTATION_FLAG
- -- Performing Test CXX_SUPPORTS_MISLEADING_INDENTATION_FLAG - Success
- -- Performing Test C_SUPPORTS_CTAD_MAYBE_UNSPPORTED_FLAG
- -- Performing Test C_SUPPORTS_CTAD_MAYBE_UNSPPORTED_FLAG - Failed
- -- Performing Test CXX_SUPPORTS_CTAD_MAYBE_UNSPPORTED_FLAG
- -- Performing Test CXX_SUPPORTS_CTAD_MAYBE_UNSPPORTED_FLAG - Success
- -- Performing Test C_SUPPORTS_FNO_FUNCTION_SECTIONS
- -- Performing Test C_SUPPORTS_FNO_FUNCTION_SECTIONS - Success
- -- Performing Test C_SUPPORTS_FFUNCTION_SECTIONS
- -- Performing Test C_SUPPORTS_FFUNCTION_SECTIONS - Success
- -- Performing Test CXX_SUPPORTS_FFUNCTION_SECTIONS
- -- Performing Test CXX_SUPPORTS_FFUNCTION_SECTIONS - Success
- -- Performing Test C_SUPPORTS_FDATA_SECTIONS
- -- Performing Test C_SUPPORTS_FDATA_SECTIONS - Success
- -- Performing Test CXX_SUPPORTS_FDATA_SECTIONS
- -- Performing Test CXX_SUPPORTS_FDATA_SECTIONS - Success
- -- Looking for os_signpost_interval_begin
- -- Looking for os_signpost_interval_begin - not found
- -- Linker detection: GNU ld
- -- Performing Test HAS_WERROR_GLOBAL_CTORS
- -- Performing Test HAS_WERROR_GLOBAL_CTORS - Failed
- -- Looking for __x86_64__
- -- Looking for __x86_64__ - found
- -- Found Git: /usr/bin/git (found version "2.47.3")
- -- Targeting AArch64
- -- Targeting AMDGPU
- -- Targeting ARM
- -- Targeting AVR
- -- Targeting BPF
- -- Targeting Hexagon
- -- Targeting Lanai
- -- Targeting LoongArch
- -- Targeting Mips
- -- Targeting MSP430
- -- Targeting NVPTX
- -- Targeting PowerPC
- -- Targeting RISCV
- -- Targeting Sparc
- -- Targeting SystemZ
- -- Targeting VE
- -- Targeting WebAssembly
- -- Targeting X86
- -- Targeting XCore
- -- Registering ExampleIRTransforms as a pass plugin (static build: OFF)
- -- Registering Bye as a pass plugin (static build: OFF)
- CMake Deprecation Warning at /home/opam/.opam/4.14/.opam-switch/build/llvm.18-static/third-party/benchmark/CMakeLists.txt:1 (cmake_minimum_required):
-   Compatibility with CMake < 3.10 will be removed from a future version of
-   CMake.
- 
-   Update the VERSION argument <min> value.  Or, use the <min>...<max> syntax
-   to tell CMake that the project requires at least <min> but has been updated
-   to work with policies introduced by <max> or earlier.
- 
- 
- -- Failed to find LLVM FileCheck
- -- git version: v0.0.0 normalized to 0.0.0
- -- Version: 1.6.0
- -- Looking for shm_open in rt
- -- Looking for shm_open in rt - found
- -- Performing Test HAVE_CXX_FLAG_STD_CXX11
- -- Performing Test HAVE_CXX_FLAG_STD_CXX11 - Success
- -- Performing Test HAVE_CXX_FLAG_WALL
- -- Performing Test HAVE_CXX_FLAG_WALL - Success
- -- Performing Test HAVE_CXX_FLAG_WEXTRA
- -- Performing Test HAVE_CXX_FLAG_WEXTRA - Success
- -- Performing Test HAVE_CXX_FLAG_WSHADOW
- -- Performing Test HAVE_CXX_FLAG_WSHADOW - Success
- -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE
- -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE - Success
- -- Performing Test HAVE_CXX_FLAG_PEDANTIC
- -- Performing Test HAVE_CXX_FLAG_PEDANTIC - Success
- -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS
- -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS - Success
- -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32
- -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 - Failed
- -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING
- -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING - Success
- -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS
- -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS - Success
- -- Performing Test HAVE_CXX_FLAG_FNO_EXCEPTIONS
- -- Performing Test HAVE_CXX_FLAG_FNO_EXCEPTIONS - Success
- -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING
- -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING - Success
- -- Performing Test HAVE_CXX_FLAG_WD654
- -- Performing Test HAVE_CXX_FLAG_WD654 - Failed
- -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY
- -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY - Failed
- -- Performing Test HAVE_CXX_FLAG_COVERAGE
- -- Performing Test HAVE_CXX_FLAG_COVERAGE - Success
- -- Performing Test HAVE_GNU_POSIX_REGEX
- -- Performing Test HAVE_GNU_POSIX_REGEX
- -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile
- -- Performing Test HAVE_POSIX_REGEX
- -- Performing Test HAVE_POSIX_REGEX
- -- Performing Test HAVE_POSIX_REGEX -- success
- -- Performing Test HAVE_STEADY_CLOCK
- -- Performing Test HAVE_STEADY_CLOCK
- -- Performing Test HAVE_STEADY_CLOCK -- success
- -- Configuring done (48.5s)
- -- Generating done (9.2s)
- -- Build files have been written to: /home/opam/.opam/4.14/.opam-switch/build/llvm.18-static/build
- + make -j -Cbuild ocaml_all
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/llvm.18-static/build'
- [  0%] Built target ocaml_make_directory
- [  0%] Copying llvm_ocaml.c to build area
- [  0%] Building OCaml stub object file NVPTX_ocaml.o
- [  0%] Building OCaml stub object file Mips_ocaml.o
- [  0%] Building OCaml stub object file Hexagon_ocaml.o
- [  0%] Building OCaml stub object file AMDGPU_ocaml.o
- [  0%] Building OCaml stub object file PowerPC_ocaml.o
- [  0%] Copying llvm.ml to build area
- [  0%] Building OCaml stub object file AArch64_ocaml.o
- [  0%] Copying llvm.mli to build area
- [  0%] Building OCaml stub object file ARM_ocaml.o
- [  0%] Building OCaml stub object file BPF_ocaml.o
- [  0%] Building OCaml stub object file LoongArch_ocaml.o
- [  0%] Building OCaml stub object file Lanai_ocaml.o
- [  0%] Building OCaml stub object file X86_ocaml.o
- [  0%] Building OCaml stub object file AVR_ocaml.o
- [  0%] Building OCaml stub object file MSP430_ocaml.o
- [  0%] Building OCaml stub object file VE_ocaml.o
- [  0%] Building OCaml stub object file RISCV_ocaml.o
- [  0%] Building OCaml stub object file Sparc_ocaml.o
- [  0%] Building OCaml stub object file SystemZ_ocaml.o
- [  0%] Building OCaml stub object file XCore_ocaml.o
- [  0%] Building OCaml stub object file WebAssembly_ocaml.o
- [  0%] Building OCaml stub object file llvm_ocaml.o
- [  0%] Building OCaml library llvm_PowerPC
- [  0%] Building OCaml library llvm_Mips
- [  0%] Building OCaml library llvm_BPF
- [  0%] Building OCaml library llvm_Hexagon
- [  0%] Building OCaml library llvm_AVR
- [  0%] Building OCaml library llvm_AArch64
- [  0%] Building OCaml library llvm_AMDGPU
- [  0%] Building OCaml library llvm_VE
- [  0%] Building OCaml library llvm_X86
- [  0%] Building OCaml library llvm_NVPTX
- [  0%] Building OCaml library llvm_RISCV
- [  0%] Building OCaml library llvm_SystemZ
- [  0%] Building OCaml library llvm_ARM
- [  0%] Building OCaml library llvm_LoongArch
- [  0%] Building OCaml library llvm_XCore
- [  0%] Building OCaml library llvm_Lanai
- [  0%] Building OCaml library llvm_WebAssembly
- [  0%] Building OCaml library llvm_Sparc
- [  0%] Building OCaml library llvm_MSP430
- [  0%] Building OCaml documentation for llvm_RISCV
- [  0%] Building OCaml documentation for llvm_AVR
- [  0%] Building OCaml documentation for llvm_X86
- [  0%] Building OCaml documentation for llvm_SystemZ
- [  0%] Building OCaml documentation for llvm_PowerPC
- [  0%] Building OCaml documentation for llvm_Sparc
- [  0%] Building OCaml documentation for llvm_MSP430
- [  0%] Building OCaml documentation for llvm_ARM
- [  0%] Building OCaml documentation for llvm_XCore
- [  0%] Building OCaml documentation for llvm_VE
- [  0%] Building OCaml documentation for llvm_AArch64
- [  0%] Building OCaml documentation for llvm_Hexagon
- [  0%] Building OCaml documentation for llvm_WebAssembly
- [  0%] Building OCaml documentation for llvm_Mips
- [ 50%] Building OCaml documentation for llvm_NVPTX
- [ 50%] Building OCaml documentation for llvm_BPF
- [ 50%] Building OCaml documentation for llvm_LoongArch
- [ 50%] Building OCaml documentation for llvm_Lanai
- [ 50%] Building OCaml documentation for llvm_AMDGPU
- Copying OCaml library component llvm_RISCV.mli to intermediate area
- Copying OCaml library component llvm_AVR.mli to intermediate area
- Copying OCaml library component llvm_PowerPC.mli to intermediate area
- Copying OCaml library component llvm_X86.mli to intermediate area
- Copying OCaml library component llvm_Sparc.mli to intermediate area
- Copying OCaml library component llvm_SystemZ.mli to intermediate area
- Copying OCaml library component llvm_VE.mli to intermediate area
- Copying OCaml library component llvm_MSP430.mli to intermediate area
- Copying OCaml library component llvm_XCore.mli to intermediate area
- Copying OCaml library component llvm_ARM.mli to intermediate area
- Copying OCaml library component llvm_AArch64.mli to intermediate area
- Copying OCaml library component llvm_Hexagon.mli to intermediate area
- Copying OCaml library component llvm_Mips.mli to intermediate area
- Copying OCaml library component llvm_NVPTX.mli to intermediate area
- Copying OCaml library component llvm_WebAssembly.mli to intermediate area
- Copying OCaml library component llvm_LoongArch.mli to intermediate area
- Copying OCaml library component llvm_Lanai.mli to intermediate area
- Copying OCaml library component llvm_AMDGPU.mli to intermediate area
- Copying OCaml library component llvm_BPF.mli to intermediate area
- Copying OCaml library component llvm_RISCV.cma to intermediate area
- Copying OCaml library component llvm_PowerPC.cma to intermediate area
- Copying OCaml library component llvm_X86.cma to intermediate area
- Copying OCaml library component llvm_Sparc.cma to intermediate area
- Copying OCaml library component llvm_AVR.cma to intermediate area
- Copying OCaml library component llvm_SystemZ.cma to intermediate area
- Copying OCaml library component llvm_XCore.cma to intermediate area
- Copying OCaml library component llvm_VE.cma to intermediate area
- Copying OCaml library component llvm_ARM.cma to intermediate area
- Copying OCaml library component llvm_MSP430.cma to intermediate area
- Copying OCaml library component llvm_Hexagon.cma to intermediate area
- Copying OCaml library component llvm_AArch64.cma to intermediate area
- Copying OCaml library component llvm_Mips.cma to intermediate area
- Copying OCaml library component llvm_WebAssembly.cma to intermediate area
- Copying OCaml library component llvm_NVPTX.cma to intermediate area
- Copying OCaml library component llvm_AMDGPU.cma to intermediate area
- Copying OCaml library component llvm_Lanai.cma to intermediate area
- Copying OCaml library component llvm_LoongArch.cma to intermediate area
- Copying OCaml library component llvm_BPF.cma to intermediate area
- Copying OCaml library component libllvm_RISCV.a to intermediate area
- Copying OCaml library component libllvm_XCore.a to intermediate area
- Copying OCaml library component libllvm_PowerPC.a to intermediate area
- Copying OCaml library component libllvm_X86.a to intermediate area
- Copying OCaml library component libllvm_Sparc.a to intermediate area
- Copying OCaml library component libllvm_VE.a to intermediate area
- Copying OCaml library component libllvm_SystemZ.a to intermediate area
- Copying OCaml library component libllvm_Hexagon.a to intermediate area
- Copying OCaml library component libllvm_ARM.a to intermediate area
- Copying OCaml library component libllvm_MSP430.a to intermediate area
- Copying OCaml library component libllvm_AVR.a to intermediate area
- Copying OCaml library component libllvm_WebAssembly.a to intermediate area
- Copying OCaml library component libllvm_AArch64.a to intermediate area
- Copying OCaml library component libllvm_AMDGPU.a to intermediate area
- Copying OCaml library component libllvm_Lanai.a to intermediate area
- Copying OCaml library component libllvm_Mips.a to intermediate area
- Copying OCaml library component libllvm_LoongArch.a to intermediate area
- Copying OCaml library component libllvm_NVPTX.a to intermediate area
- Copying OCaml library component llvm_RISCV.cmxa to intermediate area
- Copying OCaml library component llvm_XCore.cmxa to intermediate area
- Copying OCaml library component libllvm_BPF.a to intermediate area
- Copying OCaml library component llvm_X86.cmxa to intermediate area
- Copying OCaml library component llvm_Sparc.cmxa to intermediate area
- Copying OCaml library component llvm_PowerPC.cmxa to intermediate area
- Copying OCaml library component llvm_Hexagon.cmxa to intermediate area
- Copying OCaml library component llvm_VE.cmxa to intermediate area
- Copying OCaml library component llvm_SystemZ.cmxa to intermediate area
- Copying OCaml library component llvm_ARM.cmxa to intermediate area
- Copying OCaml library component llvm_AVR.cmxa to intermediate area
- Copying OCaml library component llvm_MSP430.cmxa to intermediate area
- Copying OCaml library component llvm_WebAssembly.cmxa to intermediate area
- Copying OCaml library component llvm_Mips.cmxa to intermediate area
- Copying OCaml library component llvm_LoongArch.cmxa to intermediate area
- Copying OCaml library component llvm_Lanai.cmxa to intermediate area
- Copying OCaml library component llvm_AArch64.cmxa to intermediate area
- Copying OCaml library component llvm_AMDGPU.cmxa to intermediate area
- Copying OCaml library component llvm_NVPTX.cmxa to intermediate area
- Copying OCaml library component llvm_XCore.a to intermediate area
- Copying OCaml library component llvm_RISCV.a to intermediate area
- Copying OCaml library component llvm_X86.a to intermediate area
- Copying OCaml library component llvm_Sparc.a to intermediate area
- Copying OCaml library component llvm_PowerPC.a to intermediate area
- Copying OCaml library component llvm_VE.a to intermediate area
- Copying OCaml library component llvm_BPF.cmxa to intermediate area
- Copying OCaml library component llvm_Hexagon.a to intermediate area
- Copying OCaml library component llvm_SystemZ.a to intermediate area
- Copying OCaml library component llvm_AVR.a to intermediate area
- Copying OCaml library component llvm_ARM.a to intermediate area
- Copying OCaml library component llvm_MSP430.a to intermediate area
- Copying OCaml library component llvm_WebAssembly.a to intermediate area
- Copying OCaml library component llvm_LoongArch.a to intermediate area
- Copying OCaml library component llvm_Mips.a to intermediate area
- Copying OCaml library component llvm_Lanai.a to intermediate area
- Copying OCaml library component llvm_AArch64.a to intermediate area
- Copying OCaml library component llvm_NVPTX.a to intermediate area
- Copying OCaml library component llvm_XCore.cmi to intermediate area
- Copying OCaml library component llvm_RISCV.cmi to intermediate area
- Copying OCaml library component llvm_PowerPC.cmi to intermediate area
- Copying OCaml library component llvm_VE.cmi to intermediate area
- Copying OCaml library component llvm_X86.cmi to intermediate area
- Copying OCaml library component llvm_BPF.a to intermediate area
- Copying OCaml library component llvm_SystemZ.cmi to intermediate area
- Copying OCaml library component llvm_AVR.cmi to intermediate area
- Copying OCaml library component llvm_WebAssembly.cmi to intermediate area
- Copying OCaml library component llvm_AMDGPU.a to intermediate area
- Copying OCaml library component llvm_Lanai.cmi to intermediate area
- Copying OCaml library component llvm_Sparc.cmi to intermediate area
- Copying OCaml library component llvm_ARM.cmi to intermediate area
- Copying OCaml library component llvm_Hexagon.cmi to intermediate area
- Copying OCaml library component llvm_Mips.cmi to intermediate area
- Copying OCaml library component llvm_MSP430.cmi to intermediate area
- Copying OCaml library component llvm_AArch64.cmi to intermediate area
- Copying OCaml library component llvm_VE.cmti to intermediate area
- Copying OCaml library component llvm_BPF.cmi to intermediate area
- Copying OCaml library component llvm_X86.cmti to intermediate area
- Copying OCaml library component llvm_LoongArch.cmi to intermediate area
- Copying OCaml library component llvm_PowerPC.cmti to intermediate area
- Copying OCaml library component llvm_ARM.cmti to intermediate area
- Copying OCaml library component llvm_SystemZ.cmti to intermediate area
- Copying OCaml library component llvm_WebAssembly.cmti to intermediate area
- Copying OCaml library component llvm_NVPTX.cmi to intermediate area
- Copying OCaml library component llvm_XCore.cmti to intermediate area
- Copying OCaml library component llvm_AVR.cmti to intermediate area
- Copying OCaml library component llvm_RISCV.cmti to intermediate area
- Copying OCaml library component llvm_Sparc.cmti to intermediate area
- Copying OCaml library component llvm_VE.cmt to intermediate area
- Copying OCaml library component llvm_Lanai.cmti to intermediate area
- Copying OCaml library component llvm_BPF.cmti to intermediate area
- Copying OCaml library component llvm_X86.cmt to intermediate area
- Copying OCaml library component llvm_Hexagon.cmti to intermediate area
- Copying OCaml library component llvm_MSP430.cmti to intermediate area
- Copying OCaml library component llvm_AMDGPU.cmi to intermediate area
- Copying OCaml library component llvm_Mips.cmti to intermediate area
- Copying OCaml library component llvm_AArch64.cmti to intermediate area
- Copying OCaml library component llvm_LoongArch.cmti to intermediate area
- Copying OCaml library component llvm_ARM.cmt to intermediate area
- Copying OCaml library component llvm_PowerPC.cmt to intermediate area
- Copying OCaml library component llvm_WebAssembly.cmt to intermediate area
- Copying OCaml library component llvm_SystemZ.cmt to intermediate area
- Copying OCaml library component llvm_XCore.cmt to intermediate area
- Copying OCaml library component llvm_RISCV.cmt to intermediate area
- Copying OCaml library component llvm_AVR.cmt to intermediate area
- Copying OCaml library component llvm_NVPTX.cmti to intermediate area
- Copying OCaml library component llvm_Sparc.cmt to intermediate area
- Copying OCaml library component llvm_VE.cmx to intermediate area
- Copying OCaml library component llvm_BPF.cmt to intermediate area
- Copying OCaml library component llvm_X86.cmx to intermediate area
- Copying OCaml library component llvm_Lanai.cmt to intermediate area
- Copying OCaml library component llvm_MSP430.cmt to intermediate area
- Copying OCaml library component llvm_Hexagon.cmt to intermediate area
- Copying OCaml library component llvm_AMDGPU.cmti to intermediate area
- Copying OCaml library component llvm_AArch64.cmt to intermediate area
- Copying OCaml library component llvm_Mips.cmt to intermediate area
- Copying OCaml library component llvm_LoongArch.cmt to intermediate area
- Copying OCaml library component llvm_ARM.cmx to intermediate area
- Copying OCaml library component llvm_WebAssembly.cmx to intermediate area
- Copying OCaml library component llvm_RISCV.cmx to intermediate area
- Copying OCaml library component llvm_SystemZ.cmx to intermediate area
- Copying OCaml library component llvm_PowerPC.cmx to intermediate area
- Copying OCaml library component llvm_XCore.cmx to intermediate area
- Copying OCaml library component llvm_AVR.cmx to intermediate area
- Copying OCaml library component llvm_NVPTX.cmt to intermediate area
- [ 50%] Built target ocaml_llvm_VE
- Copying OCaml library component llvm_Lanai.cmx to intermediate area
- Copying OCaml library component llvm_Sparc.cmx to intermediate area
- [ 50%] Built target ocaml_llvm_X86
- Copying OCaml library component llvm_BPF.cmx to intermediate area
- Copying OCaml library component llvm_Hexagon.cmx to intermediate area
- Copying OCaml library component llvm_MSP430.cmx to intermediate area
- Copying OCaml library component llvm_AMDGPU.cmt to intermediate area
- Copying OCaml library component llvm_Mips.cmx to intermediate area
- Copying OCaml library component llvm_LoongArch.cmx to intermediate area
- Copying OCaml library component llvm_AArch64.cmx to intermediate area
- [ 50%] Built target ocaml_llvm_ARM
- [ 50%] Built target ocaml_llvm_XCore
- [ 50%] Built target ocaml_llvm_RISCV
- [ 50%] Built target ocaml_llvm_SystemZ
- [ 50%] Built target ocaml_llvm_WebAssembly
- [ 50%] Built target ocaml_llvm_PowerPC
- Copying OCaml library component llvm_NVPTX.cmx to intermediate area
- [ 50%] Built target ocaml_llvm_AVR
- [ 50%] Built target ocaml_llvm_Lanai
- [ 50%] Built target ocaml_llvm_Sparc
- [ 50%] Built target ocaml_llvm_Hexagon
- [ 50%] Built target ocaml_llvm_MSP430
- Copying OCaml library component llvm_AMDGPU.cmx to intermediate area
- [ 50%] Built target ocaml_llvm_BPF
- [ 50%] Built target ocaml_llvm_Mips
- [ 50%] Built target ocaml_llvm_LoongArch
- [ 50%] Built target ocaml_llvm_AArch64
- [ 50%] Built target ocaml_llvm_NVPTX
- [ 50%] Built target ocaml_llvm_AMDGPU
- [ 50%] Building OCaml library llvm
- [ 50%] Building OCaml documentation for llvm
- Copying OCaml library component llvm.mli to intermediate area
- Copying OCaml library component llvm.cma to intermediate area
- Copying OCaml library component libllvm.a to intermediate area
- Copying OCaml library component llvm.cmxa to intermediate area
- Copying OCaml library component llvm.a to intermediate area
- Copying OCaml library component llvm.cmi to intermediate area
- Copying OCaml library component llvm.cmti to intermediate area
- Copying OCaml library component llvm.cmt to intermediate area
- Copying OCaml library component llvm.cmx to intermediate area
- [ 50%] Built target ocaml_llvm
- [ 50%] Copying llvm_target.mli to build area
- [ 50%] Copying bitwriter_ocaml.c to build area
- [ 50%] Copying llvm_analysis.mli to build area
- [ 50%] Copying llvm_target.ml to build area
- [ 50%] Copying target_ocaml.c to build area
- [ 50%] Copying llvm_bitwriter.ml to build area
- [ 50%] Copying irreader_ocaml.c to build area
- [ 50%] Copying llvm_irreader.mli to build area
- [ 50%] Copying llvm_debuginfo.mli to build area
- [ 50%] Copying analysis_ocaml.c to build area
- [ 50%] Copying llvm_bitwriter.mli to build area
- [ 50%] Copying all_backends_ocaml.c to build area
- [ 50%] Copying llvm_irreader.ml to build area
- [ 50%] Copying llvm_analysis.ml to build area
- [ 50%] Copying bitreader_ocaml.c to build area
- [ 50%] Copying llvm_debuginfo.ml to build area
- [ 50%] Copying linker_ocaml.c to build area
- [ 50%] Copying transform_utils_ocaml.c to build area
- [ 50%] Copying llvm_bitreader.ml to build area
- [ 50%] Copying llvm_all_backends.ml to build area
- [ 50%] Copying debuginfo_ocaml.c to build area
- [ 50%] Copying llvm_bitreader.mli to build area
- [ 50%] Copying llvm_linker.ml to build area
- [ 50%] Copying llvm_linker.mli to build area
- [ 50%] Copying llvm_all_backends.mli to build area
- [ 50%] Copying llvm_transform_utils.mli to build area
- [ 50%] Copying llvm_transform_utils.ml to build area
- [ 50%] Building OCaml stub object file bitwriter_ocaml.o
- [ 50%] Building OCaml stub object file target_ocaml.o
- [ 50%] Building OCaml stub object file irreader_ocaml.o
- [ 50%] Building OCaml stub object file linker_ocaml.o
- [ 50%] Building OCaml stub object file bitreader_ocaml.o
- [ 50%] Building OCaml stub object file all_backends_ocaml.o
- [ 50%] Building OCaml stub object file analysis_ocaml.o
- [ 50%] Building OCaml stub object file debuginfo_ocaml.o
- [ 50%] Building OCaml stub object file transform_utils_ocaml.o
- [ 50%] Building OCaml library llvm_bitreader
- [ 50%] Building OCaml library llvm_linker
- [ 50%] Building OCaml library llvm_irreader
- [ 50%] Building OCaml library llvm_all_backends
- [ 50%] Building OCaml library llvm_bitwriter
- [ 50%] Building OCaml library llvm_transform_utils
- [ 50%] Building OCaml library llvm_analysis
- [ 50%] Building OCaml documentation for llvm_bitreader
- [ 50%] Building OCaml library llvm_target
- [ 50%] Building OCaml documentation for llvm_all_backends
- [ 50%] Building OCaml documentation for llvm_irreader
- [ 50%] Building OCaml documentation for llvm_linker
- [ 50%] Building OCaml documentation for llvm_transform_utils
- Copying OCaml library component llvm_bitreader.mli to intermediate area
- [ 50%] Building OCaml documentation for llvm_analysis
- [ 50%] Building OCaml documentation for llvm_bitwriter
- Copying OCaml library component llvm_all_backends.mli to intermediate area
- Copying OCaml library component llvm_bitreader.cma to intermediate area
- Copying OCaml library component llvm_linker.mli to intermediate area
- Copying OCaml library component llvm_irreader.mli to intermediate area
- Copying OCaml library component llvm_all_backends.cma to intermediate area
- Copying OCaml library component llvm_transform_utils.mli to intermediate area
- Copying OCaml library component llvm_irreader.cma to intermediate area
- Copying OCaml library component llvm_linker.cma to intermediate area
- Copying OCaml library component libllvm_bitreader.a to intermediate area
- Copying OCaml library component llvm_analysis.mli to intermediate area
- Copying OCaml library component libllvm_all_backends.a to intermediate area
- Copying OCaml library component llvm_bitwriter.mli to intermediate area
- Copying OCaml library component libllvm_linker.a to intermediate area
- Copying OCaml library component libllvm_irreader.a to intermediate area
- Copying OCaml library component llvm_analysis.cma to intermediate area
- Copying OCaml library component llvm_bitreader.cmxa to intermediate area
- Copying OCaml library component llvm_transform_utils.cma to intermediate area
- Copying OCaml library component llvm_all_backends.cmxa to intermediate area
- Copying OCaml library component llvm_bitwriter.cma to intermediate area
- Copying OCaml library component llvm_linker.cmxa to intermediate area
- Copying OCaml library component libllvm_analysis.a to intermediate area
- Copying OCaml library component llvm_irreader.cmxa to intermediate area
- Copying OCaml library component libllvm_transform_utils.a to intermediate area
- Copying OCaml library component llvm_bitreader.a to intermediate area
- Copying OCaml library component llvm_all_backends.a to intermediate area
- Copying OCaml library component llvm_analysis.cmxa to intermediate area
- Copying OCaml library component libllvm_bitwriter.a to intermediate area
- Copying OCaml library component llvm_linker.a to intermediate area
- Copying OCaml library component llvm_irreader.a to intermediate area
- Copying OCaml library component llvm_bitreader.cmi to intermediate area
- Copying OCaml library component llvm_all_backends.cmi to intermediate area
- Copying OCaml library component llvm_transform_utils.cmxa to intermediate area
- Copying OCaml library component llvm_bitwriter.cmxa to intermediate area
- [ 50%] Building OCaml documentation for llvm_target
- Copying OCaml library component llvm_analysis.a to intermediate area
- Copying OCaml library component llvm_linker.cmi to intermediate area
- Copying OCaml library component llvm_irreader.cmi to intermediate area
- Copying OCaml library component llvm_all_backends.cmti to intermediate area
- Copying OCaml library component llvm_bitreader.cmti to intermediate area
- Copying OCaml library component llvm_transform_utils.a to intermediate area
- [ 50%] Building OCaml library llvm_debuginfo
- Copying OCaml library component llvm_bitwriter.a to intermediate area
- Copying OCaml library component llvm_analysis.cmi to intermediate area
- Copying OCaml library component llvm_irreader.cmti to intermediate area
- Copying OCaml library component llvm_linker.cmti to intermediate area
- Copying OCaml library component llvm_all_backends.cmt to intermediate area
- Copying OCaml library component llvm_bitreader.cmt to intermediate area
- Copying OCaml library component llvm_transform_utils.cmi to intermediate area
- Copying OCaml library component llvm_target.mli to intermediate area
- Copying OCaml library component llvm_bitwriter.cmi to intermediate area
- Copying OCaml library component llvm_analysis.cmti to intermediate area
- Copying OCaml library component llvm_irreader.cmt to intermediate area
- Copying OCaml library component llvm_linker.cmt to intermediate area
- Copying OCaml library component llvm_all_backends.cmx to intermediate area
- Copying OCaml library component llvm_bitreader.cmx to intermediate area
- Copying OCaml library component llvm_target.cma to intermediate area
- Copying OCaml library component llvm_bitwriter.cmti to intermediate area
- Copying OCaml library component llvm_transform_utils.cmti to intermediate area
- Copying OCaml library component llvm_irreader.cmx to intermediate area
- Copying OCaml library component llvm_linker.cmx to intermediate area
- [ 50%] Built target ocaml_llvm_all_backends
- Copying OCaml library component llvm_analysis.cmt to intermediate area
- [ 50%] Built target ocaml_llvm_bitreader
- Copying OCaml library component libllvm_target.a to intermediate area
- Copying OCaml library component llvm_bitwriter.cmt to intermediate area
- Copying OCaml library component llvm_transform_utils.cmt to intermediate area
- [ 50%] Built target ocaml_llvm_irreader
- Copying OCaml library component llvm_analysis.cmx to intermediate area
- [ 50%] Built target ocaml_llvm_linker
- Copying OCaml library component llvm_target.cmxa to intermediate area
- Copying OCaml library component llvm_bitwriter.cmx to intermediate area
- Copying OCaml library component llvm_transform_utils.cmx to intermediate area
- [ 50%] Built target ocaml_llvm_analysis
- Copying OCaml library component llvm_target.a to intermediate area
- [ 50%] Built target ocaml_llvm_bitwriter
- [ 50%] Built target ocaml_llvm_transform_utils
- Copying OCaml library component llvm_target.cmi to intermediate area
- [ 50%] Building OCaml documentation for llvm_debuginfo
- Copying OCaml library component llvm_target.cmti to intermediate area
- Copying OCaml library component llvm_target.cmt to intermediate area
- Copying OCaml library component llvm_target.cmx to intermediate area
- Copying OCaml library component llvm_debuginfo.mli to intermediate area
- [ 50%] Built target ocaml_llvm_target
- Copying OCaml library component llvm_debuginfo.cma to intermediate area
- [ 50%] Copying llvm_executionengine.mli to build area
- [ 50%] Copying executionengine_ocaml.c to build area
- [ 50%] Copying llvm_executionengine.ml to build area
- Copying OCaml library component libllvm_debuginfo.a to intermediate area
- [ 50%] Copying llvm_passbuilder.mli to build area
- [ 50%] Copying passbuilder_ocaml.c to build area
- [ 50%] Copying llvm_passbuilder.ml to build area
- [ 50%] Building OCaml stub object file executionengine_ocaml.o
- [ 50%] Building OCaml stub object file passbuilder_ocaml.o
- Copying OCaml library component llvm_debuginfo.cmxa to intermediate area
- Copying OCaml library component llvm_debuginfo.a to intermediate area
- Copying OCaml library component llvm_debuginfo.cmi to intermediate area
- [ 50%] Building OCaml library llvm_passbuilder
- Copying OCaml library component llvm_debuginfo.cmti to intermediate area
- Copying OCaml library component llvm_debuginfo.cmt to intermediate area
- [100%] Building OCaml library llvm_executionengine
- Copying OCaml library component llvm_debuginfo.cmx to intermediate area
- [100%] Built target ocaml_llvm_debuginfo
- [100%] Building OCaml documentation for llvm_passbuilder
- Copying OCaml library component llvm_passbuilder.mli to intermediate area
- [100%] Building OCaml documentation for llvm_executionengine
- Copying OCaml library component llvm_passbuilder.cma to intermediate area
- Copying OCaml library component libllvm_passbuilder.a to intermediate area
- Copying OCaml library component llvm_executionengine.mli to intermediate area
- Copying OCaml library component llvm_passbuilder.cmxa to intermediate area
- Copying OCaml library component llvm_executionengine.cma to intermediate area
- Copying OCaml library component llvm_passbuilder.a to intermediate area
- Copying OCaml library component libllvm_executionengine.a to intermediate area
- Copying OCaml library component llvm_passbuilder.cmi to intermediate area
- Copying OCaml library component llvm_executionengine.cmxa to intermediate area
- Copying OCaml library component llvm_passbuilder.cmti to intermediate area
- Copying OCaml library component llvm_executionengine.a to intermediate area
- Copying OCaml library component llvm_passbuilder.cmt to intermediate area
- Copying OCaml library component llvm_executionengine.cmi to intermediate area
- Copying OCaml library component llvm_passbuilder.cmx to intermediate area
- Copying OCaml library component llvm_executionengine.cmti to intermediate area
- [100%] Built target ocaml_llvm_passbuilder
- Copying OCaml library component llvm_executionengine.cmt to intermediate area
- Copying OCaml library component llvm_executionengine.cmx to intermediate area
- [100%] Built target ocaml_llvm_executionengine
- [100%] Built target ocaml_all
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/llvm.18-static/build'
-> compiled  llvm.18-static
-> removed   llvm.18-static
Processing  4/4: [llvm: bash install.sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "bash" "-ex" "install.sh" "install" "--llvm-config" "llvm-config-18" "--libdir" "/home/opam/.opam/4.14/lib" "--cmake" "cmake" "--make" "make" "--link-mode" "static" (CWD=/home/opam/.opam/4.14/.opam-switch/build/llvm.18-static)
- + action=install
- + shift
- + llvm_config=
- + libdir=
- + cmake=
- + make=
- + link_mode=
- + use_homebrew=FALSE
- + [[ 10 -gt 0 ]]
- + case $1 in
- + [[ 10 -lt 2 ]]
- + llvm_config=llvm-config-18
- + shift 2
- + [[ 8 -gt 0 ]]
- + case $1 in
- + [[ 8 -lt 2 ]]
- + libdir=/home/opam/.opam/4.14/lib
- + shift 2
- + [[ 6 -gt 0 ]]
- + case $1 in
- + [[ 6 -lt 2 ]]
- + cmake=cmake
- + shift 2
- + [[ 4 -gt 0 ]]
- + case $1 in
- + [[ 4 -lt 2 ]]
- + make=make
- + shift 2
- + [[ 2 -gt 0 ]]
- + case $1 in
- + [[ 2 -lt 2 ]]
- + link_mode=static
- + shift 2
- + [[ 0 -gt 0 ]]
- + case "$action" in
- + llvm_install
- + test -d build
- + cmake -Pbuild/bindings/ocaml/cmake_install.cmake
- -- Install configuration: "RelWithDebInfo"
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_all_backends.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_all_backends.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_all_backends.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_all_backends.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_all_backends.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_all_backends.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_all_backends.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_all_backends.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_all_backends.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_analysis.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_analysis.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_analysis.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_analysis.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_analysis.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_analysis.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_analysis.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_analysis.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_analysis.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AArch64.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AArch64.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_AArch64.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AArch64.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AArch64.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AArch64.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AArch64.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AArch64.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AArch64.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_AArch64
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AMDGPU.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AMDGPU.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_AMDGPU.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AMDGPU.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AMDGPU.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AMDGPU.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AMDGPU.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AMDGPU.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AMDGPU.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_AMDGPU
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_ARM.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_ARM.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_ARM.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_ARM.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_ARM.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_ARM.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_ARM.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_ARM.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_ARM.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_ARM
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AVR.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AVR.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_AVR.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AVR.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AVR.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AVR.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AVR.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AVR.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_AVR.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_AVR
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_BPF.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_BPF.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_BPF.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_BPF.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_BPF.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_BPF.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_BPF.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_BPF.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_BPF.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_BPF
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Hexagon.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Hexagon.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_Hexagon.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Hexagon.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Hexagon.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Hexagon.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Hexagon.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Hexagon.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Hexagon.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_Hexagon
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Lanai.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Lanai.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_Lanai.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Lanai.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Lanai.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Lanai.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Lanai.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Lanai.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Lanai.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_Lanai
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_LoongArch.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_LoongArch.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_LoongArch.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_LoongArch.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_LoongArch.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_LoongArch.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_LoongArch.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_LoongArch.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_LoongArch.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_LoongArch
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Mips.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Mips.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_Mips.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Mips.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Mips.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Mips.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Mips.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Mips.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Mips.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_Mips
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_MSP430.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_MSP430.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_MSP430.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_MSP430.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_MSP430.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_MSP430.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_MSP430.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_MSP430.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_MSP430.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_MSP430
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_NVPTX.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_NVPTX.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_NVPTX.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_NVPTX.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_NVPTX.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_NVPTX.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_NVPTX.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_NVPTX.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_NVPTX.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_NVPTX
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_PowerPC.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_PowerPC.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_PowerPC.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_PowerPC.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_PowerPC.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_PowerPC.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_PowerPC.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_PowerPC.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_PowerPC.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_PowerPC
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_RISCV.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_RISCV.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_RISCV.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_RISCV.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_RISCV.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_RISCV.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_RISCV.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_RISCV.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_RISCV.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_RISCV
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Sparc.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Sparc.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_Sparc.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Sparc.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Sparc.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Sparc.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Sparc.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Sparc.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_Sparc.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_Sparc
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_SystemZ.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_SystemZ.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_SystemZ.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_SystemZ.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_SystemZ.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_SystemZ.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_SystemZ.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_SystemZ.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_SystemZ.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_SystemZ
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_VE.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_VE.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_VE.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_VE.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_VE.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_VE.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_VE.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_VE.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_VE.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_VE
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_WebAssembly.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_WebAssembly.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_WebAssembly.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_WebAssembly.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_WebAssembly.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_WebAssembly.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_WebAssembly.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_WebAssembly.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_WebAssembly.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_WebAssembly
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_X86.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_X86.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_X86.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_X86.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_X86.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_X86.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_X86.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_X86.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_X86.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_X86
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_XCore.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_XCore.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_XCore.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_XCore.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_XCore.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_XCore.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_XCore.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_XCore.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_XCore.cmx
- -- Installing: /home/opam/.opam/4.14/lib/META.llvm_XCore
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitreader.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitreader.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_bitreader.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitreader.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitreader.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitreader.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitreader.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitreader.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitreader.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitwriter.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitwriter.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_bitwriter.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitwriter.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitwriter.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitwriter.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitwriter.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitwriter.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_bitwriter.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_debuginfo.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_debuginfo.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_debuginfo.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_debuginfo.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_debuginfo.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_debuginfo.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_debuginfo.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_debuginfo.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_debuginfo.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_irreader.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_irreader.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_irreader.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_irreader.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_irreader.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_irreader.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_irreader.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_irreader.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_irreader.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_linker.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_linker.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_linker.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_linker.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_linker.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_linker.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_linker.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_linker.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_linker.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_target.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_target.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_target.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_target.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_target.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_target.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_target.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_target.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_target.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_passbuilder.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_passbuilder.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_passbuilder.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_passbuilder.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_passbuilder.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_passbuilder.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_passbuilder.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_passbuilder.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_passbuilder.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_transform_utils.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_transform_utils.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_transform_utils.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_transform_utils.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_transform_utils.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_transform_utils.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_transform_utils.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_transform_utils.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_transform_utils.cmx
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_executionengine.mli
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_executionengine.cma
- -- Installing: /home/opam/.opam/4.14/lib/llvm/libllvm_executionengine.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_executionengine.cmxa
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_executionengine.a
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_executionengine.cmi
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_executionengine.cmti
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_executionengine.cmt
- -- Installing: /home/opam/.opam/4.14/lib/llvm/llvm_executionengine.cmx
-> installed llvm.18-static
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 11:50.08 ---> saved as "23cab7d316f243c881d0b0a839bfe97f5fc47754447a5e01c415c76a8a217577"
Job succeeded
2026-04-30 11:50.25: Job succeeded