(not at the head of any monitored branch or PR)
2026-03-19 09:46.08: New job: test melange.6.0.1-54 with ppxlib.0.38.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29563/head (387e2f5b0d8ca5a51f4ba81536f829fd909dafd1)
                              on debian-13-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29563/head" && git reset --hard 387e2f5b
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ppxlib.0.38.0 0.38.0
RUN opam reinstall ppxlib.0.38.0; \
    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" != 'ppxlib.0.38.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall melange.6.0.1-54; \
    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.6.0.1-54' && 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.6.0.1-54) || true
RUN opam reinstall --with-test --verbose melange.6.0.1-54; \
    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.6.0.1-54' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-03-19 09:46.08: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ppxlib.0.38.0-melange.6.0.1-54-387e2f5b0d8ca5a51f4ba81536f829fd909dafd1"
2026-03-19 09:46.08: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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 ppxlib.0.38.0 0.38.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppxlib.0.38.0;\
             \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\" != 'ppxlib.0.38.0' && 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.6.0.1-54;\
             \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.6.0.1-54' && 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.6.0.1-54) || true"))
 (run (shell  "opam reinstall --with-test --verbose melange.6.0.1-54;\
             \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.6.0.1-54' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-19 09:46.08: Waiting for resource in pool OCluster
2026-03-19 10:03.31: Waiting for worker…
2026-03-19 10:07.11: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  72% (13391/18507)
Updating files:  73% (13511/18507)
Updating files:  74% (13696/18507)
Updating files:  75% (13881/18507)
Updating files:  76% (14066/18507)
Updating files:  77% (14251/18507)
Updating files:  78% (14436/18507)
Updating files:  79% (14621/18507)
Updating files:  80% (14806/18507)
Updating files:  81% (14991/18507)
Updating files:  82% (15176/18507)
Updating files:  83% (15361/18507)
Updating files:  84% (15546/18507)
Updating files:  85% (15731/18507)
Updating files:  86% (15917/18507)
Updating files:  87% (16102/18507)
Updating files:  88% (16287/18507)
Updating files:  89% (16472/18507)
Updating files:  90% (16657/18507)
Updating files:  91% (16842/18507)
Updating files:  92% (17027/18507)
Updating files:  93% (17212/18507)
Updating files:  94% (17397/18507)
Updating files:  95% (17582/18507)
Updating files:  96% (17767/18507)
Updating files:  97% (17952/18507)
Updating files:  98% (18137/18507)
Updating files:  99% (18322/18507)
Updating files: 100% (18507/18507)
Updating files: 100% (18507/18507), done.
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..387e2f5b0d
Fast-forward
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.

warning: There are too many unreachable loose objects; run 'git prune' to remove them.

 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam | 46 +++++++++++++++++++
 packages/ppxlib/ppxlib.0.38.0/opam             | 63 ++++++++++++++++++++++++++
 2 files changed, 109 insertions(+)
 create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam
 create mode 100644 packages/ppxlib/ppxlib.0.38.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-19 10:06.48 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-19 10:06.48 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-19 10:06.48 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-19 10:06.48 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-19 10:06.48 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-19 10:06.49 ---> using "9d8cc36197a71528b63fe04f79d1649762809d9ec83eba6f0c06c229a46c3b1e" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-19 10:06.49 ---> using "5509f690ecb628432e7502096394e9a8b63aad213914f5607e18899dcf41adf5" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [115 kB]
- Fetched 10.0 MB in 2s (6190 kB/s)
- Reading package lists...
- 
2026-03-19 10:06.49 ---> using "c119ff57a8eb9445dd8da255df88aa2ff9898da0152c2bbc23fd844afce69fec" from cache

/home/opam: (run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
ppxlib is now pinned to version 0.38.0
2026-03-19 10:06.49 ---> using "7195c8f119ae68382766a79800de7ba172a5818b23de97c72c7c904f492eb68b" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppxlib.0.38.0;\
                        \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\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ppxlib.0.38.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install dune                3.22.0          [required by ppxlib]
  - install ocaml-compiler-libs v0.17.0         [required by ppxlib]
  - install ppx_derivers        1.2.1           [required by ppxlib]
  - install ppxlib              0.38.0 (pinned)
  - install sexplib0            v0.17.0         [required by ppxlib]
  - install stdlib-shims        0.3.0           [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 10:06.49 ---> using "2c476e2190c517057923c1f359a490188da144a6779299831d31e1ef2b4a7a45" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall melange.6.0.1-54;\
                        \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.6.0.1-54' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
melange.6.0.1-54 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install cmdliner        2.1.0    [required by melange]
  - install cppo            1.8.0    [required by melange]
  - install dune-build-info 3.22.0   [required by melange]
  - install melange         6.0.1-54
  - 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]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved dune-build-info.3.22.0  (cached)
-> installed cppo.1.8.0
-> retrieved melange.6.0.1-54  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> installed cmdliner.2.1.0
-> installed dune-build-info.3.22.0
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed menhir.20260209
-> installed melange.6.0.1-54
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 10:08.18 ---> saved as "fe13a8293bf615fbb0cb82ecf996cc3cc1353f829d008a66a9ba3d61aa8710d6"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved melange.6.0.1-54  (https://opam.ocaml.org/cache)
-> removed   melange.6.0.1-54
-> installed melange.6.0.1-54
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 10:09.54 ---> saved as "2c971bef22d14b7b741bdc77d188b3416dabeeebceafda7815be019e2afbf2ad"

/home/opam: (run (shell  "opam reinstall --with-test --verbose melange.6.0.1-54;\
                        \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.6.0.1-54' && 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 6.0.1-54

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [melange.6.0.1-54: extract]
-> retrieved melange.6.0.1-54  (cached)
Processing  2/4: [melange: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "melange" "-j" "71" "@install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/melange.6.0.1-54)
- (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/d4e5c59031f24e64ed9ba0fffb54a9a9/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 -bin-annot-occurrences -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/a5b9f4259f8e10c2adb3df25c1066e0c/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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 atomic --bs-package-name melange -no-alias-deps -open Stdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Atomic.cmj -c -impl jscomp/stdlib/atomic.pp.ml)
- File "atomic.cppo.ml", line 30, characters 11-25:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_atomic_exchange_field
- 
- File "atomic.cppo.ml", line 32, characters 11-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_atomic_fetch_add_field
- 
- File "atomic.cppo.ml", line 34, characters 11-33:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_atomic_fetch_add_field
- (cd _build/.sandbox/5058282146da115051e74bd4cd502cb8/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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", line 188, characters 7-34:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_sys_rev_convert_signal_number
- 
- File "sys.cppo.ml", line 192, characters 7-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_sys_convert_signal_number
- 
- File "sys.cppo.ml", lines 203-204, characters 0-35:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_ml_enable_runtime_warnings
- 
- File "sys.cppo.ml", lines 205-206, characters 0-36:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_ml_runtime_warnings_enabled
- (cd _build/.sandbox/aabde2bbb1b16ab86cecf817ce72ad99/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/c5da553b5680441375e31d11f7f4eecc/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/c690b3b8d77dffabb421e1a746e07e70/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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 iarray --bs-package-name melange -no-alias-deps -open Stdlib -o jscomp/stdlib/.stdlib.objs/melange/stdlib__Iarray.cmj -c -impl jscomp/stdlib/iarray.pp.ml)
- File "iarray.cppo.ml", line 74, characters 7-24:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_array_append
- (cd _build/.sandbox/9802d61697e9c0fcd152f57bcda8b561/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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 167, characters 13-34:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_nextafter_float
- 
- File "float.cppo.ml", line 168, characters 13-38:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_nextafter_float
- 
- File "float.cppo.ml", line 277, characters 31-42:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_floatarray_make
- 
- File "float.cppo.ml", line 277, characters 31-42:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_floatarray_make
- 
- File "float.cppo.ml", line 301, characters 4-34:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_floatarray_blit
- 
- File "float.cppo.ml", line 311, characters 4-30:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_floatarray_blit
- 
- File "float.cppo.ml", line 322, characters 4-32:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_floatarray_blit
- 
- File "float.cppo.ml", line 323, characters 4-33:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_floatarray_blit
- 
- File "float.cppo.ml", line 334, 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/9e4b32d4863e9b4bfa9d2718d4bf54ec/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/911de4a6d8f2739e8e21a7fe223d474e/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/3769f33eddf41a430b8f75a930e65d83/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/10557307f7f6ea54ba76cd622d0c11e1/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/77deaf8f5f8431de72590d17312346e0/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/5d0065adac765fd9c4c9bb74fac3c9eb/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/d648fe4900198ac616cd20058ef87850/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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 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 167, characters 6-50:
- 167 |       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/e1bda8878d266032a149ad8b6101696d/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/3a1cc4aa3833362fe09f952e912958c5/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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/0b4f5964ff112f65b719893bc32ab3f1/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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 "filename.cppo.ml", line 360, characters 16-75:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_sys_open
- 
- File "filename.cppo.ml", line 360, characters 6-75:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_sys_close
- 
- File "filename.cppo.ml", line 383, characters 6-26:
- Warning 106 [melange-unimplemented-primitive]: Unimplemented primitive used: caml_sys_mkdir
- (cd _build/.sandbox/608a4dbd33ce9b2232f48706032717bf/default && bin/melc.exe -nopervasives -nostdlib -w -40 -mel-no-check-div-by-zero -mel-cross-module-opt -nolabels -w -9 -bin-annot -bin-annot-occurrences -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.6.0.1-54
-> removed   melange.6.0.1-54
-> installed melange.6.0.1-54
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 10:11.34 ---> saved as "4f139aee2552b8029e3235a80d7bf305330311179ef606cf22b13208e9b29e21"
Job succeeded
2026-03-19 10:12.00: Job succeeded