Build:
- 0
2025-12-11 02:48.39: New job: test melange.4.0.0-414 with dune.3.21.0~alpha3, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29070/head (a95df9014bc79103fde668cf2adbe6680fd2f9cf)
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/29070/head" && git reset --hard a95df901
git fetch origin master
git merge --no-edit 810e1f14b7fa6411c66a3549f4c2aff47c52fc36
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
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.21.0~alpha3 3.21.0~alpha3
RUN opam reinstall dune.3.21.0~alpha3; \
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.21.0~alpha3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall melange.4.0.0-414; \
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" != 'melange.4.0.0-414' && 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 melange.4.0.0-414) || true
RUN opam reinstall --with-test --verbose melange.4.0.0-414; \
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" != 'melange.4.0.0-414' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2025-12-11 02:48.39: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-dune.3.21.0~alpha3-melange.4.0.0-414-a95df9014bc79103fde668cf2adbe6680fd2f9cf"
2025-12-11 02:48.39: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
(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.21.0~alpha3 3.21.0~alpha3"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.0~alpha3;\
\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.21.0~alpha3' && 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 melange.4.0.0-414;\
\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\" != 'melange.4.0.0-414' && 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 melange.4.0.0-414) || true"))
(run (shell "opam reinstall --with-test --verbose melange.4.0.0-414;\
\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\" != 'melange.4.0.0-414' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-11 02:48.39: Waiting for resource in pool OCluster
2025-12-11 17:02.27: Waiting for worker…
2025-12-11 17:04.45: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 810e1f14b7 Merge pull request #29066 from gares/release-elpi-v3.4.4
Updating 810e1f14b7..a95df9014b
Fast-forward
.../chrome-trace/chrome-trace.3.21.0~alpha3/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.0~alpha3/opam | 54 ++++++++++++++++
.../dune-build-info.3.21.0~alpha3/opam | 47 ++++++++++++++
.../dune-configurator.3.21.0~alpha3/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.0~alpha3/opam | 44 +++++++++++++
.../dune-private-libs.3.21.0~alpha3/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.0~alpha3/opam | 39 +++++++++++
packages/dune/dune.3.21.0~alpha3/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.0~alpha3/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.0~alpha3/opam | 40 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.0~alpha3/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.0~alpha3/opam | 48 ++++++++++++++
.../top-closure/top-closure.3.21.0~alpha3/opam | 39 +++++++++++
packages/xdg/xdg.3.21.0~alpha3/opam | 41 ++++++++++++
17 files changed, 787 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha3/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha3/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha3/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha3/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha3/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha3/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam
create mode 100644 packages/dune-site/dune-site.3.21.0~alpha3/opam
create mode 100644 packages/dune/dune.3.21.0~alpha3/opam
create mode 100644 packages/dyn/dyn.3.21.0~alpha3/opam
create mode 100644 packages/fs-io/fs-io.3.21.0~alpha3/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam
create mode 100644 packages/ordering/ordering.3.21.0~alpha3/opam
create mode 100644 packages/stdune/stdune.3.21.0~alpha3/opam
create mode 100644 packages/top-closure/top-closure.3.21.0~alpha3/opam
create mode 100644 packages/xdg/xdg.3.21.0~alpha3/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d' locally
docker.io/ocaml/opam@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d: Pulling from ocaml/opam
53c88f1dfeb7: Pulling fs layer
268d44a12236: Pulling fs layer
f2f36c7402e3: Pulling fs layer
9eb2778f421b: Pulling fs layer
3ca35f1ec5ed: Pulling fs layer
b08866568793: Pulling fs layer
fb0d17ce08c9: Pulling fs layer
c8db2c4fd670: Pulling fs layer
5fa8cfe8f9cb: Pulling fs layer
e7f5f7180a56: Pulling fs layer
9f66154be4d4: Pulling fs layer
f6674de6e5d4: Pulling fs layer
80eb63632584: Pulling fs layer
b08866568793: Waiting
fb0d17ce08c9: Waiting
c8db2c4fd670: Waiting
66f55aa69346: Pulling fs layer
d121bc397a1a: Pulling fs layer
0eff100405dd: Pulling fs layer
7d67d217736c: Pulling fs layer
5fa8cfe8f9cb: Waiting
9f66154be4d4: Waiting
ac7107dc3d00: Pulling fs layer
f01a17be3cef: Pulling fs layer
e7f5f7180a56: Waiting
9eb2778f421b: Waiting
f6674de6e5d4: Waiting
30a38827b55c: Pulling fs layer
3ca35f1ec5ed: Waiting
80eb63632584: Waiting
085733096c8e: Pulling fs layer
7d67d217736c: Waiting
ac7107dc3d00: Waiting
0eff100405dd: Waiting
f01a17be3cef: Waiting
86db5d63aa02: Pulling fs layer
30a38827b55c: Waiting
085733096c8e: Waiting
d121bc397a1a: Waiting
4f4fb700ef54: Pulling fs layer
86db5d63aa02: Waiting
034a62edceac: Pulling fs layer
808c1ae36c95: Pulling fs layer
4f4fb700ef54: Waiting
034a62edceac: Waiting
eba808bca592: Pulling fs layer
68b2bb6a330b: Pulling fs layer
808c1ae36c95: Waiting
9fee74853ab2: Pulling fs layer
68b2bb6a330b: Waiting
eba808bca592: Waiting
00d667d2b4f9: Pulling fs layer
9fee74853ab2: Waiting
00d667d2b4f9: Waiting
cde2288b7be2: Pulling fs layer
6e6039e741bd: Pulling fs layer
cde2288b7be2: Waiting
08dc627d7129: Pulling fs layer
6e6039e741bd: Waiting
fbbf04bee28a: Pulling fs layer
cf124fccb693: Pulling fs layer
08dc627d7129: Waiting
16001ee30892: Pulling fs layer
fbbf04bee28a: Waiting
a379ebcf721f: Pulling fs layer
16001ee30892: Waiting
c05951b4b1dd: Pulling fs layer
a379ebcf721f: Waiting
1238fc26ec9b: Pulling fs layer
33d5b2862e74: Pulling fs layer
c05951b4b1dd: Waiting
1238fc26ec9b: Waiting
6a5c5f5e740e: Pulling fs layer
f97083767ae6: Pulling fs layer
33d5b2862e74: Waiting
6a5c5f5e740e: Waiting
5fbf3379e3de: Pulling fs layer
fa7fd9ad7954: Pulling fs layer
c0b4ac729b41: Pulling fs layer
40482318cf81: Pulling fs layer
fa7fd9ad7954: Waiting
c0b4ac729b41: Waiting
40482318cf81: Waiting
f2f36c7402e3: Verifying Checksum
f2f36c7402e3: Download complete
268d44a12236: Download complete
3ca35f1ec5ed: Verifying Checksum
3ca35f1ec5ed: Download complete
9eb2778f421b: Verifying Checksum
9eb2778f421b: Download complete
53c88f1dfeb7: Verifying Checksum
53c88f1dfeb7: Download complete
fb0d17ce08c9: Download complete
5fa8cfe8f9cb: Verifying Checksum
5fa8cfe8f9cb: Download complete
c8db2c4fd670: Verifying Checksum
c8db2c4fd670: Download complete
e7f5f7180a56: Verifying Checksum
e7f5f7180a56: Download complete
9f66154be4d4: Verifying Checksum
9f66154be4d4: Download complete
f6674de6e5d4: Verifying Checksum
f6674de6e5d4: Download complete
80eb63632584: Download complete
d121bc397a1a: Verifying Checksum
d121bc397a1a: Download complete
66f55aa69346: Verifying Checksum
66f55aa69346: Download complete
7d67d217736c: Download complete
0eff100405dd: Download complete
f01a17be3cef: Verifying Checksum
f01a17be3cef: Download complete
ac7107dc3d00: Verifying Checksum
ac7107dc3d00: Download complete
53c88f1dfeb7: Pull complete
268d44a12236: Pull complete
f2f36c7402e3: Pull complete
b08866568793: Verifying Checksum
b08866568793: Download complete
085733096c8e: Download complete
30a38827b55c: Download complete
86db5d63aa02: Verifying Checksum
86db5d63aa02: Download complete
9eb2778f421b: Pull complete
3ca35f1ec5ed: Pull complete
034a62edceac: Verifying Checksum
034a62edceac: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
808c1ae36c95: Download complete
68b2bb6a330b: Verifying Checksum
68b2bb6a330b: Download complete
eba808bca592: Verifying Checksum
eba808bca592: Download complete
9fee74853ab2: Download complete
00d667d2b4f9: Verifying Checksum
00d667d2b4f9: Download complete
cde2288b7be2: Download complete
6e6039e741bd: Download complete
fbbf04bee28a: Verifying Checksum
fbbf04bee28a: Download complete
08dc627d7129: Verifying Checksum
08dc627d7129: Download complete
cf124fccb693: Download complete
16001ee30892: Download complete
c05951b4b1dd: Download complete
33d5b2862e74: Verifying Checksum
33d5b2862e74: Download complete
6a5c5f5e740e: Download complete
f97083767ae6: Download complete
5fbf3379e3de: Verifying Checksum
5fbf3379e3de: Download complete
fa7fd9ad7954: Verifying Checksum
fa7fd9ad7954: Download complete
b08866568793: Pull complete
c0b4ac729b41: Download complete
fb0d17ce08c9: Pull complete
c8db2c4fd670: Pull complete
40482318cf81: Download complete
5fa8cfe8f9cb: Pull complete
e7f5f7180a56: Pull complete
9f66154be4d4: Pull complete
f6674de6e5d4: Pull complete
80eb63632584: Pull complete
1238fc26ec9b: Verifying Checksum
1238fc26ec9b: Download complete
66f55aa69346: Pull complete
d121bc397a1a: Pull complete
0eff100405dd: Pull complete
7d67d217736c: Pull complete
ac7107dc3d00: Pull complete
f01a17be3cef: Pull complete
30a38827b55c: Pull complete
085733096c8e: Pull complete
86db5d63aa02: Pull complete
4f4fb700ef54: Pull complete
034a62edceac: Pull complete
808c1ae36c95: Pull complete
eba808bca592: Pull complete
68b2bb6a330b: Pull complete
9fee74853ab2: Pull complete
00d667d2b4f9: Pull complete
cde2288b7be2: Pull complete
6e6039e741bd: Pull complete
08dc627d7129: Pull complete
fbbf04bee28a: Pull complete
cf124fccb693: Pull complete
16001ee30892: Pull complete
a379ebcf721f: Verifying Checksum
a379ebcf721f: Download complete
a379ebcf721f: Pull complete
c05951b4b1dd: Pull complete
1238fc26ec9b: Pull complete
33d5b2862e74: Pull complete
6a5c5f5e740e: Pull complete
f97083767ae6: Pull complete
5fbf3379e3de: Pull complete
fa7fd9ad7954: Pull complete
c0b4ac729b41: Pull complete
40482318cf81: Pull complete
Digest: sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
Status: Downloaded newer image for ocaml/opam@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
2025-12-11 17:04.51 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-11 17:04.51 ---> using "4c0c738834a7be54719ab9b07c911eba51e45ad4298c42597f7d3da72b1c15d4" 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
2025-12-11 17:04.51 ---> using "8bb6d27bb5f7ebe9771219e3ecd730184d5e10ab877134c11c12ee3b1a6d3b96" 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
2025-12-11 17:04.51 ---> using "35019bd57e8933485bd938828fe288c3674216a4757e13b1dac8ce6b21035ac2" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2025-12-11 17:04.51 ---> using "e09ab9992a764acab15da9cff99e3d4d978b8a77f33714cc5d19d16d3539eb49" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-11 17:04.51 ---> using "8f784899c04798d44128ca0480da55c2b9cf6d274974843ef0505a70d687f2db" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-11 17:04.51 ---> using "2b089ce953d9701360553588b495e1bed1b68a44304bde1817c2d61d9d0cfb13" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [82.1 kB]
- Fetched 173 kB in 0s (1147 kB/s)
- Reading package lists...
2025-12-11 17:04.51 ---> using "66aa292a4a8c262cd0de67bf9051bc0bb23ef81009eeb9a242c201bbf02a4d3c" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0~alpha3 3.21.0~alpha3"))
dune is now pinned to version 3.21.0~alpha3
2025-12-11 17:04.51 ---> using "9570d75aed3642c1ef0c12e0ad97a3baf2325ffdc6e45d8a3264e824ac334df7" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.0~alpha3;\
\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.21.0~alpha3' && 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.21.0~alpha3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.21.0~alpha3 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0~alpha3 (cached)
-> installed dune.3.21.0~alpha3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 17:04.51 ---> using "48cb7e11edf550584d15e9c5e0a730dadf8a3f762cd720f2410f845b4ecb32e4" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall melange.4.0.0-414;\
\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\" != 'melange.4.0.0-414' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
melange.4.0.0-414 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 13 packages
- install cmdliner 2.1.0 [required by melange]
- install cppo 1.8.0 [required by melange]
- install dune-build-info 3.21.0~alpha3 [required by melange]
- install melange 4.0.0-414
- install menhir 20250912 [required by melange]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir]
- install menhirSdk 20250912 [required by menhir]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.35.0 [required by melange]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved dune-build-info.3.21.0~alpha3 (cached)
-> retrieved melange.4.0.0-414 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> installed cmdliner.2.1.0
-> installed cppo.1.8.0
-> installed dune-build-info.3.21.0~alpha3
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> installed menhirCST.20250912
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed menhirSdk.20250912
-> installed stdlib-shims.0.3.0
-> installed menhirLib.20250912
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppxlib.0.35.0
-> installed menhir.20250912
-> installed melange.4.0.0-414
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 17:05.31 ---> saved as "b8ec5d7b8f648032e63623b345561f64f7655f570ccdb5dde016be59da1317cf"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test melange.4.0.0-414) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile melange 4.0.0-414
=== install 13 packages
- install csexp 1.5.2 [required by merlin-lib]
- install dot-merlin-reader 4.19-414 [required by merlin]
- install fix 20250919 [required by reason]
- install merlin 4.19-414 [required by melange]
- install merlin-extend 0.6.2 [required by reason]
- install merlin-lib 4.19-414 [required by merlin]
- install ocamlfind 1.9.8 [required by ounit, reason]
- install ounit 2.2.7 [required by melange]
- install ounit2 2.2.7 [required by ounit]
- install reason 3.15.0 [required by melange]
- install reason-react-ppx 0.16.0
- install seq base [required by ounit2]
- install yojson 3.0.0 [required by merlin]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved dot-merlin-reader.4.19-414, merlin.4.19-414, merlin-lib.4.19-414 (https://opam.ocaml.org/cache)
-> retrieved fix.20250919 (https://opam.ocaml.org/cache)
-> installed fix.20250919
-> retrieved melange.4.0.0-414 (https://opam.ocaml.org/cache)
-> retrieved merlin-extend.0.6.2 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved ounit.2.2.7, ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> installed merlin-extend.0.6.2
-> retrieved reason.3.15.0 (https://opam.ocaml.org/cache)
-> retrieved reason-react-ppx.0.16.0 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> installed ounit2.2.2.7
-> installed yojson.3.0.0
-> removed melange.4.0.0-414
-> installed ocamlfind.1.9.8
-> installed ounit.2.2.7
-> installed merlin-lib.4.19-414
-> installed dot-merlin-reader.4.19-414
-> installed merlin.4.19-414
-> installed reason.3.15.0
-> installed reason-react-ppx.0.16.0
-> installed melange.4.0.0-414
Done.
<><> merlin.4.19-414 installed successfully <><><><><><><><><><><><><><><><><><>
=> merlin installed.
Quick setup for VIM
-------------------
Append this to your .vimrc to add merlin to vim's runtime-path:
let g:opamshare = substitute(system('opam var share'),'\n$','','''')
execute "set rtp+=" . g:opamshare . "/merlin/vim"
Also run the following line in vim to index the documentation:
:execute "helptags " . g:opamshare . "/merlin/vim/doc"
Quick setup for EMACS
-------------------
Add opam emacs directory to your load-path by appending this to your .emacs:
(let ((opam-share (ignore-errors (car (process-lines "opam" "var" "share")))))
(when (and opam-share (file-directory-p opam-share))
;; Register Merlin
(add-to-list 'load-path (expand-file-name "emacs/site-lisp" opam-share))
(autoload 'merlin-mode "merlin" nil t nil)
;; Automatically start it in OCaml buffers
(add-hook 'tuareg-mode-hook 'merlin-mode t)
(add-hook 'caml-mode-hook 'merlin-mode t)
;; Use opam switch to lookup ocamlmerlin binary
(setq merlin-command 'opam)
;; To easily change opam switches within a given Emacs session, you can
;; install the minor mode https://github.com/ProofGeneral/opam-switch-mode
;; and use one of its "OPSW" menus.
))
Take a look at https://github.com/ocaml/merlin for more information
Quick setup with opam-user-setup
--------------------------------
Opam-user-setup support Merlin.
$ opam user-setup install
should take care of basic setup.
See https://github.com/OCamlPro/opam-user-setup
# To update the current shell environment, run: eval $(opam env)
2025-12-11 17:06.11 ---> saved as "b4bc5cd7d56bcd524d282f1747355d16a2828921a1b54ffa8dd756b5b6f8dc35"
/home/opam: (run (shell "opam reinstall --with-test --verbose melange.4.0.0-414;\
\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\" != 'melange.4.0.0-414' && 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 melange 4.0.0-414
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [melange.4.0.0-414: extract]
-> retrieved melange.4.0.0-414 (cached)
Processing 2/4: [melange: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "melange" "-j" "255" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/melange.4.0.0-414)
- (cd _build/default/jscomp/core && /usr/bin/bash -e -u -o pipefail -c 'echo let version = \"$(git rev-parse --verify HEAD)\"') > _build/default/jscomp/core/git_commit.ml
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
- (cd _build/default/jscomp/core && /usr/bin/bash -e -u -o pipefail -c 'echo let short_version = \"$(git rev-parse --short HEAD)\"') > _build/default/jscomp/core/git_commit.ml
- fatal: not a git repository (or any parent up to mount point /)
- Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
- (cd _build/default && bin/melc.exe -w -40 -w -53 -w -49 -nopervasives -nostdlib -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name stdlib --bs-package-name melange -no-alias-deps -o jscomp/stdlib/.stdlib.objs/melange/stdlib.cmj -c -impl jscomp/stdlib/stdlib.pp.ml)
- File "stdlib.cppo.ml", line 420, characters 29-55:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_sys_open
- File "stdlib.cppo.ml", line 420, characters 10-55:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_open_descriptor_out
- File "stdlib.cppo.ml", line 421, characters 2-29:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_set_channel_name
- File "stdlib.cppo.ml", line 455, characters 2-39:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_output_bytes
- File "stdlib.cppo.ml", line 463, characters 7-33:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_output_bytes
- File "stdlib.cppo.ml", line 475, characters 26-54:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_output_value
- File "stdlib.cppo.ml", line 481, characters 29-49:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_close_channel
- File "stdlib.cppo.ml", line 484, characters 7-27:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_close_channel
- File "stdlib.cppo.ml", line 494, characters 28-54:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_sys_open
- File "stdlib.cppo.ml", line 494, characters 10-54:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_open_descriptor_in
- File "stdlib.cppo.ml", line 495, characters 2-28:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_set_channel_name
- File "stdlib.cppo.ml", line 512, characters 7-32:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 516, characters 12-37:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 516, characters 12-37:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 542, characters 12-32:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_scan_line
- File "stdlib.cppo.ml", line 549, characters 13-46:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 550, characters 13-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 557, characters 12-42:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 549, characters 13-46:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 550, characters 13-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 557, characters 12-42:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 549, characters 13-46:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 550, characters 13-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 557, characters 12-42:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 549, characters 13-46:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 550, characters 13-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 557, characters 12-42:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input
- File "stdlib.cppo.ml", line 569, characters 29-40:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_close_channel
- File "stdlib.cppo.ml", line 471, characters 0-78:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_output_int
- File "stdlib.cppo.ml", line 477, characters 0-67:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_seek_out
- File "stdlib.cppo.ml", line 478, characters 0-57:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_pos_out
- File "stdlib.cppo.ml", line 479, characters 0-73:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_channel_size
- File "stdlib.cppo.ml", lines 485-486, characters 0-56:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_set_binary_mode
- File "stdlib.cppo.ml", line 504, characters 0-63:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 562, characters 0-62:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 563, characters 0-67:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_int
- File "stdlib.cppo.ml", line 564, characters 0-60:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_input_value
- File "stdlib.cppo.ml", line 565, characters 0-64:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_seek_in
- File "stdlib.cppo.ml", line 566, characters 0-54:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_pos_in
- File "stdlib.cppo.ml", line 567, characters 0-71:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_channel_size
- File "stdlib.cppo.ml", line 568, characters 0-64:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_close_channel
- File "stdlib.cppo.ml", lines 570-571, characters 0-55:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_set_binary_mode
- File "jscomp/stdlib/stdlib.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_seek_out_64
- File "jscomp/stdlib/stdlib.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_pos_out_64
- File "jscomp/stdlib/stdlib.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_channel_size_64
- File "jscomp/stdlib/stdlib.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_seek_in_64
- File "jscomp/stdlib/stdlib.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_pos_in_64
- File "jscomp/stdlib/stdlib.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_channel_size_64
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name sys --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Sys.cmj -c -impl jscomp/stdlib/sys.pp.ml)
- File "sys.cppo.ml", lines 147-148, characters 0-35:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_enable_runtime_warnings
- File "sys.cppo.ml", lines 149-150, characters 0-36:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_runtime_warnings_enabled
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name obj --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Obj.cmj -c -impl jscomp/stdlib/obj.pp.ml)
- File "jscomp/stdlib/obj.ml", line 35, characters 40-77:
- 35 | let [@inline always] double_field x i = floatarray_get (obj x : floatarray) i
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_get
- File "jscomp/stdlib/obj.ml", line 37, characters 2-41:
- 37 | floatarray_set (obj x : floatarray) i v
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_set
- File "jscomp/stdlib/obj.ml", line 107, characters 4-12:
- 107 | create l
- ^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_create
- File "jscomp/stdlib/obj.ml", line 118, characters 4-15:
- 118 | get_key e o
- ^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_get_key
- File "jscomp/stdlib/obj.ml", line 123, characters 4-20:
- 123 | get_key_copy e o
- ^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_get_key_copy
- File "jscomp/stdlib/obj.ml", line 128, characters 4-17:
- 128 | set_key e o x
- ^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_set_key
- File "jscomp/stdlib/obj.ml", line 133, characters 4-17:
- 133 | unset_key e o
- ^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_unset_key
- File "jscomp/stdlib/obj.ml", line 138, characters 4-17:
- 138 | check_key e o
- ^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_check_key
- File "jscomp/stdlib/obj.ml", line 147, characters 24-46:
- 147 | else if l <> 0 then blit_key e1 o1 e2 o2 l
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_blit_key
- File "jscomp/stdlib/obj.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_get_data
- File "jscomp/stdlib/obj.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_get_data_copy
- File "jscomp/stdlib/obj.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_set_data
- File "jscomp/stdlib/obj.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_unset_data
- File "jscomp/stdlib/obj.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_check_data
- File "jscomp/stdlib/obj.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_blit_data
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name callback --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Callback.cmj -c -impl jscomp/stdlib/callback.pp.ml)
- File "jscomp/stdlib/callback.ml", line 22, characters 2-40:
- 22 | register_named_value name (Obj.repr v)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_register_named_value
- File "jscomp/stdlib/callback.ml", line 27, characters 2-32:
- 27 | register_named_value name slot
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_register_named_value
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name float --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Float.cmj -c -impl jscomp/stdlib/float.pp.ml)
- File "float.cppo.ml", line 166, characters 23-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_trunc_float
- File "float.cppo.ml", line 171, characters 13-34:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_nextafter_float
- File "float.cppo.ml", line 172, characters 13-38:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_nextafter_float
- File "float.cppo.ml", line 287, characters 4-32:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 288, characters 4-33:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 307, characters 8-38:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 307, characters 8-38:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 316, characters 4-34:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 322, characters 4-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 332, characters 4-37:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name marshal --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Marshal.cmj -c -impl jscomp/stdlib/marshal.pp.ml)
- File "jscomp/stdlib/marshal.ml", line 35, characters 7-44:
- 35 | else to_buffer_unsafe buff ofs len v flags
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_output_value_to_buffer
- File "jscomp/stdlib/marshal.ml", line 51, characters 7-32:
- 51 | else data_size_unsafe buff ofs
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_marshal_data_size
- File "jscomp/stdlib/marshal.ml", line 58, characters 14-39:
- 58 | let len = data_size_unsafe buff ofs in
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_marshal_data_size
- File "jscomp/stdlib/marshal.ml", line 61, characters 9-35:
- 61 | else from_bytes_unsafe buff ofs
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_input_value_from_bytes
- File "jscomp/stdlib/marshal.ml", lines 22-23, characters 0-25:
- 22 | external to_channel: out_channel -> 'a -> extern_flags list -> unit
- 23 | = "caml_output_value"
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_output_value
- File "jscomp/stdlib/marshal.ml", line 43, characters 0-60:
- 43 | external from_channel: in_channel -> 'a = "caml_input_value"
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_input_value
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name string --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__String.cmj -c -impl jscomp/stdlib/string.pp.ml)
- File "jscomp/stdlib/string.ml", line 222, characters 13-28:
- 222 | let hash x = seeded_hash 0 x
- ^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_string_hash
- File "jscomp/stdlib/string.ml", line 221, characters 0-76:
- 221 | external seeded_hash : int -> string -> int = "caml_string_hash" [@@noalloc]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_string_hash
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name printexc --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Printexc.cmj -c -impl jscomp/stdlib/printexc.pp.ml)
- File "printexc.cppo.ml", line 302, characters 15-39:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_debug_info_status
- File "printexc.cppo.ml", lines 258-259, characters 0-72:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_raw_backtrace_slot
- File "printexc.cppo.ml", lines 261-263, characters 0-34:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_raw_backtrace_next_slot
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name arg --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Arg.cmj -c -impl jscomp/stdlib/arg.pp.ml)
- File "stdlib.cppo.ml", line 504, characters 0-63:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 568, characters 0-64:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_close_channel
- File "stdlib.cppo.ml", line 481, characters 29-49:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_close_channel
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name fun --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Fun.cmj -c -impl jscomp/stdlib/fun.pp.ml)
- File "jscomp/stdlib/fun.ml", line 32, characters 6-57:
- 32 | Printexc.raise_with_backtrace (Finally_raised e) bt
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_restore_raw_backtrace
- File "jscomp/stdlib/fun.ml", line 39, characters 6-52:
- 39 | Printexc.raise_with_backtrace work_exn work_bt
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_restore_raw_backtrace
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name out_channel --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Out_channel.cmj -c -impl jscomp/stdlib/out_channel.pp.ml)
- File "out_channel.cppo.ml", line 79, characters 0-72:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_is_binary_mode
- File "out_channel.cppo.ml", line 81, characters 0-66:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_set_buffered
- File "out_channel.cppo.ml", line 83, characters 0-56:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_is_buffered
- File "out_channel.cppo.ml", line 85, characters 0-47:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_sys_isatty
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name in_channel --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__In_channel.cmj -c -impl jscomp/stdlib/in_channel.pp.ml)
- File "stdlib.cppo.ml", line 504, characters 0-63:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 562, characters 0-62:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 567, characters 0-71:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_channel_size
- File "stdlib.cppo.ml", line 566, characters 0-54:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_pos_in
- File "stdlib.cppo.ml", line 504, characters 0-63:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "stdlib.cppo.ml", line 504, characters 0-63:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_input_char
- File "in_channel.cppo.ml", line 213, characters 0-71:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_is_binary_mode
- File "in_channel.cppo.ml", line 215, characters 0-47:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_sys_isatty
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name gc --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Gc.cmj -c -impl jscomp/stdlib/gc.pp.ml)
- File "jscomp/stdlib/gc.ml", line 71, characters 11-18:
- 71 | let st = stat () in
- ^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_gc_stat
- File "jscomp/stdlib/gc.ml", line 96, characters 22-33:
- 96 | let (mi, pro, ma) = counters () in
- ^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_gc_counters
- File "jscomp/stdlib/gc.ml", line 111, characters 21-45:
- 111 | let finally () = finalise call_alarm arec in
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_final_register
- File "jscomp/stdlib/gc.ml", line 111, characters 21-45:
- 111 | let finally () = finalise call_alarm arec in
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_final_register
- File "jscomp/stdlib/gc.ml", line 120, characters 2-26:
- 120 | finalise call_alarm arec;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_final_register
- File "jscomp/stdlib/gc.ml", line 158, characters 6-50:
- 158 | c_start sampling_rate callstack_size tracker
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_memprof_start
- File "jscomp/stdlib/gc.ml", line 100, characters 0-70:
- 100 | external finalise : ('a -> unit) -> 'a -> unit = "caml_final_register"
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_final_register
- File "jscomp/stdlib/gc.ml", lines 101-102, characters 0-44:
- 101 | external finalise_last : (unit -> unit) -> 'a -> unit =
- 102 | "caml_final_register_called_without_value"
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_final_register_called_without_value
- File "jscomp/stdlib/gc.ml", line 103, characters 0-63:
- 103 | external finalise_release : unit -> unit = "caml_final_release"
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_final_release
- File "jscomp/stdlib/gc.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_memprof_stop
- File "jscomp/stdlib/gc.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_memprof_discard
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name digest --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Digest.cmj -c -impl jscomp/stdlib/digest.pp.ml)
- File "jscomp/stdlib/digest.ml", line 85, characters 4-58:
- 85 | unsafe_string hash_length "" str 0 (String.length str)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_string
- File "jscomp/stdlib/digest.ml", line 93, characters 4-44:
- 93 | unsafe_string hash_length "" str ofs len
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_string
- File "jscomp/stdlib/digest.ml", line 82, characters 18-43:
- 82 | let create () = create_gen hash_length ""
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_create
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 85, characters 4-58:
- 85 | unsafe_string hash_length "" str 0 (String.length str)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_string
- File "jscomp/stdlib/digest.ml", line 93, characters 4-44:
- 93 | unsafe_string hash_length "" str ofs len
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_string
- File "jscomp/stdlib/digest.ml", line 82, characters 18-43:
- 82 | let create () = create_gen hash_length ""
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_create
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 85, characters 4-58:
- 85 | unsafe_string hash_length "" str 0 (String.length str)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_string
- File "jscomp/stdlib/digest.ml", line 93, characters 4-44:
- 93 | unsafe_string hash_length "" str ofs len
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_string
- File "jscomp/stdlib/digest.ml", line 82, characters 18-43:
- 82 | let create () = create_gen hash_length ""
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_create
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 106, characters 13-34:
- 106 | then final ctx hash_length
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 107, characters 14-57:
- 107 | else (update ctx (Bytes.unsafe_to_string buf) 0 n; do_read ())
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 111, characters 27-48:
- 111 | if toread = 0 then final ctx hash_length else begin
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 116, characters 12-55:
- 116 | update ctx (Bytes.unsafe_to_string buf) 0 n;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 171, characters 49-64:
- 171 | In_channel.with_open_bin filename (fun ic -> channel ic (-1))
- ^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_md5_chan
- File "jscomp/stdlib/digest.ml", line 156, characters 2-60:
- 156 | external channel: in_channel -> int -> t = "caml_md5_chan"
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_md5_chan
- File "jscomp/stdlib/digest.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_md5_chan
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name scanf --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Scanf.cmj -c -impl jscomp/stdlib/scanf.pp.ml)
- File "stdlib.cppo.ml", line 568, characters 0-64:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_close_channel
- File "stdlib.cppo.ml", line 568, characters 0-64:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_close_channel
- File "stdlib.cppo.ml", line 568, characters 0-64:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_close_channel
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name filename --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Filename.cmj -c -impl jscomp/stdlib/filename.pp.ml)
- File "jscomp/stdlib/filename.ml", line 347, characters 16-75:
- 347 | close_desc(open_desc name [Open_wronly; Open_creat; Open_excl] 0o600);
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_sys_open
- File "jscomp/stdlib/filename.ml", line 347, characters 6-75:
- 347 | close_desc(open_desc name [Open_wronly; Open_creat; Open_excl] 0o600);
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_sys_close
- File "jscomp/stdlib/filename.ml", line 370, characters 6-26:
- 370 | Sys.mkdir name perms;
- ^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_sys_mkdir
- (cd _build/default && bin/melc.exe -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -I jscomp/stdlib/.stdlib.objs/melange -I jscomp/runtime/.js.objs/melange -I jscomp/runtime/.melange_mini_stdlib.objs/melange -intf-suffix .ml --bs-stop-after-cmj --bs-package-output . --bs-module-name weak --bs-package-name melange -no-alias-deps -open Stdlib -nopervasives -nostdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Weak.cmj -c -impl jscomp/stdlib/weak.pp.ml)
- File "jscomp/stdlib/weak.ml", line 30, characters 2-10:
- 30 | create l
- ^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_weak_create
- File "jscomp/stdlib/weak.ml", line 45, characters 14-24:
- 45 | | Some x -> set' e o x
- ^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_set_key
- File "jscomp/stdlib/weak.ml", line 44, characters 12-21:
- 44 | | None -> unset e o
- ^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ephe_unset_key
- File "jscomp/stdlib/weak.ml", line 50, characters 2-9:
- 50 | get e o
- ^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_weak_get
- File "jscomp/stdlib/weak.ml", line 55, characters 2-14:
- 55 | get_copy e o
- ^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_weak_get_copy
- File "jscomp/stdlib/weak.ml", line 60, characters 2-11:
- 60 | check e o
- ^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_weak_check
- File "jscomp/stdlib/weak.ml", line 69, characters 22-40:
- 69 | else if l <> 0 then blit e1 o1 e2 o2 l
- ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_weak_blit
-> compiled melange.4.0.0-414
-> removed melange.4.0.0-414
-> installed melange.4.0.0-414
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 17:06.33 ---> saved as "81096012e6f47e63fc5f6c3c6885b7e6f23b15149e534038fac02c1de3a33927"
Job succeeded
2025-12-11 17:06.40: Job succeeded