Build:
- 0
2026-01-29 17:54.39: New job: test llvm.20-static, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29110/head (fd0e9f3f187512b200bbbaef1b3eece0f6b26b04)
on fedora-42-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29110/head" && git reset --hard fd0e9f3f
git fetch origin master
git merge --no-edit 84bda4afb0feea0c4e527d27c05e9f998163fad2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-42-ocaml-5.4@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89
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 llvm.20-static 20-static
RUN opam reinstall llvm.20-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 "\"fedora-42\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'llvm.20-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.20-static) || true
RUN opam reinstall --with-test --verbose llvm.20-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 "\"fedora-42\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'llvm.20-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-01-29 17:54.39: Using cache hint "ocaml/opam:fedora-42-ocaml-5.4@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89-llvm.20-static-fd0e9f3f187512b200bbbaef1b3eece0f6b26b04"
2026-01-29 17:54.39: Using OBuilder spec:
((from ocaml/opam:fedora-42-ocaml-5.4@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89)
(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 llvm.20-static 20-static"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall llvm.20-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 \"\\\"fedora-42\\\"\"; 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.20-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.20-static) || true"))
(run (shell "opam reinstall --with-test --verbose llvm.20-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 \"\\\"fedora-42\\\"\"; 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.20-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-01-29 17:54.39: Waiting for resource in pool OCluster
2026-01-29 17:56.50: Waiting for worker…
2026-01-29 17:59.52: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 84bda4afb0 Merge pull request #29306 from ocaml/fix-catala-format-install
Merge made by the 'ort' strategy.
packages/conf-llvm-shared/conf-llvm-shared.20/opam | 34 +++++++++++
packages/conf-llvm-shared/conf-llvm-shared.21/opam | 34 +++++++++++
packages/conf-llvm-static/conf-llvm-static.20/opam | 34 +++++++++++
packages/conf-llvm-static/conf-llvm-static.21/opam | 34 +++++++++++
packages/llvm/llvm.20-shared/opam | 67 ++++++++++++++++++++++
packages/llvm/llvm.20-static/opam | 67 ++++++++++++++++++++++
packages/llvm/llvm.21-shared/opam | 67 ++++++++++++++++++++++
packages/llvm/llvm.21-static/opam | 67 ++++++++++++++++++++++
8 files changed, 404 insertions(+)
create mode 100644 packages/conf-llvm-shared/conf-llvm-shared.20/opam
create mode 100644 packages/conf-llvm-shared/conf-llvm-shared.21/opam
create mode 100644 packages/conf-llvm-static/conf-llvm-static.20/opam
create mode 100644 packages/conf-llvm-static/conf-llvm-static.21/opam
create mode 100644 packages/llvm/llvm.20-shared/opam
create mode 100644 packages/llvm/llvm.20-static/opam
create mode 100644 packages/llvm/llvm.21-shared/opam
create mode 100644 packages/llvm/llvm.21-static/opam
(from ocaml/opam:fedora-42-ocaml-5.4@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89)
Unable to find image 'ocaml/opam:fedora-42-ocaml-5.4@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89' locally
docker.io/ocaml/opam@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89: Pulling from ocaml/opam
9bf6f242b112: Pulling fs layer
8fabacba1251: Pulling fs layer
b556b825844b: Pulling fs layer
9e16b7647122: Pulling fs layer
12eaeb58df8c: Pulling fs layer
9e16b7647122: Waiting
7838cf217961: Pulling fs layer
7838cf217961: Waiting
8fabacba1251: Verifying Checksum
8fabacba1251: Download complete
9e16b7647122: Download complete
12eaeb58df8c: Download complete
7838cf217961: Verifying Checksum
7838cf217961: Download complete
b556b825844b: Verifying Checksum
b556b825844b: Download complete
9bf6f242b112: Verifying Checksum
9bf6f242b112: Download complete
9bf6f242b112: Pull complete
8fabacba1251: Pull complete
b556b825844b: Pull complete
9e16b7647122: Pull complete
12eaeb58df8c: Pull complete
7838cf217961: Pull complete
Digest: sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89
Status: Downloaded newer image for ocaml/opam@sha256:b74751ba6ac22a6f19a91dfb20696498aab52c04a5ce04357ab0a12279da8e89
2026-01-29 18:05.15 ---> saved as "8776fb0af6fc53898862b86f46ca8cee0489b257aca99b5899191e17bb0d5004"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-29 18:05.15 ---> saved as "b8cca8bfd23834fb7e090e3c27f2170eb8281a065e79536f1e430ddc1b1c8118"
/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-01-29 18:05.44 ---> saved as "3585d06f098553452479d6c335da00495554b93675451a57278a9271d623ff6d"
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=fedora os-version=42
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-01-29 18:05.45 ---> saved as "f5857c76864baf8cb3e699c519d757325cd57ff2fcd775d702006da4494b4c41"
/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-01-29 18:05.53 ---> saved as "b6df9f59c19836f991f70bcd0501fd40466d07d3a25be361fb57a3445396f9a6"
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-29 18:06.00 ---> saved as "a640dbafd6ffae016645e303ab380e11dfb3138c0c636ab6aca9d5bbfd159bbb"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-29 18:06.22 ---> saved as "9fd51f684a3eb23d8cbf50fb9c91cf48f58170bf5675be2e177df3efcd45606e"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 42 - x86_64 - Updates 100% | 19.0 KiB/s | 20.6 KiB | 00m01s
- Fedora 42 - x86_64 100% | 44.9 KiB/s | 22.9 KiB | 00m01s
- Repositories loaded.
- Metadata cache created.
2026-01-29 18:06.32 ---> saved as "199d4fc62cc819dace8daef2810ecc27f6e21b650d274243e7ed55bcd21588f1"
/home/opam: (run (shell "opam pin add -k version -yn llvm.20-static 20-static"))
llvm is now pinned to version 20-static
2026-01-29 18:06.33 ---> saved as "aec286d486297a5b91fe1aaf624f79ca3f82e8fe37ed6d9b75b5cc21e29069e8"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall llvm.20-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 \"\\\"fedora-42\\\"\"; 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.20-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.20-static is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 11 packages
- install conf-bash 1 [required by conf-llvm-static]
- install conf-cmake 1 [required by llvm]
- install conf-llvm-static 20 [required by llvm]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by llvm]
- install dune 3.21.0 [required by ctypes]
- install dune-configurator 3.21.0 [required by ctypes]
- install integers 0.7.0 [required by ctypes]
- install llvm 20-static (pinned)
- 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 llvm-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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/sbin/sudo "yum" "install" "-y" "cmake" "llvm-devel"
- Updating and loading repositories:
- Repositories loaded.
- Package Arch Version Repository Size
- Installing:
- cmake x86_64 3.31.6-2.fc42 fedora 34.2 MiB
- llvm-devel x86_64 20.1.8-4.fc42 updates 28.9 MiB
- Installing dependencies:
- cmake-data noarch 3.31.6-2.fc42 fedora 8.5 MiB
- cmake-filesystem x86_64 3.31.6-2.fc42 fedora 0.0 B
- jsoncpp x86_64 1.9.6-1.fc42 fedora 261.6 KiB
- libedit-devel x86_64 3.1-56.20251016cvs.fc42 updates 59.4 KiB
- libuv x86_64 1:1.51.0-1.fc42 updates 570.2 KiB
- libzstd-devel x86_64 1.5.7-1.fc42 fedora 208.0 KiB
- llvm x86_64 20.1.8-4.fc42 updates 89.7 MiB
- llvm-googletest x86_64 20.1.8-4.fc42 updates 2.4 MiB
- llvm-static x86_64 20.1.8-4.fc42 updates 365.1 MiB
- llvm-test x86_64 20.1.8-4.fc42 updates 2.1 MiB
- ncurses-c++-libs x86_64 6.5-5.20250125.fc42 fedora 153.6 KiB
- ncurses-devel x86_64 6.5-5.20250125.fc42 fedora 883.7 KiB
- rhash x86_64 1.4.5-2.fc42 fedora 351.0 KiB
- vim-filesystem noarch 2:9.1.2086-1.fc42 updates 40.0 B
-
- Transaction Summary:
- Installing: 16 packages
-
- Total size of inbound packages is 93 MiB. Need to download 93 MiB.
- After this operation, 533 MiB extra will be used (install 533 MiB, remove 0 B).
- [ 1/16] cmake-filesystem-0:3.31.6-2.fc4 100% | 409.1 KiB/s | 17.6 KiB | 00m00s
- [ 2/16] jsoncpp-0:1.9.6-1.fc42.x86_64 100% | 5.6 MiB/s | 103.5 KiB | 00m00s
- [ 3/16] rhash-0:1.4.5-2.fc42.x86_64 100% | 8.1 MiB/s | 198.7 KiB | 00m00s
- [ 4/16] cmake-data-0:3.31.6-2.fc42.noar 100% | 2.1 MiB/s | 2.5 MiB | 00m01s
- [ 5/16] llvm-devel-0:20.1.8-4.fc42.x86_ 100% | 1.7 MiB/s | 4.8 MiB | 00m03s
- [ 6/16] llvm-googletest-0:20.1.8-4.fc42 100% | 1.8 MiB/s | 445.2 KiB | 00m00s
- [ 7/16] cmake-0:3.31.6-2.fc42.x86_64 100% | 584.4 KiB/s | 12.2 MiB | 00m21s
- [ 8/16] llvm-test-0:20.1.8-4.fc42.x86_6 100% | 975.8 KiB/s | 723.1 KiB | 00m01s
- [ 9/16] libedit-devel-0:3.1-56.20251016 100% | 1.6 MiB/s | 40.5 KiB | 00m00s
- [10/16] ncurses-devel-0:6.5-5.20250125. 100% | 923.3 KiB/s | 583.5 KiB | 00m01s
- [11/16] ncurses-c++-libs-0:6.5-5.202501 100% | 468.2 KiB/s | 37.9 KiB | 00m00s
- [12/16] libzstd-devel-0:1.5.7-1.fc42.x8 100% | 856.4 KiB/s | 53.1 KiB | 00m00s
- [13/16] vim-filesystem-2:9.1.2086-1.fc4 100% | 762.2 KiB/s | 15.2 KiB | 00m00s
- [14/16] libuv-1:1.51.0-1.fc42.x86_64 100% | 365.3 KiB/s | 266.3 KiB | 00m01s
- [15/16] llvm-0:20.1.8-4.fc42.x86_64 100% | 657.3 KiB/s | 23.2 MiB | 00m36s
- [16/16] llvm-static-0:20.1.8-4.fc42.x86 100% | 411.1 KiB/s | 48.3 MiB | 02m00s
- --------------------------------------------------------------------------------
- [16/16] Total 100% | 769.9 KiB/s | 93.5 MiB | 02m04s
- Running transaction
- [ 1/18] Verify package files 100% | 18.0 B/s | 16.0 B | 00m01s
- [ 2/18] Prepare transaction 100% | 90.0 B/s | 16.0 B | 00m00s
- [ 3/18] Installing cmake-filesystem-0:3 100% | 1.2 MiB/s | 7.6 KiB | 00m00s
- [ 4/18] Installing llvm-0:20.1.8-4.fc42 100% | 133.4 MiB/s | 89.8 MiB | 00m01s
- [ 5/18] Installing llvm-test-0:20.1.8-4 100% | 56.9 MiB/s | 2.1 MiB | 00m00s
- [ 6/18] Installing libuv-1:1.51.0-1.fc4 100% | 93.3 MiB/s | 573.0 KiB | 00m00s
- [ 7/18] Installing vim-filesystem-2:9.1 100% | 314.6 KiB/s | 4.7 KiB | 00m00s
- [ 8/18] Installing libzstd-devel-0:1.5. 100% | 68.0 MiB/s | 208.8 KiB | 00m00s
- [ 9/18] Installing ncurses-c++-libs-0:6 100% | 30.2 MiB/s | 154.8 KiB | 00m00s
- [10/18] Installing ncurses-devel-0:6.5- 100% | 25.8 MiB/s | 1.0 MiB | 00m00s
- [11/18] Installing libedit-devel-0:3.1- 100% | 21.8 MiB/s | 67.0 KiB | 00m00s
- [12/18] Installing llvm-static-0:20.1.8 100% | 163.7 MiB/s | 365.2 MiB | 00m02s
- [13/18] Installing llvm-googletest-0:20 100% | 94.9 MiB/s | 2.5 MiB | 00m00s
- [14/18] Installing rhash-0:1.4.5-2.fc42 100% | 10.5 MiB/s | 356.4 KiB | 00m00s
- [15/18] Installing jsoncpp-0:1.9.6-1.fc 100% | 10.7 MiB/s | 263.1 KiB | 00m00s
- [16/18] Installing cmake-data-0:3.31.6- 100% | 27.1 MiB/s | 9.1 MiB | 00m00s
- [17/18] Installing cmake-0:3.31.6-2.fc4 100% | 106.6 MiB/s | 34.2 MiB | 00m00s
- [18/18] Installing llvm-devel-0:20.1.8- 100% | 51.0 MiB/s | 29.6 MiB | 00m01s
- Complete!
+ /usr/sbin/rpm "-q" "--whatprovides" "cmake" "llvm-devel"
- cmake-3.31.6-2.fc42.x86_64
- llvm-devel-20.1.8-4.fc42.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-cmake.1 (cached)
-> retrieved conf-llvm-static.20 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-bash.1
-> installed conf-cmake.1
-> retrieved ctypes.0.24.0 (cached)
-> installed conf-llvm-static.20
-> retrieved dune.3.21.0, dune-configurator.3.21.0 (cached)
-> retrieved integers.0.7.0 (cached)
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.0
-> retrieved llvm.20-static (https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.8/llvm-project-20.1.8.src.tar.xz)
-> 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.20-static
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-29 18:11.33 ---> saved as "2f08a399ac236527bb492bd7ade53cee5ba77f6c3509122fb3785de2755cbc82"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test llvm.20-static) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile llvm 20-static (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved llvm.20-static (https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.8/llvm-project-20.1.8.src.tar.xz)
-> removed llvm.20-static
-> installed llvm.20-static
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-29 18:13.42 ---> saved as "a0cab073c644733472918ef04200bc2a80397d34cf2d0bd508e360b6b3ebeda6"
/home/opam: (run (shell "opam reinstall --with-test --verbose llvm.20-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 \"\\\"fedora-42\\\"\"; 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.20-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 20-static (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [llvm.20-static: extract]
-> retrieved llvm.20-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-20" "--libdir" "/home/opam/.opam/5.4/lib" "--cmake" "cmake3" "--make" "make" "--link-mode" "static" (CWD=/home/opam/.opam/5.4/.opam-switch/build/llvm.20-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-20
- + shift 2
- + [[ 8 -gt 0 ]]
- + case $1 in
- + [[ 8 -lt 2 ]]
- + libdir=/home/opam/.opam/5.4/lib
- + shift 2
- + [[ 6 -gt 0 ]]
- + case $1 in
- + [[ 6 -lt 2 ]]
- + cmake=cmake3
- + 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-20 --build-mode
- ++ filter_experimental_targets
- ++ llvm-config-20 --targets-built
- ++ sed 's/ /;/g'
- ++ sed s/ARC//g
- ++ sed s/CSKY//g
- ++ sed s/DirectX//g
- ++ sed s/SPIRV//g
- ++ sed s/M68k//g
- ++ sed s/Xtensa//g
- ++ xargs
- ++ llvm-config-20 --libdir
- ++ '[' static = shared ']'
- ++ echo FALSE
- + cmake3 -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/lib64/llvm20/lib64 -DLLVM_LINK_LLVM_DYLIB=FALSE -DLLVM_OCAML_OUT_OF_TREE=TRUE -DLLVM_OCAML_INSTALL_PATH=/home/opam/.opam/5.4/lib -DLLVM_OCAML_USE_HOMEBREW=FALSE
- CMake Deprecation Warning at /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/cmake/Modules/CMakePolicy.cmake:6 (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:8 (include)
-
-
- -- The C compiler identification is GNU 15.2.1
- -- The CXX compiler identification is GNU 15.2.1
- -- The ASM compiler identification is GNU
- -- Found assembler: /usr/sbin/cc
- -- Detecting C compiler ABI info
- -- Detecting C compiler ABI info - done
- -- Check for working C compiler: /usr/sbin/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/sbin/c++ - skipped
- -- Detecting CXX compile features
- -- Detecting CXX compile features - done
- -- Found Python3: /usr/sbin/python3.13 (found suitable version "3.13.11", minimum required is "3.8") found components: Interpreter
- -- Looking for __GLIBC__
- -- Looking for __GLIBC__ - found
- -- Looking for valgrind/valgrind.h
- -- Looking for valgrind/valgrind.h - not 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 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 shm_open in rt
- -- Looking for shm_open 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
- -- Could NOT find ZLIB (missing: ZLIB_LIBRARY ZLIB_INCLUDE_DIR)
- -- Could NOT find LibXml2 (missing: LIBXML2_LIBRARY LIBXML2_INCLUDE_DIR)
- -- Looking for histedit.h
- -- Looking for histedit.h - found
- -- Found LibEdit: /usr/include (found version "2.11")
- -- 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 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 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 pthread_getname_np
- -- Looking for pthread_getname_np - found
- -- Looking for pthread_setname_np
- -- Looking for pthread_setname_np - found
- -- Looking for pthread_get_name_np
- -- Looking for pthread_get_name_np - not found
- -- Looking for pthread_set_name_np
- -- Looking for pthread_set_name_np - not found
- -- Looking for dlopen
- -- Looking for dlopen - 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
- -- LLVM host triple: x86_64-unknown-linux-gnu
- -- Native target architecture is X86
- -- Threads enabled.
- -- Doxygen disabled.
- -- Found OCaml: /home/opam/.opam/5.4/bin/ocamlfind
- -- OCaml bindings enabled.
- -- Could NOT find Python module pygments
- -- Could NOT find Python module pygments.lexers.c_cpp
- -- Could NOT find 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_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 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_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
- -- 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/sbin/git (found version "2.52.0")
- -- Looking for logf128
- -- Looking for logf128 - found
- -- 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)
- -- LLVM FileCheck Found: /usr/sbin/FileCheck
- -- Google Benchmark version: v0.0.0, normalized to 0.0.0
- -- Looking for shm_open in rt
- -- Looking for shm_open in rt - found
- -- 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_WFLOAT_EQUAL
- -- Performing Test HAVE_CXX_FLAG_WFLOAT_EQUAL - Success
- -- Performing Test HAVE_CXX_FLAG_WOLD_STYLE_CAST
- -- Performing Test HAVE_CXX_FLAG_WOLD_STYLE_CAST - 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
- -- Compiling and running to test HAVE_GNU_POSIX_REGEX
- -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile
- -- Compiling and running to test HAVE_POSIX_REGEX
- -- Performing Test HAVE_POSIX_REGEX -- success
- -- Compiling and running to test HAVE_STEADY_CLOCK
- -- Performing Test HAVE_STEADY_CLOCK -- success
- -- Compiling and running to test HAVE_PTHREAD_AFFINITY
- -- Performing Test HAVE_PTHREAD_AFFINITY -- success
- -- Configuring done (25.8s)
- -- Generating done (6.4s)
- -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/build
- + make -j -Cbuild ocaml_all
- make: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/build'
- [ 0%] Built target ocaml_make_directory
- [ 0%] Building OCaml stub object file BPF_ocaml.o
- [ 0%] Building OCaml stub object file Mips_ocaml.o
- [ 0%] Building OCaml stub object file AMDGPU_ocaml.o
- [ 0%] Building OCaml stub object file ARM_ocaml.o
- [ 0%] Building OCaml stub object file Hexagon_ocaml.o
- [ 0%] Copying llvm.mli to build area
- [ 0%] Building OCaml stub object file Lanai_ocaml.o
- [ 0%] Building OCaml stub object file AArch64_ocaml.o
- [ 0%] Building OCaml stub object file AVR_ocaml.o
- [ 0%] Building OCaml stub object file WebAssembly_ocaml.o
- [ 0%] Building OCaml stub object file NVPTX_ocaml.o
- [ 0%] Building OCaml stub object file LoongArch_ocaml.o
- [ 0%] Copying llvm_ocaml.c to build area
- [ 0%] Building OCaml stub object file SystemZ_ocaml.o
- [ 0%] Building OCaml stub object file VE_ocaml.o
- [ 0%] Building OCaml stub object file Sparc_ocaml.o
- [ 0%] Building OCaml stub object file MSP430_ocaml.o
- [ 0%] Building OCaml stub object file PowerPC_ocaml.o
- [ 0%] Building OCaml stub object file RISCV_ocaml.o
- [ 0%] Building OCaml stub object file X86_ocaml.o
- [ 0%] Copying llvm.ml to build area
- [ 0%] Building OCaml stub object file XCore_ocaml.o
- [ 0%] Building OCaml stub object file llvm_ocaml.o
- [ 50%] Building OCaml library llvm_Lanai
- [ 50%] Building OCaml library llvm_AVR
- [ 50%] Building OCaml library llvm_Mips
- [ 50%] Building OCaml library llvm_BPF
- [ 50%] Building OCaml library llvm_WebAssembly
- [ 50%] Building OCaml library llvm_Hexagon
- [ 50%] Building OCaml library llvm_ARM
- [ 50%] Building OCaml library llvm_AMDGPU
- [ 50%] Building OCaml library llvm_LoongArch
- [ 50%] Building OCaml library llvm_SystemZ
- [ 50%] Building OCaml library llvm_VE
- [ 50%] Building OCaml library llvm_Sparc
- [ 50%] Building OCaml library llvm_PowerPC
- [ 50%] Building OCaml library llvm_NVPTX
- [ 50%] Building OCaml library llvm_XCore
- [ 50%] Building OCaml library llvm_AArch64
- [ 50%] Building OCaml library llvm_MSP430
- [ 50%] Building OCaml library llvm_RISCV
- [ 50%] Building OCaml library llvm_X86
- /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/build/bindings/ocaml/llvm/llvm_ocaml.c: In function 'llvm_const_nuw_neg':
- /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/build/bindings/ocaml/llvm/llvm_ocaml.c:1167:3: warning: 'LLVMConstNUWNeg' is deprecated: Use LLVMConstNull instead. [-Wdeprecated-declarations]
- 1167 | LLVMValueRef NegValue = LLVMConstNUWNeg(Value_val(Value));
- | ^~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/llvm/include/llvm-c/Core.h:18,
- from /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/build/bindings/ocaml/llvm/llvm_ocaml.c:21:
- /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/llvm/include/llvm-c/Core.h:2458:18: note: declared here
- 2458 | LLVMValueRef LLVMConstNUWNeg(LLVMValueRef ConstantVal),
- | ^~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/llvm/include/llvm-c/Deprecated.h:26:3: note: in definition of macro 'LLVM_ATTRIBUTE_C_DEPRECATED'
- 26 | decl __attribute__((deprecated(message)))
- | ^~~~
- /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/build/bindings/ocaml/llvm/llvm_ocaml.c: In function 'llvm_build_nuw_neg':
- /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/build/bindings/ocaml/llvm/llvm_ocaml.c:2374:7: warning: 'LLVMBuildNUWNeg' is deprecated: Use LLVMBuildNeg + LLVMSetNUW instead. [-Wdeprecated-declarations]
- 2374 | LLVMBuildNUWNeg(Builder_val(B), Value_val(X), String_val(Name)));
- | ^~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/llvm/include/llvm-c/Core.h:4401:42: note: declared here
- 4401 | LLVM_ATTRIBUTE_C_DEPRECATED(LLVMValueRef LLVMBuildNUWNeg(LLVMBuilderRef B,
- | ^~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/llvm/include/llvm-c/Deprecated.h:26:3: note: in definition of macro 'LLVM_ATTRIBUTE_C_DEPRECATED'
- 26 | decl __attribute__((deprecated(message)))
- | ^~~~
- [ 50%] Building OCaml documentation for llvm_AMDGPU
- [ 50%] Building OCaml documentation for llvm_AArch64
- [ 50%] Building OCaml documentation for llvm_ARM
- [ 50%] Building OCaml documentation for llvm_VE
- [ 50%] Building OCaml documentation for llvm_XCore
- [ 50%] Building OCaml documentation for llvm_LoongArch
- [ 50%] Building OCaml documentation for llvm_NVPTX
- [ 50%] Building OCaml documentation for llvm_Mips
- [ 50%] Building OCaml documentation for llvm_Sparc
- [ 50%] Building OCaml documentation for llvm_Lanai
- [ 50%] Building OCaml documentation for llvm_RISCV
- [ 50%] Building OCaml documentation for llvm_AVR
- [ 50%] Building OCaml documentation for llvm_X86
- [ 50%] Building OCaml documentation for llvm_Hexagon
- [ 50%] Building OCaml documentation for llvm_MSP430
- [ 50%] Building OCaml documentation for llvm_WebAssembly
- [ 50%] Building OCaml documentation for llvm_BPF
- [ 50%] Building OCaml documentation for llvm_SystemZ
- [ 50%] Building OCaml documentation for llvm_PowerPC
- Copying OCaml library component llvm_AArch64.mli to intermediate area
- Copying OCaml library component llvm_AMDGPU.mli to intermediate area
- Copying OCaml library component llvm_ARM.mli to intermediate area
- Copying OCaml library component llvm_VE.mli to intermediate area
- Copying OCaml library component llvm_XCore.mli to intermediate area
- Copying OCaml library component llvm_NVPTX.mli to intermediate area
- Copying OCaml library component llvm_LoongArch.mli to intermediate area
- Copying OCaml library component llvm_Sparc.mli to intermediate area
- Copying OCaml library component llvm_Mips.mli to intermediate area
- Copying OCaml library component llvm_Lanai.mli to intermediate area
- 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_X86.mli to intermediate area
- Copying OCaml library component llvm_Hexagon.mli to intermediate area
- Copying OCaml library component llvm_SystemZ.mli to intermediate area
- Copying OCaml library component llvm_BPF.mli to intermediate area
- Copying OCaml library component llvm_WebAssembly.mli to intermediate area
- Copying OCaml library component llvm_MSP430.mli to intermediate area
- Copying OCaml library component llvm_PowerPC.mli to intermediate area
- Copying OCaml library component llvm_AMDGPU.cma to intermediate area
- Copying OCaml library component llvm_AArch64.cma to intermediate area
- Copying OCaml library component llvm_ARM.cma to intermediate area
- Copying OCaml library component llvm_VE.cma to intermediate area
- Copying OCaml library component llvm_XCore.cma to intermediate area
- Copying OCaml library component llvm_NVPTX.cma to intermediate area
- Copying OCaml library component llvm_Sparc.cma to intermediate area
- Copying OCaml library component llvm_LoongArch.cma to intermediate area
- Copying OCaml library component llvm_Mips.cma to intermediate area
- Copying OCaml library component llvm_Lanai.cma to intermediate area
- Copying OCaml library component llvm_RISCV.cma to intermediate area
- Copying OCaml library component llvm_AVR.cma to intermediate area
- Copying OCaml library component llvm_X86.cma to intermediate area
- Copying OCaml library component llvm_Hexagon.cma to intermediate area
- Copying OCaml library component llvm_SystemZ.cma to intermediate area
- Copying OCaml library component llvm_WebAssembly.cma to intermediate area
- Copying OCaml library component llvm_BPF.cma to intermediate area
- Copying OCaml library component llvm_MSP430.cma to intermediate area
- Copying OCaml library component llvm_PowerPC.cma to intermediate area
- Copying OCaml library component libllvm_AMDGPU.a to intermediate area
- Copying OCaml library component libllvm_AArch64.a to intermediate area
- Copying OCaml library component libllvm_ARM.a to intermediate area
- Copying OCaml library component libllvm_VE.a to intermediate area
- Copying OCaml library component libllvm_XCore.a to intermediate area
- Copying OCaml library component libllvm_NVPTX.a to intermediate area
- Copying OCaml library component libllvm_Sparc.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_Lanai.a to intermediate area
- Copying OCaml library component libllvm_RISCV.a to intermediate area
- Copying OCaml library component libllvm_AVR.a to intermediate area
- Copying OCaml library component libllvm_X86.a to intermediate area
- Copying OCaml library component libllvm_Hexagon.a to intermediate area
- Copying OCaml library component libllvm_SystemZ.a to intermediate area
- Copying OCaml library component libllvm_BPF.a to intermediate area
- Copying OCaml library component libllvm_MSP430.a to intermediate area
- Copying OCaml library component libllvm_WebAssembly.a to intermediate area
- Copying OCaml library component libllvm_PowerPC.a to intermediate area
- Copying OCaml library component llvm_AMDGPU.cmxa to intermediate area
- Copying OCaml library component llvm_AArch64.cmxa to intermediate area
- Copying OCaml library component llvm_ARM.cmxa to intermediate area
- Copying OCaml library component llvm_VE.cmxa to intermediate area
- Copying OCaml library component llvm_NVPTX.cmxa to intermediate area
- Copying OCaml library component llvm_XCore.cmxa to intermediate area
- Copying OCaml library component llvm_Sparc.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_RISCV.cmxa to intermediate area
- Copying OCaml library component llvm_X86.cmxa to intermediate area
- Copying OCaml library component llvm_AVR.cmxa to intermediate area
- Copying OCaml library component llvm_Hexagon.cmxa to intermediate area
- Copying OCaml library component llvm_SystemZ.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_BPF.cmxa to intermediate area
- Copying OCaml library component llvm_PowerPC.cmxa to intermediate area
- Copying OCaml library component llvm_AMDGPU.a to intermediate area
- Copying OCaml library component llvm_AArch64.a to intermediate area
- Copying OCaml library component llvm_ARM.a to intermediate area
- Copying OCaml library component llvm_VE.a to intermediate area
- Copying OCaml library component llvm_NVPTX.a to intermediate area
- Copying OCaml library component llvm_XCore.a to intermediate area
- Copying OCaml library component llvm_Sparc.a to intermediate area
- Copying OCaml library component llvm_Mips.a to intermediate area
- Copying OCaml library component llvm_LoongArch.a to intermediate area
- Copying OCaml library component llvm_Lanai.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_Hexagon.a to intermediate area
- Copying OCaml library component llvm_AVR.a to intermediate area
- Copying OCaml library component llvm_SystemZ.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_PowerPC.a to intermediate area
- Copying OCaml library component llvm_BPF.a to intermediate area
- Copying OCaml library component llvm_AMDGPU.cmi to intermediate area
- Copying OCaml library component llvm_AArch64.cmi to intermediate area
- Copying OCaml library component llvm_ARM.cmi to intermediate area
- Copying OCaml library component llvm_VE.cmi to intermediate area
- Copying OCaml library component llvm_XCore.cmi to intermediate area
- Copying OCaml library component llvm_NVPTX.cmi to intermediate area
- Copying OCaml library component llvm_Mips.cmi to intermediate area
- Copying OCaml library component llvm_Sparc.cmi to intermediate area
- Copying OCaml library component llvm_LoongArch.cmi to intermediate area
- Copying OCaml library component llvm_Lanai.cmi to intermediate area
- Copying OCaml library component llvm_RISCV.cmi to intermediate area
- Copying OCaml library component llvm_X86.cmi to intermediate area
- Copying OCaml library component llvm_Hexagon.cmi 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_MSP430.cmi to intermediate area
- Copying OCaml library component llvm_WebAssembly.cmi to intermediate area
- Copying OCaml library component llvm_PowerPC.cmi to intermediate area
- Copying OCaml library component llvm_BPF.cmi to intermediate area
- Copying OCaml library component llvm_ARM.cmti to intermediate area
- Copying OCaml library component llvm_AArch64.cmti to intermediate area
- Copying OCaml library component llvm_AMDGPU.cmti to intermediate area
- Copying OCaml library component llvm_VE.cmti to intermediate area
- Copying OCaml library component llvm_XCore.cmti to intermediate area
- Copying OCaml library component llvm_NVPTX.cmti to intermediate area
- Copying OCaml library component llvm_Mips.cmti to intermediate area
- Copying OCaml library component llvm_LoongArch.cmti to intermediate area
- Copying OCaml library component llvm_Sparc.cmti to intermediate area
- Copying OCaml library component llvm_Lanai.cmti to intermediate area
- Copying OCaml library component llvm_RISCV.cmti to intermediate area
- Copying OCaml library component llvm_X86.cmti to intermediate area
- Copying OCaml library component llvm_SystemZ.cmti to intermediate area
- Copying OCaml library component llvm_AVR.cmti 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_WebAssembly.cmti to intermediate area
- Copying OCaml library component llvm_PowerPC.cmti to intermediate area
- Copying OCaml library component llvm_BPF.cmti to intermediate area
- Copying OCaml library component llvm_ARM.cmt to intermediate area
- Copying OCaml library component llvm_AArch64.cmt to intermediate area
- Copying OCaml library component llvm_AMDGPU.cmt to intermediate area
- Copying OCaml library component llvm_VE.cmt to intermediate area
- Copying OCaml library component llvm_XCore.cmt to intermediate area
- Copying OCaml library component llvm_NVPTX.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_Sparc.cmt to intermediate area
- Copying OCaml library component llvm_Lanai.cmt to intermediate area
- Copying OCaml library component llvm_RISCV.cmt to intermediate area
- Copying OCaml library component llvm_X86.cmt to intermediate area
- Copying OCaml library component llvm_SystemZ.cmt to intermediate area
- Copying OCaml library component llvm_AVR.cmt to intermediate area
- Copying OCaml library component llvm_Hexagon.cmt to intermediate area
- Copying OCaml library component llvm_MSP430.cmt to intermediate area
- Copying OCaml library component llvm_WebAssembly.cmt to intermediate area
- Copying OCaml library component llvm_PowerPC.cmt to intermediate area
- Copying OCaml library component llvm_BPF.cmt to intermediate area
- Copying OCaml library component llvm_AArch64.cmx to intermediate area
- Copying OCaml library component llvm_ARM.cmx to intermediate area
- Copying OCaml library component llvm_AMDGPU.cmx to intermediate area
- Copying OCaml library component llvm_VE.cmx to intermediate area
- Copying OCaml library component llvm_XCore.cmx to intermediate area
- Copying OCaml library component llvm_LoongArch.cmx to intermediate area
- Copying OCaml library component llvm_Mips.cmx to intermediate area
- Copying OCaml library component llvm_Sparc.cmx to intermediate area
- Copying OCaml library component llvm_NVPTX.cmx to intermediate area
- Copying OCaml library component llvm_Lanai.cmx to intermediate area
- Copying OCaml library component llvm_RISCV.cmx to intermediate area
- Copying OCaml library component llvm_X86.cmx to intermediate area
- Copying OCaml library component llvm_SystemZ.cmx to intermediate area
- Copying OCaml library component llvm_AVR.cmx to intermediate area
- Copying OCaml library component llvm_Hexagon.cmx to intermediate area
- Copying OCaml library component llvm_WebAssembly.cmx to intermediate area
- Copying OCaml library component llvm_PowerPC.cmx to intermediate area
- Copying OCaml library component llvm_MSP430.cmx to intermediate area
- Copying OCaml library component llvm_BPF.cmx to intermediate area
- [ 50%] Built target ocaml_llvm_AArch64
- [ 50%] Built target ocaml_llvm_ARM
- [ 50%] Built target ocaml_llvm_AMDGPU
- [ 50%] Built target ocaml_llvm_VE
- [ 50%] Built target ocaml_llvm_LoongArch
- [ 50%] Built target ocaml_llvm_XCore
- [ 50%] Built target ocaml_llvm_Mips
- [ 50%] Built target ocaml_llvm_Sparc
- [ 50%] Built target ocaml_llvm_NVPTX
- [ 50%] Built target ocaml_llvm_Lanai
- [ 50%] Built target ocaml_llvm_RISCV
- [ 50%] Built target ocaml_llvm_X86
- [ 50%] Built target ocaml_llvm_SystemZ
- [ 50%] Built target ocaml_llvm_AVR
- [ 50%] Built target ocaml_llvm_Hexagon
- [ 50%] Built target ocaml_llvm_WebAssembly
- [ 50%] Built target ocaml_llvm_PowerPC
- [ 50%] Built target ocaml_llvm_MSP430
- [ 50%] Built target ocaml_llvm_BPF
- [ 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_analysis.ml to build area
- [ 50%] Copying target_ocaml.c to build area
- [ 50%] Copying analysis_ocaml.c to build area
- [ 50%] Copying llvm_target.ml to build area
- [ 50%] Copying llvm_analysis.mli to build area
- [ 50%] Copying bitwriter_ocaml.c to build area
- [ 50%] Copying llvm_target.mli to build area
- [ 50%] Copying all_backends_ocaml.c to build area
- [100%] Copying llvm_bitreader.mli to build area
- [100%] Copying debuginfo_ocaml.c to build area
- [100%] Copying llvm_all_backends.ml to build area
- [100%] Copying transform_utils_ocaml.c to build area
- [100%] Copying llvm_transform_utils.mli to build area
- [100%] Copying bitreader_ocaml.c to build area
- [100%] Copying llvm_bitwriter.mli to build area
- [100%] Copying llvm_all_backends.mli to build area
- [100%] Copying llvm_bitwriter.ml to build area
- [100%] Copying llvm_linker.mli to build area
- [100%] Copying irreader_ocaml.c to build area
- [100%] Copying llvm_transform_utils.ml to build area
- [100%] Copying llvm_irreader.ml to build area
- [100%] Copying linker_ocaml.c to build area
- [100%] Copying llvm_debuginfo.ml to build area
- [100%] Copying llvm_irreader.mli to build area
- [100%] Copying llvm_bitreader.ml to build area
- [100%] Copying llvm_debuginfo.mli to build area
- [100%] Copying llvm_linker.ml to build area
- [100%] Building OCaml stub object file target_ocaml.o
- [100%] Building OCaml stub object file bitwriter_ocaml.o
- [100%] Building OCaml stub object file analysis_ocaml.o
- [100%] Building OCaml stub object file debuginfo_ocaml.o
- [100%] Building OCaml stub object file all_backends_ocaml.o
- [100%] Building OCaml stub object file transform_utils_ocaml.o
- [100%] Building OCaml stub object file irreader_ocaml.o
- [100%] Building OCaml stub object file bitreader_ocaml.o
- [100%] Building OCaml stub object file linker_ocaml.o
- [100%] Building OCaml library llvm_transform_utils
- [100%] Building OCaml library llvm_irreader
- [100%] Building OCaml library llvm_linker
- [100%] Building OCaml library llvm_bitreader
- [100%] Building OCaml library llvm_all_backends
- [100%] Building OCaml library llvm_bitwriter
- [100%] Building OCaml library llvm_analysis
- [100%] Building OCaml library llvm_target
- [100%] Building OCaml documentation for llvm_all_backends
- [100%] Building OCaml documentation for llvm_linker
- [100%] Building OCaml documentation for llvm_transform_utils
- [100%] Building OCaml documentation for llvm_irreader
- [100%] Building OCaml documentation for llvm_analysis
- [100%] Building OCaml documentation for llvm_bitreader
- [100%] Building OCaml documentation for llvm_bitwriter
- Copying OCaml library component llvm_all_backends.mli to intermediate area
- Copying OCaml library component llvm_irreader.mli to intermediate area
- Copying OCaml library component llvm_linker.mli to intermediate area
- Copying OCaml library component llvm_transform_utils.mli to intermediate area
- Copying OCaml library component llvm_all_backends.cma to intermediate area
- Copying OCaml library component llvm_analysis.mli to intermediate area
- Copying OCaml library component llvm_bitreader.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 llvm_analysis.cma to intermediate area
- Copying OCaml library component llvm_transform_utils.cma to intermediate area
- Copying OCaml library component llvm_bitreader.cma to intermediate area
- Copying OCaml library component llvm_bitwriter.mli to intermediate area
- Copying OCaml library component libllvm_all_backends.a 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 libllvm_analysis.a to intermediate area
- Copying OCaml library component libllvm_transform_utils.a to intermediate area
- Copying OCaml library component libllvm_bitreader.a to intermediate area
- Copying OCaml library component llvm_bitwriter.cma to intermediate area
- Copying OCaml library component llvm_all_backends.cmxa to intermediate area
- Copying OCaml library component llvm_linker.cmxa to intermediate area
- Copying OCaml library component llvm_irreader.cmxa to intermediate area
- Copying OCaml library component llvm_analysis.cmxa to intermediate area
- Copying OCaml library component llvm_transform_utils.cmxa to intermediate area
- Copying OCaml library component llvm_bitreader.cmxa to intermediate area
- Copying OCaml library component libllvm_bitwriter.a to intermediate area
- Copying OCaml library component llvm_all_backends.a to intermediate area
- Copying OCaml library component llvm_linker.a to intermediate area
- Copying OCaml library component llvm_irreader.a to intermediate area
- [100%] Building OCaml documentation for llvm_target
- Copying OCaml library component llvm_bitreader.a to intermediate area
- Copying OCaml library component llvm_transform_utils.a to intermediate area
- Copying OCaml library component llvm_analysis.a to intermediate area
- Copying OCaml library component llvm_bitwriter.cmxa to intermediate area
- Copying OCaml library component llvm_all_backends.cmi 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_bitreader.cmi to intermediate area
- Copying OCaml library component llvm_transform_utils.cmi to intermediate area
- Copying OCaml library component llvm_analysis.cmi to intermediate area
- Copying OCaml library component llvm_bitwriter.a to intermediate area
- Copying OCaml library component llvm_all_backends.cmti to intermediate area
- Copying OCaml library component llvm_linker.cmti to intermediate area
- Copying OCaml library component llvm_irreader.cmti to intermediate area
- Copying OCaml library component llvm_bitreader.cmti to intermediate area
- Copying OCaml library component llvm_transform_utils.cmti to intermediate area
- Copying OCaml library component llvm_analysis.cmti to intermediate area
- Copying OCaml library component llvm_bitwriter.cmi to intermediate area
- Copying OCaml library component llvm_all_backends.cmt to intermediate area
- [100%] Building OCaml library llvm_debuginfo
- Copying OCaml library component llvm_linker.cmt to intermediate area
- Copying OCaml library component llvm_irreader.cmt to intermediate area
- Copying OCaml library component llvm_transform_utils.cmt to intermediate area
- Copying OCaml library component llvm_bitreader.cmt to intermediate area
- Copying OCaml library component llvm_target.mli to intermediate area
- Copying OCaml library component llvm_analysis.cmt to intermediate area
- Copying OCaml library component llvm_bitwriter.cmti to intermediate area
- Copying OCaml library component llvm_all_backends.cmx to intermediate area
- Copying OCaml library component llvm_linker.cmx to intermediate area
- Copying OCaml library component llvm_transform_utils.cmx to intermediate area
- Copying OCaml library component llvm_irreader.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_analysis.cmx to intermediate area
- Copying OCaml library component llvm_bitwriter.cmt to intermediate area
- [100%] Built target ocaml_llvm_all_backends
- [100%] Built target ocaml_llvm_linker
- [100%] Built target ocaml_llvm_transform_utils
- [100%] Built target ocaml_llvm_irreader
- [100%] Built target ocaml_llvm_bitreader
- Copying OCaml library component libllvm_target.a to intermediate area
- [100%] Built target ocaml_llvm_analysis
- Copying OCaml library component llvm_bitwriter.cmx to intermediate area
- Copying OCaml library component llvm_target.cmxa to intermediate area
- [100%] Built target ocaml_llvm_bitwriter
- Copying OCaml library component llvm_target.a to intermediate area
- Copying OCaml library component llvm_target.cmi to intermediate area
- 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
- [100%] Built target ocaml_llvm_target
- [100%] Building OCaml documentation for llvm_debuginfo
- [100%] Copying passbuilder_ocaml.c to build area
- [100%] Copying llvm_passbuilder.mli to build area
- [100%] Copying llvm_executionengine.mli to build area
- [100%] Copying executionengine_ocaml.c to build area
- [100%] Copying llvm_passbuilder.ml to build area
- [100%] Copying llvm_executionengine.ml to build area
- [100%] Building OCaml stub object file passbuilder_ocaml.o
- [100%] Building OCaml stub object file executionengine_ocaml.o
- Copying OCaml library component llvm_debuginfo.mli to intermediate area
- Copying OCaml library component llvm_debuginfo.cma to intermediate area
- Copying OCaml library component libllvm_debuginfo.a to intermediate area
- [100%] Building OCaml library llvm_passbuilder
- Copying OCaml library component llvm_debuginfo.cmxa to intermediate area
- [100%] Building OCaml library llvm_executionengine
- Copying OCaml library component llvm_debuginfo.a to intermediate area
- Copying OCaml library component llvm_debuginfo.cmi to intermediate area
- Copying OCaml library component llvm_debuginfo.cmti to intermediate area
- Copying OCaml library component llvm_debuginfo.cmt to intermediate area
- Copying OCaml library component llvm_debuginfo.cmx to intermediate area
- [100%] Built target ocaml_llvm_debuginfo
- [100%] Building OCaml documentation for llvm_passbuilder
- [100%] Building OCaml documentation for llvm_executionengine
- Copying OCaml library component llvm_passbuilder.mli to intermediate area
- Copying OCaml library component llvm_passbuilder.cma to intermediate area
- Copying OCaml library component llvm_executionengine.mli to intermediate area
- Copying OCaml library component libllvm_passbuilder.a to intermediate area
- Copying OCaml library component llvm_executionengine.cma to intermediate area
- Copying OCaml library component llvm_passbuilder.cmxa to intermediate area
- Copying OCaml library component libllvm_executionengine.a to intermediate area
- Copying OCaml library component llvm_passbuilder.a to intermediate area
- Copying OCaml library component llvm_executionengine.cmxa to intermediate area
- Copying OCaml library component llvm_passbuilder.cmi to intermediate area
- Copying OCaml library component llvm_executionengine.a to intermediate area
- Copying OCaml library component llvm_passbuilder.cmti to intermediate area
- Copying OCaml library component llvm_executionengine.cmi to intermediate area
- Copying OCaml library component llvm_passbuilder.cmt to intermediate area
- Copying OCaml library component llvm_executionengine.cmti to intermediate area
- Copying OCaml library component llvm_executionengine.cmt to intermediate area
- Copying OCaml library component llvm_passbuilder.cmx to intermediate area
- Copying OCaml library component llvm_executionengine.cmx to intermediate area
- [100%] Built target ocaml_llvm_passbuilder
- [100%] Built target ocaml_llvm_executionengine
- [100%] Built target ocaml_all
- make: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/llvm.20-static/build'
-> compiled llvm.20-static
-> removed llvm.20-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-20" "--libdir" "/home/opam/.opam/5.4/lib" "--cmake" "cmake3" "--make" "make" "--link-mode" "static" (CWD=/home/opam/.opam/5.4/.opam-switch/build/llvm.20-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-20
- + shift 2
- + [[ 8 -gt 0 ]]
- + case $1 in
- + [[ 8 -lt 2 ]]
- + libdir=/home/opam/.opam/5.4/lib
- + shift 2
- + [[ 6 -gt 0 ]]
- + case $1 in
- + [[ 6 -lt 2 ]]
- + cmake=cmake3
- + 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
- + cmake3 -Pbuild/bindings/ocaml/cmake_install.cmake
- -- Install configuration: "RelWithDebInfo"
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_all_backends.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_all_backends.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_all_backends.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_all_backends.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_all_backends.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_all_backends.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_all_backends.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_all_backends.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_all_backends.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_analysis.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_analysis.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_analysis.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_analysis.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_analysis.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_analysis.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_analysis.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_analysis.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_analysis.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AArch64.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AArch64.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_AArch64.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AArch64.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AArch64.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AArch64.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AArch64.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AArch64.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AArch64.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_AArch64
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AMDGPU.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AMDGPU.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_AMDGPU.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AMDGPU.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AMDGPU.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AMDGPU.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AMDGPU.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AMDGPU.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AMDGPU.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_AMDGPU
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_ARM.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_ARM.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_ARM.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_ARM.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_ARM.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_ARM.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_ARM.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_ARM.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_ARM.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_ARM
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AVR.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AVR.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_AVR.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AVR.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AVR.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AVR.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AVR.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AVR.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_AVR.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_AVR
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_BPF.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_BPF.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_BPF.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_BPF.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_BPF.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_BPF.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_BPF.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_BPF.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_BPF.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_BPF
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Hexagon.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Hexagon.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_Hexagon.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Hexagon.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Hexagon.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Hexagon.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Hexagon.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Hexagon.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Hexagon.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_Hexagon
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Lanai.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Lanai.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_Lanai.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Lanai.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Lanai.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Lanai.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Lanai.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Lanai.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Lanai.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_Lanai
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_LoongArch.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_LoongArch.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_LoongArch.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_LoongArch.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_LoongArch.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_LoongArch.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_LoongArch.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_LoongArch.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_LoongArch.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_LoongArch
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Mips.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Mips.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_Mips.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Mips.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Mips.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Mips.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Mips.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Mips.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Mips.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_Mips
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_MSP430.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_MSP430.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_MSP430.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_MSP430.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_MSP430.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_MSP430.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_MSP430.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_MSP430.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_MSP430.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_MSP430
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_NVPTX.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_NVPTX.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_NVPTX.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_NVPTX.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_NVPTX.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_NVPTX.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_NVPTX.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_NVPTX.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_NVPTX.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_NVPTX
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_PowerPC.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_PowerPC.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_PowerPC.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_PowerPC.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_PowerPC.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_PowerPC.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_PowerPC.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_PowerPC.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_PowerPC.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_PowerPC
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_RISCV.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_RISCV.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_RISCV.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_RISCV.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_RISCV.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_RISCV.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_RISCV.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_RISCV.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_RISCV.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_RISCV
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Sparc.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Sparc.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_Sparc.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Sparc.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Sparc.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Sparc.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Sparc.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Sparc.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_Sparc.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_Sparc
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_SystemZ.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_SystemZ.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_SystemZ.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_SystemZ.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_SystemZ.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_SystemZ.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_SystemZ.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_SystemZ.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_SystemZ.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_SystemZ
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_VE.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_VE.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_VE.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_VE.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_VE.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_VE.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_VE.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_VE.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_VE.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_VE
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_WebAssembly.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_WebAssembly.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_WebAssembly.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_WebAssembly.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_WebAssembly.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_WebAssembly.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_WebAssembly.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_WebAssembly.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_WebAssembly.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_WebAssembly
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_X86.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_X86.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_X86.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_X86.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_X86.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_X86.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_X86.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_X86.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_X86.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_X86
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_XCore.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_XCore.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_XCore.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_XCore.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_XCore.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_XCore.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_XCore.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_XCore.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_XCore.cmx
- -- Installing: /home/opam/.opam/5.4/lib/META.llvm_XCore
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitreader.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitreader.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_bitreader.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitreader.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitreader.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitreader.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitreader.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitreader.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitreader.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitwriter.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitwriter.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_bitwriter.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitwriter.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitwriter.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitwriter.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitwriter.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitwriter.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_bitwriter.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_debuginfo.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_debuginfo.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_debuginfo.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_debuginfo.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_debuginfo.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_debuginfo.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_debuginfo.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_debuginfo.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_debuginfo.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_irreader.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_irreader.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_irreader.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_irreader.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_irreader.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_irreader.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_irreader.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_irreader.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_irreader.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_linker.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_linker.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_linker.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_linker.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_linker.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_linker.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_linker.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_linker.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_linker.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_target.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_target.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_target.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_target.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_target.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_target.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_target.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_target.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_target.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_passbuilder.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_passbuilder.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_passbuilder.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_passbuilder.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_passbuilder.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_passbuilder.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_passbuilder.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_passbuilder.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_passbuilder.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_transform_utils.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_transform_utils.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_transform_utils.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_transform_utils.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_transform_utils.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_transform_utils.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_transform_utils.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_transform_utils.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_transform_utils.cmx
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_executionengine.mli
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_executionengine.cma
- -- Installing: /home/opam/.opam/5.4/lib/llvm/libllvm_executionengine.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_executionengine.cmxa
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_executionengine.a
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_executionengine.cmi
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_executionengine.cmti
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_executionengine.cmt
- -- Installing: /home/opam/.opam/5.4/lib/llvm/llvm_executionengine.cmx
-> installed llvm.20-static
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-29 18:15.31 ---> saved as "ce3686bee803f0cc8a7b20ca7e7975a056d917c68cf925500dc45ff22c5980da"
Job succeeded
2026-01-29 18:15.42: Job succeeded