- github
- ocaml
- opam-repository
- 19c70f
- compilers,4.14,dune.3.22.0~alpha2,revdeps,ocapic.3.5
(not at the head of any monitored branch or PR)
2026-03-16 19:17.33: New job: test ocapic.3.5 with dune.3.22.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29547/head (19c70fd6a788b154ec5e9fe26bca1d12fb2519be)
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/29547/head" && git reset --hard 19c70fd6
git fetch origin master
git merge --no-edit 4f056bfedf536e66065c3783e694e6aa0b38261a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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.3.22.0~alpha2 3.22.0~alpha2
RUN opam reinstall dune.3.22.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.3.22.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 ocapic.3.5; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocapic.3.5' && 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 ocapic.3.5) || true
RUN opam reinstall --with-test --verbose ocapic.3.5; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocapic.3.5' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-16 19:17.33: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-dune.3.22.0~alpha2-ocapic.3.5-19c70fd6a788b154ec5e9fe26bca1d12fb2519be"
2026-03-16 19:17.33: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(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.3.22.0~alpha2 3.22.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.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.3.22.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 ocapic.3.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'ocapic.3.5' && 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 ocapic.3.5) || true"))
(run (shell "opam reinstall --with-test --verbose ocapic.3.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'ocapic.3.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-16 19:17.33: Waiting for resource in pool OCluster
2026-03-17 04:30.46: Waiting for worker…
2026-03-17 04:32.35: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 4f056bfedf Merge pull request #29543 from Zaneham/add-olint-0.1.0
Updating 4f056bfedf..19c70fd6a7
Fast-forward
.../chrome-trace/chrome-trace.3.22.0~alpha2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.0~alpha2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.0~alpha2/opam | 39 +++++++++++
.../dune-build-info.3.22.0~alpha2/opam | 45 +++++++++++++
.../dune-configurator.3.22.0~alpha2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.0~alpha2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.0~alpha2/opam | 50 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.0~alpha2/opam | 37 +++++++++++
packages/dune/dune.3.22.0~alpha2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.0~alpha2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.0~alpha2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.0~alpha2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.0~alpha2/opam | 46 +++++++++++++
.../top-closure/top-closure.3.22.0~alpha2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.0~alpha2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.22.0~alpha2/opam
create mode 100644 packages/dune/dune.3.22.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.22.0~alpha2/opam
create mode 100644 packages/fs-io/fs-io.3.22.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.22.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.22.0~alpha2/opam
create mode 100644 packages/top-closure/top-closure.3.22.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.22.0~alpha2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-17 04:32.40 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 04:32.40 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 04:32.40 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-17 04:32.40 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-17 04:32.40 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 04:32.41 ---> using "bac94271bd2933048ab9ec083de7359406ae7b709f9e625d1aacde394e5b6b85" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 04:32.41 ---> using "1963dd823dac22306d550e5e9c9f971346ae5d465407ab924aff86b04a5120b3" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 1s (10.8 MB/s)
- Reading package lists...
-
2026-03-17 04:32.41 ---> using "2bbae9754f2da55382df5a713573b4f2579b518f80eaef97920d7868fdc429fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2"))
dune is now pinned to version 3.22.0~alpha2
2026-03-17 04:32.41 ---> using "3b312e1ba2e2d3ce6c50234ba2e62c6d827f15439acf5c47c65286f0b2bce15a" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.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.3.22.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.3.22.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha2 (cached)
-> installed dune.3.22.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 04:32.41 ---> using "79a7862cc80cedc04a487927a5645f883e0c17c692a64a036ab827a7afe98a62" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocapic.3.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'ocapic.3.5' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocapic.3.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 11 packages
- install camlp4 4.14+1 [required by ocapic]
- install conf-libX11 1 [required by graphics]
- install conf-libXft 1 [required by graphics]
- install conf-pkg-config 4 [required by graphics]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.22.0~alpha2 [required by graphics]
- install graphics 5.2.0 [required by ocapic]
- install obytelib 1.6 [required by ocapic]
- install ocamlbuild 0.16.1 [required by ocapic]
- install ocamlclean 2.3 [required by ocapic]
- install ocapic 3.5
The following system packages will first need to be installed:
libxft-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libxft-dev" "pkg-config"
- Preconfiguring packages ...
- Selecting previously unselected package bzip2-doc.
- (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 .../00-bzip2-doc_1.0.8-6_all.deb ...
- Unpacking bzip2-doc (1.0.8-6) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../01-fonts-dejavu-mono_2.37-8_all.deb ...
- Unpacking fonts-dejavu-mono (2.37-8) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../02-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../03-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../04-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../05-libbz2-dev_1.0.8-6_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../06-libexpat1-dev_2.7.1-2_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../09-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../10-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) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../11-libpng-dev_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libfreetype-dev:amd64.
- Preparing to unpack .../12-libfreetype-dev_2.13.3+dfsg-1_amd64.deb ...
- Unpacking libfreetype-dev:amd64 (2.13.3+dfsg-1) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../13-uuid-dev_2.41-5_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../14-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../15-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../16-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libfontconfig-dev:amd64.
- Preparing to unpack .../17-libfontconfig-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libfontconfig1-dev:amd64.
- Preparing to unpack .../18-libfontconfig1-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../19-libpng-tools_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng-tools (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../20-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../21-libxft2_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../22-libxrender-dev_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libxft-dev:amd64.
- Preparing to unpack .../23-libxft-dev_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft-dev:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../24-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up bzip2-doc (1.0.8-6) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libexpat1-dev:amd64 (2.7.1-2) ...
- Setting up uuid-dev:amd64 (2.41-5) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libxrender-dev:amd64 (1:0.9.12-1) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libbz2-dev:amd64 (1.0.8-6) ...
- Setting up libpng-tools (1.6.48-1+deb13u3) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libpng-dev:amd64 (1.6.48-1+deb13u3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libxft2:amd64 (2.3.6-1+b4) ...
- Setting up libfreetype-dev:amd64 (2.13.3+dfsg-1) ...
- Setting up libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Setting up libxft-dev:amd64 (2.3.6-1+b4) ...
- Setting up libfontconfig1-dev:amd64 (2.15.0-2.3) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlp4.4.14+1 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-pkg-config.4
-> installed conf-libX11.1
-> installed conf-libXft.1
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.0~alpha2 (cached)
-> retrieved graphics.5.2.0 (cached)
-> retrieved obytelib.1.6 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlclean.2.3 (cached)
-> retrieved ocapic.3.5 (cached)
-> installed dune-configurator.3.22.0~alpha2
-> installed graphics.5.2.0
-> installed ocamlbuild.0.16.1
-> installed obytelib.1.6
-> installed ocamlclean.2.3
-> installed camlp4.4.14+1
-> installed ocapic.3.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 04:34.26 ---> saved as "e773719f65d28d56d682bf5c1120c820d369f4d3c3381d8421abd0a2893b4b39"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ocapic.3.5) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ocapic 3.5
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocapic.3.5 (https://opam.ocaml.org/cache)
-> removed ocapic.3.5
-> installed ocapic.3.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 04:34.48 ---> saved as "714619d7e84b77986600202f2b38a64e2af50665ea59746541582baf4f988105"
/home/opam: (run (shell "opam reinstall --with-test --verbose ocapic.3.5;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-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\" != 'ocapic.3.5' && 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 ocapic 3.5
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [ocapic.3.5: extract]
-> retrieved ocapic.3.5 (cached)
Processing 2/4: [ocapic: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "-prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5)
- 1 selected PIC: 18f4620
- ** OCaPIC configuration completed successfully **
Processing 2/4: [ocapic: make all]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "all" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5)
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/bc2asm'
- cp /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/etc/config.ml config.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlbuild -cflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -lflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -no-links -classic-display -cflags -I,+../obytelib -lflags -I,+../obytelib,obytelib.cmxa main.native
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules main.ml > main.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules code.ml > code.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules constants.ml > constants.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules instr.ml > instr.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o constants.cmo constants.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o instr.cmo instr.ml
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules config.ml > config.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules configs.ml > configs.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules data.ml > data.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules prim.ml > prim.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o code.cmo code.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o config.cmo config.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o configs.cmo configs.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o data.cmo data.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o prim.cmo prim.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o main.cmo main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o constants.cmx constants.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o instr.cmx instr.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o code.cmx code.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o config.cmx config.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o configs.cmx configs.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o data.cmx data.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o prim.cmx prim.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib -o main.cmx main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -I +../obytelib obytelib.cmxa constants.cmx instr.cmx code.cmx config.cmx configs.cmx data.cmx prim.cmx main.cmx -o main.native
- touch _build/main.native
- cp _build/main.native /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/bc2asm
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/bc2asm'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/reggen'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlopt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence reggen.ml -o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/reggen
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/reggen'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/rtgen'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlopt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence rtgen.ml -o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/rtgen
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/rtgen'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/pics'
- mkdir -p /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/18f4620
- /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/rtgen < pic18f4620.reg > /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/18f4620/pic.ml
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/pics'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -c serial.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -thread -c serial.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -thread -c simul.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -thread -c simul.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlopt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -c serial.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlopt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -c simul.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini serial.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini simul.mli
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -ccopt -Wall -ccopt -O3 -c shared.c
- cp shared.o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/shared.o
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -ccopt -Wall -ccopt -O3 -c sf_regs.c
- cp sf_regs.o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/sf_regs.o
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -ccopt -Wall -ccopt -O3 -c simu.c
- cp simu.o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/simu.o
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -ccopt -Wall -ccopt -O3 -c cserial.c
- cp cserial.o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/cserial.o
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -ccopt -Wall -ccopt -O3 -c ceeprom.c
- cp ceeprom.o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/ceeprom.o
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -ccopt -Wall -ccopt -O3 -c stds.c
- cp stds.o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/stds.o
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd'
- cp /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/etc/config.ml config.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlbuild -cflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -lflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -no-links -classic-display -cflags -thread,-I,/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra,-I,+../graphics -lflags -thread,-I,/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra,-I,+../graphics,unix.cmxa,graphics.cmxa,threads.cmxa,simul.cmx main.native
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules main.ml > main.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules display.ml > display.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules cgram.ml > cgram.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules types.ml > types.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o types.cmo types.ml
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules ddram.ml > ddram.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules cgrom.ml > cgrom.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules config.ml > config.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o config.cmo config.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o cgrom.cmo cgrom.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o cgram.cmo cgram.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o ddram.cmo ddram.ml
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules proto.ml > proto.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o display.cmo display.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o proto.cmo proto.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o main.cmo main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o types.cmx types.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o config.cmx config.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o cgrom.cmx cgrom.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o cgram.cmx cgram.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o ddram.cmx ddram.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o display.cmx display.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o proto.cmx proto.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o main.cmx main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics unix.cmxa graphics.cmxa threads.cmxa simul.cmx types.cmx cgram.cmx config.cmx cgrom.cmx ddram.cmx display.cmx proto.cmx main.cmx -o main.native
- cp _build/main.native /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/ocapic_lcd_simulator
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/goblet'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlopt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I +../graphics unix.cmxa threads.cmxa graphics.cmxa main.ml -o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/ocapic_goblet_simulator
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/goblet'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/dip40'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlopt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics unix.cmxa threads.cmxa graphics.cmxa simul.cmx main.ml -o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/ocapic_dip40_simulator
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/dip40'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/circuit'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlbuild -cflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -lflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -no-links -classic-display -cflags -thread,-I,/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra,-I,/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build,-I,+../graphics -lflags -thread,-I,/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra,-I,/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build,-I,+../graphics,unix.cmxa,graphics.cmxa,threads.cmxa,simul.cmx,types.cmx,config.cmx,cgrom.cmx,cgram.cmx,ddram.cmx,display.cmx,proto.cmx main.native
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules main.ml > main.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules component.ml > component.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules color.ml > color.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules window.ml > window.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o color.cmo color.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o window.cmo window.ml
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q lexer.mll
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules lexer.ml > lexer.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlyacc parser.mly
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules parser.mli > parser.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o component.cmo component.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o parser.cmi parser.mli
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o lexer.cmo lexer.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o main.cmo main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o color.cmx color.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o window.cmx window.ml
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules parser.ml > parser.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o component.cmx component.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o parser.cmx parser.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o lexer.cmx lexer.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics -o main.cmx main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/lcd/_build -I +../graphics unix.cmxa graphics.cmxa threads.cmxa simul.cmx types.cmx config.cmx cgrom.cmx cgram.cmx ddram.cmx display.cmx proto.cmx color.cmx window.cmx component.cmx parser.cmx lexer.cmx main.cmx -o main.native
- cp _build/main.native /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/ocapic_circuit_simulator
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/circuit'
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/keyboard'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlbuild -cflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -lflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -no-links -classic-display -cflags -thread,-I,/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra,-I,+../graphics -lflags -thread,-I,/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra,-I,+../graphics,unix.cmxa,graphics.cmxa,threads.cmxa,simul.cmx main.native
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules main.ml > main.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o main.cmo main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics -o main.cmx main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -I /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib/extra -I +../graphics unix.cmxa graphics.cmxa threads.cmxa simul.cmx main.cmx -o main.native
- cp _build/main.native /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/ocapic_keyboard_simulator
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/keyboard'
- rm ceeprom.o cserial.o sf_regs.o shared.o stds.o simu.o
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/ocapic'
- cp /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/etc/config.ml config.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlopt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -c config.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlopt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -c ocapic.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlopt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence config.cmx ocapic.cmx -o /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/ocapic
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/ocapic'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/ocasim'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlbuild -cflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -lflags -w,@a-4-70,-warn-error,A,-safe-string,-strict-formats,-strict-sequence -no-links -classic-display -cflags -thread,-g -lflags \
- -thread,unix.cmxa,threads.cmxa,-g -lflag /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/simu.c -lflag /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/shared.c -lflag /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/sf_regs.c -lflag /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/ceeprom.c main.native
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules main.ml > main.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules code.ml > code.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules flash.ml > flash.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules hexfile.ml > hexfile.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o hexfile.cmo hexfile.ml
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules instr.ml > instr.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o flash.cmo flash.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o instr.cmo instr.ml
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules interp.ml > interp.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules lstfile.ml > lstfile.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules ram.ml > ram.ml.depends
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules sfr.ml > sfr.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o sfr.cmo sfr.ml
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules tools.ml > tools.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o ram.cmo ram.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o lstfile.cmo lstfile.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o tools.cmo tools.ml
- + /home/opam/.opam/4.14/bin/ocamldep.opt -modules trigs.ml > trigs.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o code.cmo code.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o interp.cmo interp.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o trigs.cmo trigs.ml
- + /home/opam/.opam/4.14/bin/ocamlc.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o main.cmo main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o hexfile.cmx hexfile.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o flash.cmx flash.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o instr.cmx instr.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o sfr.cmx sfr.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o ram.cmx ram.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o lstfile.cmx lstfile.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o tools.cmx tools.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o code.cmx code.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o interp.cmx interp.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o trigs.cmx trigs.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -c -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread -g -o main.cmx main.ml
- + /home/opam/.opam/4.14/bin/ocamlopt.opt -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -thread unix.cmxa threads.cmxa -g /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/simu.c /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/shared.c /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/sf_regs.c /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/simulator/ceeprom.c hexfile.cmx flash.cmx instr.cmx code.cmx lstfile.cmx sfr.cmx ram.cmx tools.cmx interp.cmx trigs.cmx main.cmx -o main.native
- cp _build/main.native /home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/bin/ocasim
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/src/ocasim'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib'
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -nostdlib -nopervasives -c camlinternalFormatBasics.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -absname -no-alias-deps -nostdlib -nopervasives -c -w -49 stdlib.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c array.mli -o stdlib__array.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c arrayLabels.mli -o stdlib__arrayLabels.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c char.mli -o stdlib__char.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c list.mli -o stdlib__list.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c bytesLabels.mli -o stdlib__bytesLabels.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c bytes.mli -o stdlib__bytes.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c obj.mli -o stdlib__obj.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c camlinternalLazy.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c camlinternalMod.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c sys.mli -o stdlib__sys.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c map.mli -o stdlib__map.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c camlinternalOO.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c eeprom.mli -o stdlib__eeprom.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c gc.mli -o stdlib__gc.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c stream.mli -o stdlib__stream.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c genlex.mli -o stdlib__genlex.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c string.mli -o stdlib__string.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c int32.mli -o stdlib__int32.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c int64.mli -o stdlib__int64.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c random.mli -o stdlib__random.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c hashtbl.mli -o stdlib__hashtbl.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c lazy.mli -o stdlib__lazy.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c listLabels.mli -o stdlib__listLabels.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c set.mli -o stdlib__set.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c moreLabels.mli -o stdlib__moreLabels.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c nap.mli -o stdlib__nap.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c nativeint.mli -o stdlib__nativeint.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c oo.mli -o stdlib__oo.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c queue.mli -o stdlib__queue.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c serial.mli -o stdlib__serial.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c sort.mli -o stdlib__sort.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c stack.mli -o stdlib__stack.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c std_exit.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c stdLabels.mli -o stdlib__stdLabels.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c stringLabels.mli -o stdlib__stringLabels.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c uchar.mli -o stdlib__uchar.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c buffer.mli -o stdlib__buffer.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c camlinternalFormat.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c printf.mli -o stdlib__printf.cmi
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -nostdlib -nopervasives -c camlinternalFormatBasics.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -absname -no-alias-deps -nostdlib -nopervasives -c -w -49 stdlib.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c -w -3 arrayLabels.ml -o stdlib__arrayLabels.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c array.ml -o stdlib__array.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c char.ml -o stdlib__char.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c list.ml -o stdlib__list.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c -w -3 bytesLabels.ml -o stdlib__bytesLabels.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c bytes.ml -o stdlib__bytes.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c obj.ml -o stdlib__obj.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c camlinternalLazy.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c camlinternalMod.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c sys.ml -o stdlib__sys.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c map.ml -o stdlib__map.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c camlinternalOO.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c eeprom.ml -o stdlib__eeprom.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c gc.ml -o stdlib__gc.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c genlex.ml -o stdlib__genlex.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c string.ml -o stdlib__string.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c int32.ml -o stdlib__int32.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c int64.ml -o stdlib__int64.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c random.ml -o stdlib__random.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c hashtbl.ml -o stdlib__hashtbl.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c lazy.ml -o stdlib__lazy.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c -w -3 listLabels.ml -o stdlib__listLabels.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c -w -3 moreLabels.ml -o stdlib__moreLabels.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c nap.ml -o stdlib__nap.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c nativeint.ml -o stdlib__nativeint.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c oo.ml -o stdlib__oo.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c queue.ml -o stdlib__queue.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c serial.ml -o stdlib__serial.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c set.ml -o stdlib__set.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c sort.ml -o stdlib__sort.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c stack.ml -o stdlib__stack.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c std_exit.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c -w -3 stdLabels.ml -o stdlib__stdLabels.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c stream.ml -o stdlib__stream.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -nolabels -c -w -3 stringLabels.ml -o stdlib__stringLabels.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c uchar.ml -o stdlib__uchar.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c buffer.ml -o stdlib__buffer.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c camlinternalFormat.ml
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -absname -nostdlib -c printf.ml -o stdlib__printf.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -c 18f4620/pic.ml
- cp spiclibs/lcd.ml 18f4620/lcd.ml
- cp spiclibs/lcd.mli 18f4620/lcd.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -I 18f4620 -c 18f4620/lcd.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -nostdlib -I 18f4620 -c 18f4620/lcd.ml -o 18f4620/lcd.cmo
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -a 18f4620/pic.cmo 18f4620/lcd.cmo -o 18f4620/piclib.cma
- cd 18f4620; /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini \
- -I ../ lcd.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini camlinternalFormatBasics.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini stdlib.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini arrayLabels.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini array.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini char.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini list.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini bytesLabels.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini bytes.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini obj.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini camlinternalLazy.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini camlinternalMod.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini sys.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini map.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini camlinternalOO.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini eeprom.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini gc.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini genlex.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini string.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini int32.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini int64.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini random.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini hashtbl.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini lazy.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini listLabels.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini moreLabels.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini nap.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini nativeint.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini oo.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini queue.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini serial.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini set.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini sort.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini stack.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini std_exit.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini stdLabels.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini stream.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini stringLabels.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini uchar.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini buffer.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini camlinternalFormat.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamldoc -hide-warnings -man -man-mini printf.mli
- /home/opam/.opam/4.14/lib/ocaml/../../bin/ocamlc -w @a-4-70 -warn-error A -safe-string -strict-formats -strict-sequence -ccopt -fPIE -nostdlib -a camlinternalFormatBasics.cmo stdlib.cmo stdlib__arrayLabels.cmo stdlib__array.cmo stdlib__char.cmo stdlib__list.cmo stdlib__bytesLabels.cmo stdlib__bytes.cmo stdlib__obj.cmo camlinternalLazy.cmo camlinternalMod.cmo stdlib__sys.cmo stdlib__map.cmo camlinternalOO.cmo stdlib__eeprom.cmo stdlib__gc.cmo stdlib__genlex.cmo stdlib__string.cmo stdlib__int32.cmo stdlib__int64.cmo stdlib__random.cmo stdlib__hashtbl.cmo stdlib__lazy.cmo stdlib__listLabels.cmo stdlib__moreLabels.cmo stdlib__nap.cmo stdlib__nativeint.cmo stdlib__oo.cmo stdlib__queue.cmo stdlib__serial.cmo stdlib__set.cmo stdlib__sort.cmo stdlib__stack.cmo std_exit.cmo stdlib__stdLabels.cmo stdlib__stream.cmo stdlib__stringLabels.cmo stdlib__uchar.cmo stdlib__buffer.cmo camlinternalFormat.cmo stdlib__printf.cmo -o stdlib.cma
- cp /home/opam/.opam/4.14/lib/ocaml/libcamlrun.a ./
- ar rs libcamlrun.a shared.o sf_regs.o simu.o cserial.o ceeprom.o stds.o
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5/lib'
-> compiled ocapic.3.5
Processing 3/4: [ocapic: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "./configure" "-prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/ocapic.3.5)
- 1 selected PIC: 18f4620
- ** OCaPIC configuration completed successfully **
Processing 3/4: [ocapic: make uninstall]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "make" "uninstall" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/ocapic.3.5)
- rm -f "/home/opam/.opam/4.14/bin/bc2asm"
- rm -f "/home/opam/.opam/4.14/bin/ocasim"
- rm -f "/home/opam/.opam/4.14/bin/ocapic"
- rm -f "/home/opam/.opam/4.14/bin/ocapic_lcd_simulator"
- rm -f "/home/opam/.opam/4.14/bin/ocapic_goblet_simulator"
- rm -f "/home/opam/.opam/4.14/bin/ocapic_dip40_simulator"
- rm -f "/home/opam/.opam/4.14/bin/ocapic_circuit_simulator"
- rm -f "/home/opam/.opam/4.14/man/man1/ocapic.1.gz"
- rm -f "/home/opam/.opam/4.14/man/man1/bc2asm.1.gz"
- rm -f "/home/opam/.opam/4.14/lib/ocapic/interp.asm"
- rm -f "/home/opam/.opam/4.14/lib/ocapic/runtime.asm"
- rm -f "/home/opam/.opam/4.14/lib/ocapic/stdlib.asm"
- rm -f "/home/opam/.opam/4.14/lib/ocapic/default-config.asm"
- rm -f "/home/opam/.opam/4.14/lib/ocapic/stdlib.cma"
- rm -f "/home/opam/.opam/4.14/lib/ocapic/libcamlrun.a"
- rm -f "/home/opam/.opam/4.14/lib/ocapic/lcd_cgrom.txt"
- rm -f "/home/opam/.opam/4.14/lib/ocapic/opam.config"
- rm -f "/home/opam/.opam/4.14/lib/ocapic/"*.ml
- rm -f "/home/opam/.opam/4.14/lib/ocapic/"*.mli
- rm -f "/home/opam/.opam/4.14/lib/ocapic/"*.cmi
- rm -f "/home/opam/.opam/4.14/lib/ocapic/"*.cmo
- rm -Rf "/home/opam/.opam/4.14/lib/ocapic/extra"
-> removed ocapic.3.5
Processing 4/4: [ocapic: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ocapic.3.5)
- make[1]: Nothing to be done for 'bc2asm'.
- make[1]: Nothing to be done for 'reggen'.
- make[1]: Nothing to be done for 'rtgen'.
- make[1]: Nothing to be done for 'pics'.
- make[1]: Nothing to be done for 'extra'.
- make[1]: Nothing to be done for 'simulator'.
- make[1]: Nothing to be done for 'ocapic'.
- make[1]: Nothing to be done for 'ocasim'.
- make[1]: Nothing to be done for 'lib'.
- mkdir -p "/home/opam/.opam/4.14/lib/ocapic"
- mkdir -p "/home/opam/.opam/4.14/bin"
- mkdir -p "/home/opam/.opam/4.14/man/man1"
- mkdir -p "/home/opam/.opam/4.14/man/man3"
- cp bin/bc2asm "/home/opam/.opam/4.14/bin/bc2asm"
- cp bin/ocasim "/home/opam/.opam/4.14/bin/ocasim"
- cp bin/ocapic "/home/opam/.opam/4.14/bin/ocapic"
- cp bin/ocapic_lcd_simulator "/home/opam/.opam/4.14/bin/ocapic_lcd_simulator"
- cp bin/ocapic_goblet_simulator "/home/opam/.opam/4.14/bin/ocapic_goblet_simulator"
- cp bin/ocapic_dip40_simulator "/home/opam/.opam/4.14/bin/ocapic_dip40_simulator"
- cp bin/ocapic_circuit_simulator "/home/opam/.opam/4.14/bin/ocapic_circuit_simulator"
- cp bin/ocapic_keyboard_simulator "/home/opam/.opam/4.14/bin/ocapic_keyboard_simulator"
- cp man/ocapic.1.gz "/home/opam/.opam/4.14/man/man1/ocapic.1.gz"
- cp man/bc2asm.1.gz "/home/opam/.opam/4.14/man/man1/bc2asm.1.gz"
- cp src/asm/interp.asm "/home/opam/.opam/4.14/lib/ocapic/interp.asm"
- cp src/asm/runtime.asm "/home/opam/.opam/4.14/lib/ocapic/runtime.asm"
- cp src/asm/stdlib.asm "/home/opam/.opam/4.14/lib/ocapic/stdlib.asm"
- cp src/asm/config.asm "/home/opam/.opam/4.14/lib/ocapic/default-config.asm"
- cp lib/lcd_cgrom.txt "/home/opam/.opam/4.14/lib/ocapic/lcd_cgrom.txt"
- cp lib/stdlib.cma "/home/opam/.opam/4.14/lib/ocapic/stdlib.cma"
- cp lib/libcamlrun.a "/home/opam/.opam/4.14/lib/ocapic/libcamlrun.a"
- cp lib/*.ml "/home/opam/.opam/4.14/lib/ocapic/"
- cp lib/*.mli "/home/opam/.opam/4.14/lib/ocapic/"
- cp lib/*.cmo "/home/opam/.opam/4.14/lib/ocapic/"
- cp lib/*.cmi "/home/opam/.opam/4.14/lib/ocapic/"
- cp man/Pic.3p "/home/opam/.opam/4.14/man/man3/"
- cp lib/extra/*.3o "/home/opam/.opam/4.14/man/man3/"
-> installed ocapic.3.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 04:35.09 ---> saved as "f688b7db0db0929e0f9b8655fbaefbabd90d5d0ac8d25834d6f61e80583c2970"
Job succeeded
2026-03-17 04:35.16: Job succeeded