(not at the head of any monitored branch or PR)
2026-04-10 17:57.39: New job: test melange.5.0.0-414 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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.2 3.22.2
RUN opam reinstall dune.3.22.2; \
    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.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall melange.5.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.5.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.5.0.0-414) || true
RUN opam reinstall --with-test --verbose melange.5.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.5.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 .

2026-04-10 17:57.39: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-melange.5.0.0-414-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.39: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (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.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \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.2' && 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.5.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.5.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.5.0.0-414) || true"))
 (run (shell  "opam reinstall --with-test --verbose melange.5.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.5.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"))
)

2026-04-10 17:57.39: Waiting for resource in pool OCluster
2026-04-11 02:55.16: Waiting for worker…
2026-04-11 02:56.24: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4' locally
docker.io/ocaml/opam@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4: Pulling from ocaml/opam
8f6ad858d0a4: Already exists
bcb8aca13f7d: Already exists
bee1401d6aa9: Already exists
70a4ec3f5a63: Already exists
946380c37df7: Already exists
40a16ba01935: Already exists
f4df01b7be08: Already exists
c7d14a9ac62c: Already exists
8ece799add44: Already exists
d3cb64c779a6: Already exists
d54da7bf4e54: Already exists
3111aa7c2023: Already exists
962186c6e1e2: Already exists
8745338b1e0b: Already exists
70494a8c0d08: Already exists
9fbe01dcf1e6: Already exists
742774a39128: Already exists
6780ddc6e8a5: Already exists
5049c6e21d97: Already exists
f8f7f2d621cc: Already exists
d221e77cf2b7: Already exists
ea40bd8c29fe: Already exists
4f4fb700ef54: Already exists
546c3ffe9fcf: Already exists
de88a7570f24: Already exists
614f1e6aac31: Already exists
4448849c2ba8: Already exists
ae7502e72140: Already exists
ff97726fb361: Already exists
20d3e00ca128: Already exists
734e3f9ef8d5: Already exists
a9623fbab448: Already exists
d9066aed5713: Already exists
df57d5f0aedf: Already exists
a963972287a7: Already exists
960128877639: Already exists
224d5050da5a: Already exists
f8105fbb3180: Already exists
670a1f9738fe: Already exists
10f42e6216ad: Already exists
1930c7997386: Already exists
3dfb608b80df: Pulling fs layer
35294222fbdf: Pulling fs layer
b427a5ce3ccf: Pulling fs layer
159615597ae3: Pulling fs layer
159615597ae3: Waiting
35294222fbdf: Download complete
b427a5ce3ccf: Verifying Checksum
b427a5ce3ccf: Download complete
159615597ae3: Download complete
3dfb608b80df: Verifying Checksum
3dfb608b80df: Download complete
3dfb608b80df: Pull complete
35294222fbdf: Pull complete
b427a5ce3ccf: Pull complete
159615597ae3: Pull complete
Digest: sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
Status: Downloaded newer image for ocaml/opam@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
2026-04-11 02:56.39 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 02:56.39 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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-04-11 02:56.39 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-11 02:56.39 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 02:56.39 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 02:56.40 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 02:56.40 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" 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 [121 kB]
- Fetched 211 kB in 0s (1884 kB/s)
- Reading package lists...
2026-04-11 02:56.40 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 02:56.40 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \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.2' && 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.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:56.40 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall melange.5.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.5.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.5.0.0-414 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install cmdliner            2.1.0     [required by melange]
  - install cppo                1.8.0     [required by melange]
  - install dune-build-info     3.22.2    [required by melange]
  - install melange             5.0.0-414
  - install menhir              20260209  [required by melange]
  - install menhirCST           20260209  [required by menhir]
  - install menhirGLR           20260209  [required by menhir]
  - install menhirLib           20260209  [required by menhir]
  - install menhirSdk           20260209  [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.22.2  (cached)
-> installed cmdliner.2.1.0
-> installed cppo.1.8.0
-> installed dune-build-info.3.22.2
-> retrieved melange.5.0.0-414  (https://opam.ocaml.org/cache)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> installed menhirCST.20260209
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed ppx_derivers.1.2.1
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed stdlib-shims.0.3.0
-> installed menhirSdk.20260209
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed menhir.20260209
-> installed ppxlib.0.35.0
-> installed melange.5.0.0-414
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:57.22 ---> saved as "5179af02bbe2664f6613507d16505746ed399a42485a3b7bd7e7212ce6cef659"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test melange.5.0.0-414) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile melange           5.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
  - install   merlin            4.19-414  [required by melange]
  - install   merlin-extend     0.6.2
  - install   merlin-lib        4.19-414  [required by merlin]
  - install   ocamlfind         1.9.8     [required by ounit]
  - install   ounit             2.2.7     [required by melange]
  - install   ounit2            2.2.7     [required by ounit]
  - install   reason            3.15.0
  - 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.5.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.5.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.5.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)
2026-04-11 02:57.58 ---> saved as "21ceeba24b10042f2d4fbb62170885839d82a857bc357705eaa6f9e2b1677e50"

/home/opam: (run (shell  "opam reinstall --with-test --verbose melange.5.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.5.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 5.0.0-414

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [melange.5.0.0-414: extract]
-> retrieved melange.5.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.5.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/.sandbox/c89777f0ff6b1e8dae24a317a0dbdadb/default && .ppx/b36bc7dca4c367fe995383a780501242/ppx.exe -unsafe --cookie 'library-name="dom"' -o jscomp/others/dom_storage.pp.ml --impl jscomp/others/dom_storage.ml -corrected-suffix .ppx-corrected -diff-cmd - -dump-ast)
- File "jscomp/others/dom_storage.ml", line 4, characters 3-16:
- 4 | [@@mel.send.pipe: t] [@@mel.return null_to_opt]
-        ^^^^^^^^^^^^^
- Alert deprecated: [@mel.send.pipe] is deprecated and will be removed in the next version of Melange
- File "jscomp/others/dom_storage.ml", line 6, characters 59-72:
- 6 | external setItem : string -> string -> unit = "setItem" [@@mel.send.pipe: t]
-                                                                ^^^^^^^^^^^^^
- Alert deprecated: [@mel.send.pipe] is deprecated and will be removed in the next version of Melange
- File "jscomp/others/dom_storage.ml", line 7, characters 55-68:
- 7 | external removeItem : string -> unit = "removeItem" [@@mel.send.pipe: t]
-                                                            ^^^^^^^^^^^^^
- Alert deprecated: [@mel.send.pipe] is deprecated and will be removed in the next version of Melange
- File "jscomp/others/dom_storage.ml", line 8, characters 35-48:
- 8 | external clear : unit = "clear" [@@mel.send.pipe: t]
-                                        ^^^^^^^^^^^^^
- Alert deprecated: [@mel.send.pipe] is deprecated and will be removed in the next version of Melange
- File "jscomp/others/dom_storage.ml", line 11, characters 3-16:
- 11 | [@@mel.send.pipe: t] [@@mel.return null_to_opt]
-         ^^^^^^^^^^^^^
- Alert deprecated: [@mel.send.pipe] is deprecated and will be removed in the next version of Melange
- (cd _build/.sandbox/c36422621843976a56887d1d302b4c04/default && .ppx/b36bc7dca4c367fe995383a780501242/ppx.exe -unsafe --cookie 'library-name="node"' -o jscomp/others/node_buffer.pp.ml --impl jscomp/others/node_buffer.ml -corrected-suffix .ppx-corrected -diff-cmd - -dump-ast)
- File "jscomp/others/node_buffer.ml", line 47, characters 3-16:
- 47 | [@@mel.send.pipe: t]
-         ^^^^^^^^^^^^^
- Alert deprecated: [@mel.send.pipe] is deprecated and will be removed in the next version of Melange
- (cd _build/.sandbox/4dc824217aa8f707d3482b700e85fc12/default && bin/melc.exe -nopervasives -nostdlib -w -40 -w -53 -w -49 -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/.sandbox/727a577fa6a83848172731a9a9b4fa19/default && bin/melc.exe -nopervasives -nostdlib -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 -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Sys.cmj -c -impl jscomp/stdlib/sys.pp.ml)
- File "sys.cppo.ml", lines 148-149, characters 0-35:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_enable_runtime_warnings
- File "sys.cppo.ml", lines 150-151, characters 0-36:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_ml_runtime_warnings_enabled
- (cd _build/.sandbox/08276110a63f53c2991415071c1767aa/default && bin/melc.exe -nopervasives -nostdlib -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 -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/.sandbox/737f5a7956bdea64c6913667c160b8b3/default && bin/melc.exe -nopervasives -nostdlib -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 -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/.sandbox/aecb442304527b0df448a6cb7eef63ea/default && bin/melc.exe -nopervasives -nostdlib -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 -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Marshal.cmj -c -impl jscomp/stdlib/marshal.pp.ml)
- File "jscomp/stdlib/marshal.ml", line 36, characters 7-44:
- 36 |   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 52, characters 7-32:
- 52 |   else data_size_unsafe buff ofs
-             ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_marshal_data_size
- File "jscomp/stdlib/marshal.ml", line 59, characters 14-39:
- 59 |     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 62, characters 9-35:
- 62 |     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 23-24, characters 0-25:
- 23 | external to_channel: out_channel -> 'a -> extern_flags list -> unit
- 24 |     = "caml_output_value"
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_output_value
- File "jscomp/stdlib/marshal.ml", line 44, characters 0-60:
- 44 | external from_channel: in_channel -> 'a = "caml_input_value"
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_input_value
- (cd _build/.sandbox/7cd5b4e78e428be6a89bd22aa2428261/default && bin/melc.exe -nopervasives -nostdlib -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 -o jscomp/stdlib/.stdlib.objs/melange/stdlib__String.cmj -c -impl jscomp/stdlib/string.pp.ml)
- File "jscomp/stdlib/string.ml", line 226, characters 13-28:
- 226 | let hash x = seeded_hash 0 x
-                    ^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_string_hash
- File "jscomp/stdlib/string.ml", line 225, characters 0-76:
- 225 | external seeded_hash : int -> string -> int = "caml_string_hash" [@@noalloc]
-       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_string_hash
- (cd _build/.sandbox/adc1c23514972dc1d479b1d1b96fbebf/default && bin/melc.exe -nopervasives -nostdlib -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 -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 280, characters 31-42:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_make
- File "float.cppo.ml", line 280, characters 31-42:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_make
- File "float.cppo.ml", line 316, characters 8-38:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 316, characters 8-38:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 326, characters 4-34:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 336, characters 4-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 347, characters 4-32:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 348, characters 4-33:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "float.cppo.ml", line 358, characters 4-37:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_blit
- File "jscomp/stdlib/float.ml", line 1:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_floatarray_make
- (cd _build/.sandbox/360bf2895ecbf5294fd691a00883017f/default && bin/melc.exe -nopervasives -nostdlib -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 -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/.sandbox/b252997f4988c52d4e80b32edf9742ae/default && bin/melc.exe -nopervasives -nostdlib -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 -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/.sandbox/1c78b97d76ba5eb1265a9c135610a6a1/default && bin/melc.exe -nopervasives -nostdlib -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 -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/.sandbox/89d83527890d3f3cb19760d2092d420e/default && bin/melc.exe -nopervasives -nostdlib -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 -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/.sandbox/ee77663637418e4e681e0a7563455b0f/default && bin/melc.exe -nopervasives -nostdlib -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 -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/.sandbox/b52cd3fb728ee58dd5ae29a7fb42ae46/default && bin/melc.exe -nopervasives -nostdlib -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 -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/.sandbox/27e8af2bf69201094f45f20abb991526/default && bin/melc.exe -nopervasives -nostdlib -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 -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Gc.cmj -c -impl jscomp/stdlib/gc.pp.ml)
- File "jscomp/stdlib/gc.ml", line 120, characters 2-16:
- 120 |   Domain.at_exit (fun () -> delete_alarm alarm);
-         ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- 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 122, characters 2-26:
- 122 |   finalise call_alarm arec;
-         ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_final_register
- File "jscomp/stdlib/gc.ml", line 160, characters 6-50:
- 160 |       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/.sandbox/14b1e0c6949a9b8334239541404d5fd0/default && bin/melc.exe -nopervasives -nostdlib -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 -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Digest.cmj -c -impl jscomp/stdlib/digest.pp.ml)
- File "jscomp/stdlib/digest.ml", line 87, characters 4-58:
- 87 |     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 90, characters 4-52:
- 90 |     unsafe_bytes hash_length "" b 0 (Bytes.length b)
-          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_bytes
- File "jscomp/stdlib/digest.ml", line 95, characters 4-44:
- 95 |     unsafe_string hash_length "" str ofs len
-          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_string
- File "jscomp/stdlib/digest.ml", line 100, characters 4-41:
- 100 |     unsafe_bytes hash_length "" b ofs len
-           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_bytes
- File "jscomp/stdlib/digest.ml", line 84, characters 18-43:
- 84 |   let create () = create_gen hash_length ""
-                        ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_create
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 87, characters 4-58:
- 87 |     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 90, characters 4-52:
- 90 |     unsafe_bytes hash_length "" b 0 (Bytes.length b)
-          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_bytes
- File "jscomp/stdlib/digest.ml", line 95, characters 4-44:
- 95 |     unsafe_string hash_length "" str ofs len
-          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_string
- File "jscomp/stdlib/digest.ml", line 100, characters 4-41:
- 100 |     unsafe_bytes hash_length "" b ofs len
-           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_bytes
- File "jscomp/stdlib/digest.ml", line 84, characters 18-43:
- 84 |   let create () = create_gen hash_length ""
-                        ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_create
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 87, characters 4-58:
- 87 |     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 90, characters 4-52:
- 90 |     unsafe_bytes hash_length "" b 0 (Bytes.length b)
-          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_bytes
- File "jscomp/stdlib/digest.ml", line 95, characters 4-44:
- 95 |     unsafe_string hash_length "" str ofs len
-          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_string
- File "jscomp/stdlib/digest.ml", line 100, characters 4-41:
- 100 |     unsafe_bytes hash_length "" b ofs len
-           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_bytes
- File "jscomp/stdlib/digest.ml", line 84, characters 18-43:
- 84 |   let create () = create_gen hash_length ""
-                        ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_create
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 110, characters 13-34:
- 110 |         then final ctx hash_length
-                    ^^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_final
- File "jscomp/stdlib/digest.ml", line 111, characters 14-32:
- 111 |         else (update ctx buf 0 n; do_read ())
-                     ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 115, characters 27-48:
- 115 |         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 120, characters 12-30:
- 120 |             update ctx buf 0 n;
-                   ^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_blake2_update
- File "jscomp/stdlib/digest.ml", line 180, characters 49-64:
- 180 |     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 161, characters 2-60:
- 161 |   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/.sandbox/c0387e8e9a1a89bcd7466251b64cdf32/default && bin/melc.exe -nopervasives -nostdlib -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 format --bs-package-name melange -no-alias-deps -open Stdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Format.cmj -c -impl jscomp/stdlib/format.pp.ml)
- File "jscomp/stdlib/format.ml", line 1047, characters 13-23:
- 1047 | module DLS = Domain.DLS
-                     ^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/format.ml", line 1057, characters 24-38:
- 1057 |   Buffer.add_substring (Domain.DLS.get key) str ofs len
-                                ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/format.ml", line 1060, characters 12-26:
- 1060 |   let buf = Domain.DLS.get key in
-                    ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/format.ml", line 1067, characters 18-36:
- 1067 | let std_buf_key = Domain.DLS.new_key (fun () -> Buffer.create pp_buffer_size)
-                          ^^^^^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/format.ml", line 1068, characters 18-36:
- 1068 | let err_buf_key = Domain.DLS.new_key (fun () -> Buffer.create pp_buffer_size)
-                          ^^^^^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/format.ml", line 1078, characters 2-16:
- 1078 |   Domain.at_exit (pp_print_flush ppf);
-          ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/format.ml", line 1090, characters 2-16:
- 1090 |   Domain.at_exit (pp_print_flush ppf);
-          ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/format.ml", line 1502, characters 9-34:
- 1502 | let () = Domain.before_first_spawn (fun () ->
-                 ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- (cd _build/.sandbox/c71e8587143b092ef41409cd1ab27ada/default && bin/melc.exe -nopervasives -nostdlib -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 -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Filename.cmj -c -impl jscomp/stdlib/filename.pp.ml)
- File "jscomp/stdlib/filename.ml", line 337, characters 2-20:
- 337 |   Domain.DLS.new_key Random.State.make_self_init
-         ^^^^^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/filename.ml", line 340, characters 21-35:
- 340 |   let random_state = Domain.DLS.get prng_key in
-                            ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/filename.ml", line 345, characters 2-20:
- 345 |   Domain.DLS.new_key ~split_from_parent:Fun.id (fun () -> temp_dir_name)
-         ^^^^^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/filename.ml", line 347, characters 26-40:
- 347 | let set_temp_dir_name s = Domain.DLS.set current_temp_dir_name s
-                                 ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/filename.ml", line 348, characters 27-41:
- 348 | let get_temp_dir_name () = Domain.DLS.get current_temp_dir_name
-                                  ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/filename.ml", line 350, characters 27-41:
- 350 | let temp_file ?(temp_dir = Domain.DLS.get current_temp_dir_name) prefix suffix =
-                                  ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/filename.ml", line 361, characters 17-31:
- 361 |     ?(temp_dir = Domain.DLS.get current_temp_dir_name)
-                        ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/filename.ml", line 372, characters 26-40:
- 372 | let temp_dir ?(temp_dir = Domain.DLS.get current_temp_dir_name)
-                                 ^^^^^^^^^^^^^^
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "jscomp/stdlib/filename.ml", line 354, characters 16-75:
- 354 |       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 354, characters 6-75:
- 354 |       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 377, characters 6-26:
- 377 |       Sys.mkdir name perms;
-             ^^^^^^^^^^^^^^^^^^^^
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used:caml_sys_mkdir
- (cd _build/.sandbox/a56fb9c90f480f76d4db225e6a5ee220/default && bin/melc.exe -nopervasives -nostdlib -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 hashtbl --bs-package-name melange -no-alias-deps -open Stdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Hashtbl.cmj -c -impl jscomp/stdlib/hashtbl.pp.ml)
- File "hashtbl.cppo.ml", line 63, characters 15-33:
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "hashtbl.cppo.ml", line 83, characters 38-52:
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- File "hashtbl.cppo.ml", line 632, characters 38-52:
- Alert unstable: module Stdlib.Domain
- The Domain interface may change in incompatible ways in the future.
- (cd _build/.sandbox/6cdba7d137742d2dbb9fb284ad9ff217/default && bin/melc.exe -nopervasives -nostdlib -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 -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.5.0.0-414
-> removed   melange.5.0.0-414
-> installed melange.5.0.0-414
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:58.18 ---> saved as "8ef16eab18f11eb4ac604f2553041424e509d4584cadbb68f713936ea83822a0"
Job succeeded
2026-04-11 02:58.25: Job succeeded