Build:
- 0
2026-02-27 04:14.11: New job: test stdint.0.3.0-0 with ocamlbuild.0.14.3, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
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/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633
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 ocamlbuild.0.14.3 0.14.3
RUN opam reinstall ocamlbuild.0.14.3; \
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" != 'ocamlbuild.0.14.3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall stdint.0.3.0-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" != 'stdint.0.3.0-0' && 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 stdint.0.3.0-0) || true
RUN opam reinstall --with-test --verbose stdint.0.3.0-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" != 'stdint.0.3.0-0' && 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-02-27 04:14.11: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633-ocamlbuild.0.14.3-stdint.0.3.0-0-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:14.11: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
(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 ocamlbuild.0.14.3 0.14.3"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlbuild.0.14.3;\
\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\" != 'ocamlbuild.0.14.3' && 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 stdint.0.3.0-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\" != 'stdint.0.3.0-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 (network host)
(shell "(opam reinstall --with-test stdint.0.3.0-0) || true"))
(run (shell "opam reinstall --with-test --verbose stdint.0.3.0-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\" != 'stdint.0.3.0-0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-27 04:14.11: Waiting for resource in pool OCluster
2026-03-03 21:23.42: Waiting for worker…
2026-03-03 21:27.04: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
.../ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler.4.14.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 1 +
.../ocaml-secondary-compiler.4.08.1-1/opam | 1 +
.../ocaml-secondary-compiler.4.08.1/opam | 1 +
.../ocaml-secondary-compiler.4.14.2/opam | 1 +
.../ocaml-variants.3.09.1+metaocaml/opam | 1 +
.../ocaml-variants.4.00.0+debug-runtime/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam | 1 +
.../ocaml-variants.4.00.1+debug-runtime/opam | 1 +
.../ocaml-variants.4.00.1+open-types/opam | 1 +
.../ocaml-variants.4.00.1+raspberrypi/opam | 1 +
.../ocaml-variants.4.00.1+short-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam | 1 +
.../ocaml-variants.4.01.0+armv6-freebsd/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam | 1 +
.../ocaml-variants.4.01.0+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+musl/opam | 1 +
.../ocaml-variants.4.01.0+open-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+profile/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam | 1 +
.../ocaml-variants.4.02.0+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits-ber/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits/opam | 1 +
.../ocaml-variants.4.02.1+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+musl/opam | 1 +
.../ocaml-variants.4.02.2+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam | 1 +
.../ocaml-variants.4.02.3+buckle-master/opam | 1 +
.../ocaml-variants.4.02.3+bytecode-only/opam | 1 +
.../ocaml-variants.4.02.3+curried-constr/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam | 1 +
.../ocaml-variants.4.02.3+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+musl/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+32bit/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+flambda/opam | 1 +
.../ocaml-variants.4.03.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam | 1 +
.../ocaml-variants.4.03.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam | 1 +
.../ocaml-variants.4.04.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+flambda/opam | 1 +
.../ocaml-variants.4.04.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam | 1 +
.../ocaml-variants.4.04.0+safe-string/opam | 1 +
.../ocaml-variants.4.04.0+spacetime/opam | 1 +
.../ocaml-variants.4.04.0+trunk+forced_lto/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+32bit/opam | 1 +
.../ocaml-variants.4.04.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.04.1+copatterns/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+flambda/opam | 1 +
.../ocaml-variants.4.04.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam | 1 +
.../ocaml-variants.4.04.1+safe-string/opam | 1 +
.../ocaml-variants.4.04.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+32bit/opam | 1 +
.../ocaml-variants.4.04.2+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+flambda/opam | 1 +
.../ocaml-variants.4.04.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam | 1 +
.../ocaml-variants.4.04.2+safe-string/opam | 1 +
.../ocaml-variants.4.04.2+spacetime/opam | 1 +
.../ocaml-variants.4.04.2+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam | 1 +
.../ocaml-variants.4.05.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam | 1 +
.../ocaml-variants.4.05.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.05.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.05.0+safe-string/opam | 1 +
.../ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants.4.05.1+trunk+afl/opam | 1 +
.../ocaml-variants.4.05.1+trunk+flambda/opam | 1 +
.../ocaml-variants.4.05.1+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam | 1 +
.../ocaml-variants.4.05.1+trunk+safe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam | 1 +
.../ocaml-variants.4.06.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+flambda/opam | 1 +
.../ocaml-variants.4.06.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam | 1 +
.../ocaml-variants.4.06.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.06.0+spacetime/opam | 1 +
.../ocaml-variants.4.06.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam | 1 +
.../ocaml-variants.4.06.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.1+default-unsafe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+flambda/opam | 1 +
.../ocaml-variants.4.06.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam | 1 +
.../ocaml-variants.4.06.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.1+no-flat-float-array/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+rescript/opam | 1 +
.../ocaml-variants.4.06.1+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+termux/opam | 1 +
.../ocaml-variants.4.06.2+trunk+afl/opam | 1 +
.../ocaml-variants.4.06.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.06.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam | 1 +
.../ocaml-variants.4.07.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+flambda/opam | 1 +
.../ocaml-variants.4.07.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam | 1 +
.../ocaml-variants.4.07.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam | 1 +
.../ocaml-variants.4.07.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+flambda/opam | 1 +
.../ocaml-variants.4.07.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam | 1 +
.../ocaml-variants.4.07.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.07.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.07.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants.4.07.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.07.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.07.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam | 1 +
.../ocaml-variants.4.08.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+flambda/opam | 1 +
.../ocaml-variants.4.08.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam | 1 +
.../ocaml-variants.4.08.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.08.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam | 1 +
.../ocaml-variants.4.08.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+flambda/opam | 1 +
.../ocaml-variants.4.08.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam | 1 +
.../ocaml-variants.4.08.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants.4.08.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.08.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.08.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam | 1 +
.../ocaml-variants.4.09.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+flambda/opam | 1 +
.../ocaml-variants.4.09.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam | 1 +
.../ocaml-variants.4.09.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+32bit/opam | 1 +
.../ocaml-variants.4.09.1+afl+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam | 1 +
.../ocaml-variants.4.09.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+flambda/opam | 1 +
.../ocaml-variants.4.09.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam | 1 +
.../ocaml-variants.4.09.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants.4.09.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.09.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.09.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam | 1 +
.../ocaml-variants.4.10.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+flambda/opam | 1 +
.../ocaml-variants.4.10.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam | 1 +
.../ocaml-variants.4.10.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.0+musl+static+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam | 1 +
.../ocaml-variants.4.10.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.10.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam | 1 +
.../ocaml-variants.4.10.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+flambda/opam | 1 +
.../ocaml-variants.4.10.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam | 1 +
.../ocaml-variants.4.10.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.1+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam | 1 +
.../ocaml-variants.4.10.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam | 1 +
.../ocaml-variants.4.10.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+flambda/opam | 1 +
.../ocaml-variants.4.10.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam | 1 +
.../ocaml-variants.4.10.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.2+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+rescript/opam | 1 +
.../ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants.4.10.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.10.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam | 1 +
.../ocaml-variants.4.11.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+flambda/opam | 1 +
.../ocaml-variants.4.11.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam | 1 +
.../ocaml-variants.4.11.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+32bit/opam | 1 +
.../ocaml-variants.4.11.1+BER+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam | 1 +
.../ocaml-variants.4.11.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+flambda/opam | 1 +
.../ocaml-variants.4.11.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam | 1 +
.../ocaml-variants.4.11.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam | 1 +
.../ocaml-variants.4.11.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+flambda/opam | 1 +
.../ocaml-variants.4.11.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam | 1 +
.../ocaml-variants.4.11.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.2+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants.4.11.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.11.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk/opam | 1 +
.../ocaml-variants.4.12.0+domains+effects/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+domains/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.2+options/opam | 1 +
.../ocaml-variants.4.14.2~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.3+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam | 1 +
.../ocaml-variants.5.1.1+effect-syntax/opam | 1 +
.../ocaml-variants.5.1.1+flambda2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.0+options/opam | 1 +
.../ocaml-variants.5.2.0+statmemprof/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.1+options/opam | 1 +
.../ocaml-variants.5.2.1~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.1/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.15.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.16.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.0/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.2/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.3/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.5/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.6/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.8/opam | 1 +
packages/relocatable/relocatable.packages/opam | 18 ++++++++++++++++++
432 files changed, 464 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
2026-03-03 21:27.30 ---> using "d6079ab6cce1b58b34ac9b5ed11aa86b7980ab728c75f5a6ba9271e98dc1ac1c" 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-03 21:27.30 ---> using "3c00c47f9d923b8bd6ffb2b949e4b9efd562ec1af5385aec1656ef10f01c4450" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-03 21:27.30 ---> using "a92b73fe3956045426c13ac4a0686c952a1f3abe3c88ddfc7b2f3a6ed1e46736" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-03 21:27.30 ---> using "cae9d187aa902d60c82d0c2150bbd9c0de1870c923aa0b0063ad5a25247acae5" 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-03 21:27.30 ---> using "feb31a4f8ccbcfb9943e7338a457db5bc00688ce26b7db5634b111626cd4af24" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 21:27.31 ---> using "b92870a8fb6886bac6050e75eb8fa24a784127e0cc5005f6e7617ee9eaf0fbc1" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 21:27.31 ---> using "99f9416150e19d4e3f0d87844ce4f5bfe5703b97a6a1e1cd5864eee876c17ec0" 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 [108 kB]
- Fetched 199 kB in 0s (2157 kB/s)
- Reading package lists...
2026-03-03 21:27.31 ---> using "601bd46762889fe7f0e35beb46822e1a66440be2f8382677d2b4063ddcb53047" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocamlbuild.0.14.3 0.14.3"))
ocamlbuild is now pinned to version 0.14.3
2026-03-03 21:27.31 ---> using "56786dfb1fd4acd8855209513e2e83189de8e282ff743a486eaa6b6e4a6e303e" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlbuild.0.14.3;\
\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\" != 'ocamlbuild.0.14.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocamlbuild.0.14.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install ocamlbuild 0.14.3 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlbuild.0.14.3 (cached)
-> installed ocamlbuild.0.14.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 21:27.31 ---> using "82b7fafbd87dcabebb669c592ca4dcad15653eb9187591a603cd544ae38b4428" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall stdint.0.3.0-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\" != 'stdint.0.3.0-0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
stdint.0.3.0-0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install base-bytes base [required by stdint]
- install ocamlfind 1.9.8 [required by stdint]
- install stdint 0.3.0-0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved stdint.0.3.0-0 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed stdint.0.3.0-0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 21:27.47 ---> saved as "04d5510807608f37f23a229d1cb9590d859b163ad5e79eccfdb57939f1a008dd"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test stdint.0.3.0-0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile stdint 0.3.0-0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved stdint.0.3.0-0 (https://opam.ocaml.org/cache)
-> removed stdint.0.3.0-0
-> installed stdint.0.3.0-0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 21:28.01 ---> saved as "5dafb5f9360a814d5a43c774e7dc8d4c71b4af0dc67aacec00c1f0a01bb8a44c"
/home/opam: (run (shell "opam reinstall --with-test --verbose stdint.0.3.0-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\" != 'stdint.0.3.0-0' && 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 stdint 0.3.0-0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [stdint.0.3.0-0: extract]
-> retrieved stdint.0.3.0-0 (cached)
Processing 2/4: [stdint: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-configure" "--prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/stdint.0.3.0-0)
- File "./setup.ml", line 318, characters 20-36:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 | Hashtbl.hash (String.lowercase s)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 | String.lowercase buf
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 | String.lowercase
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 | concat dir (String.capitalize base)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 | concat dir (String.uncapitalize base)
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 7100, characters 46-67:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
-
- Configuration:
- ocamlfind: ........................................... /home/opam/.opam/4.14/bin/ocamlfind
- ocamlc: .............................................. /home/opam/.opam/4.14/bin/ocamlc.opt
- ocamlopt: ............................................ /home/opam/.opam/4.14/bin/ocamlopt.opt
- ocamlbuild: .......................................... /home/opam/.opam/4.14/bin/ocamlbuild
- Package name: ........................................ stdint
- Package version: ..................................... 0.3.0
- os_type: ............................................. Unix
- system: .............................................. linux
- architecture: ........................................ amd64
- ccomp_type: .......................................... cc
- ocaml_version: ....................................... 4.14.2
- standard_library_default: ............................ /home/opam/.opam/4.14/lib/ocaml
- standard_library: .................................... /home/opam/.opam/4.14/lib/ocaml
- bytecomp_c_compiler: ................................. gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
- native_c_compiler: ................................... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64
- model: ............................................... default
- ext_obj: ............................................. .o
- ext_asm: ............................................. .s
- ext_lib: ............................................. .a
- ext_dll: ............................................. .so
- default_executable_name: ............................. a.out
- systhread_supported: ................................. true
- Install architecture-independent files dir: .......... /home/opam/.opam/4.14
- Install architecture-dependent files in dir: ......... $prefix
- User executables: .................................... $exec_prefix/bin
- System admin executables: ............................ $exec_prefix/sbin
- Program executables: ................................. $exec_prefix/libexec
- Read-only single-machine data: ....................... $prefix/etc
- Modifiable architecture-independent data: ............ $prefix/com
- Modifiable single-machine data: ...................... $prefix/var
- Object code libraries: ............................... $exec_prefix/lib
- Read-only arch-independent data root: ................ $prefix/share
- Read-only architecture-independent data: ............. $datarootdir
- Info documentation: .................................. $datarootdir/info
- Locale-dependent data: ............................... $datarootdir/locale
- Man documentation: ................................... $datarootdir/man
- Documentation root: .................................. $datarootdir/doc/$pkg_name
- HTML documentation: .................................. $docdir
- DVI documentation: ................................... $docdir
- PDF documentation: ................................... $docdir
- PS documentation: .................................... $docdir
- findlib_version: ..................................... 1.9.8
- is_native: ........................................... true
- suffix_program: ......................................
- Remove a file.: ...................................... rm -f
- Remove a directory.: ................................. rm -rf
- Turn ocaml debug flag on: ............................ true
- Turn ocaml profile flag on: .......................... false
- Compiler support generation of .cmxs.: ............... true
- OCamlbuild additional flags: .........................
- Create documentations: ............................... true
- Compile tests executable and library and run them: ... false
- pkg_bytes: ........................................... /home/opam/.opam/4.14/lib/bytes
- ocamldoc: ............................................ /home/opam/.opam/4.14/bin/ocamldoc
-
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-build" (CWD=/home/opam/.opam/4.14/.opam-switch/build/stdint.0.3.0-0)
- File "./setup.ml", line 318, characters 20-36:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 | Hashtbl.hash (String.lowercase s)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 | String.lowercase buf
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 | String.lowercase
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 | concat dir (String.capitalize base)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 | concat dir (String.uncapitalize base)
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 7100, characters 46-67:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- /home/opam/.opam/4.14/bin/ocamlopt.opt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint8_stubs.c
- mv uint8_stubs.o lib/uint8_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint16_stubs.c
- mv uint16_stubs.o lib/uint16_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint24_stubs.c
- mv uint24_stubs.o lib/uint24_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint32_stubs.c
- mv uint32_stubs.o lib/uint32_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint40_stubs.c
- mv uint40_stubs.o lib/uint40_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint48_stubs.c
- mv uint48_stubs.o lib/uint48_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint56_stubs.c
- mv uint56_stubs.o lib/uint56_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint64_stubs.c
- mv uint64_stubs.o lib/uint64_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint128_stubs.c
- mv uint128_stubs.o lib/uint128_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int8_stubs.c
- mv int8_stubs.o lib/int8_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int16_stubs.c
- mv int16_stubs.o lib/int16_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int24_stubs.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int24_stubs.c
- lib/int24_stubs.c: In function 'int24_mul':
- lib/int24_stubs.c:17:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 17 | CAMLreturn (copy_int24(Int24_val(v1) * Int32_val(v2)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_stubs.c: In function 'int24_div':
- lib/int24_stubs.c:27:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 27 | CAMLreturn (copy_int24((Int32_val(v1) / divisor) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_stubs.c: In function 'int24_shift_right':
- lib/int24_stubs.c:34:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 34 | CAMLreturn (copy_int24((Int32_val(v1) >> Int_val(v2)) & 0xFFFFFF00));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_stubs.c: In function 'int24_max_int':
- lib/int24_stubs.c:41:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 41 | CAMLreturn (copy_int24(INT32_MAX & 0xFFFFFF00));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_stubs.c: In function 'int24_min_int':
- lib/int24_stubs.c:48:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 48 | CAMLreturn (copy_int24(INT32_MIN & 0xFFFFFF00));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int24_stubs.o lib/int24_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int40_stubs.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int40_stubs.c
- lib/int40_stubs.c: In function 'int40_mul':
- lib/int40_stubs.c:19:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 19 | CAMLreturn (copy_int40(Int40_val(v1) * Int64_val(v2)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_stubs.c: In function 'int40_div':
- lib/int40_stubs.c:29:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 29 | CAMLreturn (copy_int40((Int64_val(v1) / divisor) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_stubs.c: In function 'int40_shift_right':
- lib/int40_stubs.c:36:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 36 | CAMLreturn (copy_int40((Int64_val(v1) >> Int_val(v2)) & mask));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_stubs.c: In function 'int40_max_int':
- lib/int40_stubs.c:43:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 43 | CAMLreturn (copy_int40(INT64_MAX & mask));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_stubs.c: In function 'int40_min_int':
- lib/int40_stubs.c:50:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 50 | CAMLreturn (copy_int40(INT64_MIN & mask));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int40_stubs.o lib/int40_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int48_stubs.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int48_stubs.c
- lib/int48_stubs.c: In function 'int48_mul':
- lib/int48_stubs.c:19:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 19 | CAMLreturn (copy_int48(Int48_val(v1) * Int64_val(v2)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_stubs.c: In function 'int48_div':
- lib/int48_stubs.c:29:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 29 | CAMLreturn (copy_int48((Int64_val(v1) / divisor) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_stubs.c: In function 'int48_shift_right':
- lib/int48_stubs.c:36:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 36 | CAMLreturn (copy_int48((Int64_val(v1) >> Int_val(v2)) & mask));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_stubs.c: In function 'int48_max_int':
- lib/int48_stubs.c:43:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 43 | CAMLreturn (copy_int48(INT64_MAX & mask));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_stubs.c: In function 'int48_min_int':
- lib/int48_stubs.c:50:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 50 | CAMLreturn (copy_int48(INT64_MIN & mask));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int48_stubs.o lib/int48_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int56_stubs.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int56_stubs.c
- lib/int56_stubs.c: In function 'int56_mul':
- lib/int56_stubs.c:19:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 19 | CAMLreturn (copy_int56(Int56_val(v1) * Int64_val(v2)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_stubs.c: In function 'int56_div':
- lib/int56_stubs.c:29:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 29 | CAMLreturn (copy_int56((Int64_val(v1) / divisor) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_stubs.c: In function 'int56_shift_right':
- lib/int56_stubs.c:36:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 36 | CAMLreturn (copy_int56((Int64_val(v1) >> Int_val(v2)) & mask));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_stubs.c: In function 'int56_max_int':
- lib/int56_stubs.c:43:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 43 | CAMLreturn (copy_int56(INT64_MAX & mask));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_stubs.c: In function 'int56_min_int':
- lib/int56_stubs.c:50:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 50 | CAMLreturn (copy_int56(INT64_MIN & mask));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int56_stubs.o lib/int56_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int128_stubs.c
- mv int128_stubs.o lib/int128_stubs.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/float_conv.c
- mv float_conv.o lib/float_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int_conv.c
- mv int_conv.o lib/int_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/nativeint_conv.c
- mv nativeint_conv.o lib/nativeint_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int8_conv.c
- mv int8_conv.o lib/int8_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int16_conv.c
- mv int16_conv.o lib/int16_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int24_conv.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int24_conv.c
- lib/int24_conv.c: In function 'int24_of_int':
- lib/int24_conv.c:33:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 33 | CAMLreturn (copy_int32(((int32_t)Int_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_nativeint':
- lib/int24_conv.c:40:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 40 | CAMLreturn (copy_int32(((int32_t)Nativeint_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_float':
- lib/int24_conv.c:47:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 47 | CAMLreturn (copy_int32(((int32_t)Double_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_int8':
- lib/int24_conv.c:54:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 54 | CAMLreturn (copy_int32(((int32_t)Int8_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_int16':
- lib/int24_conv.c:61:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 61 | CAMLreturn (copy_int32(((int32_t)Int16_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_int32':
- lib/int24_conv.c:68:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 68 | CAMLreturn (copy_int32(((int32_t)Int32_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_int40':
- lib/int24_conv.c:75:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 75 | CAMLreturn (copy_int32(((int32_t)Int40_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_int48':
- lib/int24_conv.c:82:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 82 | CAMLreturn (copy_int32(((int32_t)Int48_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_int56':
- lib/int24_conv.c:89:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 89 | CAMLreturn (copy_int32(((int32_t)Int56_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_int64':
- lib/int24_conv.c:96:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 96 | CAMLreturn (copy_int32(((int32_t)Int64_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_int128':
- lib/int24_conv.c:104:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 104 | CAMLreturn (copy_int32(((int32_t)Int128_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_uint8':
- lib/int24_conv.c:115:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 115 | CAMLreturn (copy_int32(((int32_t)Uint8_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_uint16':
- lib/int24_conv.c:122:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 122 | CAMLreturn (copy_int32(((int32_t)Uint16_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_uint24':
- lib/int24_conv.c:129:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 129 | CAMLreturn (copy_int32(((int32_t)Uint24_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_uint32':
- lib/int24_conv.c:136:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 136 | CAMLreturn (copy_int32(((int32_t)Uint32_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_uint40':
- lib/int24_conv.c:143:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 143 | CAMLreturn (copy_int32(((int32_t)Uint40_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_uint48':
- lib/int24_conv.c:150:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 150 | CAMLreturn (copy_int32(((int32_t)Uint48_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_uint56':
- lib/int24_conv.c:157:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 157 | CAMLreturn (copy_int32(((int32_t)Uint56_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_uint64':
- lib/int24_conv.c:164:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 164 | CAMLreturn (copy_int32(((int32_t)Uint64_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int24_conv.c: In function 'int24_of_uint128':
- lib/int24_conv.c:172:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 172 | CAMLreturn (copy_int32(((int32_t)Uint128_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int24_conv.o lib/int24_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int32_conv.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int32_conv.c
- lib/int32_conv.c: In function 'int32_of_int':
- lib/int32_conv.c:33:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 33 | CAMLreturn (copy_int32((int32_t)Int_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_nativeint':
- lib/int32_conv.c:40:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 40 | CAMLreturn (copy_int32((int32_t)Nativeint_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_float':
- lib/int32_conv.c:47:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 47 | CAMLreturn (copy_int32((int32_t)Double_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_int8':
- lib/int32_conv.c:54:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 54 | CAMLreturn (copy_int32((int32_t)Int8_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_int16':
- lib/int32_conv.c:61:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 61 | CAMLreturn (copy_int32((int32_t)Int16_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_int24':
- lib/int32_conv.c:68:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 68 | CAMLreturn (copy_int32((int32_t)Int24_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_int40':
- lib/int32_conv.c:75:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 75 | CAMLreturn (copy_int32((int32_t)Int40_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_int48':
- lib/int32_conv.c:82:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 82 | CAMLreturn (copy_int32((int32_t)Int48_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_int56':
- lib/int32_conv.c:89:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 89 | CAMLreturn (copy_int32((int32_t)Int56_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_int64':
- lib/int32_conv.c:96:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 96 | CAMLreturn (copy_int32((int32_t)Int64_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_int128':
- lib/int32_conv.c:104:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 104 | CAMLreturn (copy_int32((int32_t)Int128_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_uint8':
- lib/int32_conv.c:115:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 115 | CAMLreturn (copy_int32((int32_t)Uint8_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_uint16':
- lib/int32_conv.c:122:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 122 | CAMLreturn (copy_int32((int32_t)Uint16_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_uint24':
- lib/int32_conv.c:129:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 129 | CAMLreturn (copy_int32((int32_t)Uint24_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_uint32':
- lib/int32_conv.c:136:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 136 | CAMLreturn (copy_int32((int32_t)Uint32_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_uint40':
- lib/int32_conv.c:143:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 143 | CAMLreturn (copy_int32((int32_t)Uint40_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_uint48':
- lib/int32_conv.c:150:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 150 | CAMLreturn (copy_int32((int32_t)Uint48_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_uint56':
- lib/int32_conv.c:157:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 157 | CAMLreturn (copy_int32((int32_t)Uint56_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_uint64':
- lib/int32_conv.c:164:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 164 | CAMLreturn (copy_int32((int32_t)Uint64_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int32_conv.c: In function 'int32_of_uint128':
- lib/int32_conv.c:172:13: warning: "copy_int32" is deprecated: use "caml_copy_int32" instead
- 172 | CAMLreturn (copy_int32((int32_t)Uint128_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int32_conv.o lib/int32_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int40_conv.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int40_conv.c
- lib/int40_conv.c: In function 'int40_of_int':
- lib/int40_conv.c:33:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 33 | CAMLreturn (copy_int64(((int64_t)Int_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_nativeint':
- lib/int40_conv.c:40:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 40 | CAMLreturn (copy_int64(((int64_t)Nativeint_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_float':
- lib/int40_conv.c:47:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 47 | CAMLreturn (copy_int64(((int64_t)Double_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_int8':
- lib/int40_conv.c:54:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 54 | CAMLreturn (copy_int64(((int64_t)Int8_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_int16':
- lib/int40_conv.c:61:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 61 | CAMLreturn (copy_int64(((int64_t)Int16_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_int24':
- lib/int40_conv.c:68:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 68 | CAMLreturn (copy_int64(((int64_t)Int24_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_int32':
- lib/int40_conv.c:75:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 75 | CAMLreturn (copy_int64(((int64_t)Int32_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_int48':
- lib/int40_conv.c:82:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 82 | CAMLreturn (copy_int64(((int64_t)Int48_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_int56':
- lib/int40_conv.c:89:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 89 | CAMLreturn (copy_int64(((int64_t)Int56_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_int64':
- lib/int40_conv.c:96:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 96 | CAMLreturn (copy_int64(((int64_t)Int64_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_int128':
- lib/int40_conv.c:104:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 104 | CAMLreturn (copy_int64(((int64_t)Int128_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_uint8':
- lib/int40_conv.c:115:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 115 | CAMLreturn (copy_int64(((int64_t)Uint8_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_uint16':
- lib/int40_conv.c:122:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 122 | CAMLreturn (copy_int64(((int64_t)Uint16_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_uint24':
- lib/int40_conv.c:129:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 129 | CAMLreturn (copy_int64(((int64_t)Uint24_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_uint32':
- lib/int40_conv.c:136:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 136 | CAMLreturn (copy_int64(((int64_t)Uint32_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_uint40':
- lib/int40_conv.c:143:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 143 | CAMLreturn (copy_int64(((int64_t)Uint40_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_uint48':
- lib/int40_conv.c:150:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 150 | CAMLreturn (copy_int64(((int64_t)Uint48_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_uint56':
- lib/int40_conv.c:157:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 157 | CAMLreturn (copy_int64(((int64_t)Uint56_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_uint64':
- lib/int40_conv.c:164:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 164 | CAMLreturn (copy_int64(((int64_t)Uint64_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int40_conv.c: In function 'int40_of_uint128':
- lib/int40_conv.c:172:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 172 | CAMLreturn (copy_int64(((int64_t)Uint128_val(v)) << 24));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int40_conv.o lib/int40_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int48_conv.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int48_conv.c
- lib/int48_conv.c: In function 'int48_of_int':
- lib/int48_conv.c:33:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 33 | CAMLreturn (copy_int64(((int64_t)Int_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_nativeint':
- lib/int48_conv.c:40:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 40 | CAMLreturn (copy_int64(((int64_t)Nativeint_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_float':
- lib/int48_conv.c:47:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 47 | CAMLreturn (copy_int64(((int64_t)Double_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_int8':
- lib/int48_conv.c:54:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 54 | CAMLreturn (copy_int64(((int64_t)Int8_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_int16':
- lib/int48_conv.c:61:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 61 | CAMLreturn (copy_int64(((int64_t)Int16_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_int24':
- lib/int48_conv.c:68:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 68 | CAMLreturn (copy_int64(((int64_t)Int24_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_int32':
- lib/int48_conv.c:75:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 75 | CAMLreturn (copy_int64(((int64_t)Int32_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_int40':
- lib/int48_conv.c:82:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 82 | CAMLreturn (copy_int64(((int64_t)Int40_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_int56':
- lib/int48_conv.c:89:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 89 | CAMLreturn (copy_int64(((int64_t)Int56_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_int64':
- lib/int48_conv.c:96:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 96 | CAMLreturn (copy_int64(((int64_t)Int64_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_int128':
- lib/int48_conv.c:104:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 104 | CAMLreturn (copy_int64(((int64_t)Int128_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_uint8':
- lib/int48_conv.c:115:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 115 | CAMLreturn (copy_int64(((int64_t)Uint8_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_uint16':
- lib/int48_conv.c:122:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 122 | CAMLreturn (copy_int64(((int64_t)Uint16_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_uint24':
- lib/int48_conv.c:129:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 129 | CAMLreturn (copy_int64(((int64_t)Uint24_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_uint32':
- lib/int48_conv.c:136:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 136 | CAMLreturn (copy_int64(((int64_t)Uint32_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_uint40':
- lib/int48_conv.c:143:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 143 | CAMLreturn (copy_int64(((int64_t)Uint40_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_uint48':
- lib/int48_conv.c:150:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 150 | CAMLreturn (copy_int64(((int64_t)Uint48_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_uint56':
- lib/int48_conv.c:157:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 157 | CAMLreturn (copy_int64(((int64_t)Uint56_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_uint64':
- lib/int48_conv.c:164:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 164 | CAMLreturn (copy_int64(((int64_t)Uint64_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int48_conv.c: In function 'int48_of_uint128':
- lib/int48_conv.c:172:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 172 | CAMLreturn (copy_int64(((int64_t)Uint128_val(v)) << 16));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int48_conv.o lib/int48_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int56_conv.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int56_conv.c
- lib/int56_conv.c: In function 'int56_of_int':
- lib/int56_conv.c:33:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 33 | CAMLreturn (copy_int64(((int64_t)Int_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_nativeint':
- lib/int56_conv.c:40:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 40 | CAMLreturn (copy_int64(((int64_t)Nativeint_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_float':
- lib/int56_conv.c:47:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 47 | CAMLreturn (copy_int64(((int64_t)Double_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_int8':
- lib/int56_conv.c:54:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 54 | CAMLreturn (copy_int64(((int64_t)Int8_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_int16':
- lib/int56_conv.c:61:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 61 | CAMLreturn (copy_int64(((int64_t)Int16_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_int24':
- lib/int56_conv.c:68:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 68 | CAMLreturn (copy_int64(((int64_t)Int24_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_int32':
- lib/int56_conv.c:75:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 75 | CAMLreturn (copy_int64(((int64_t)Int32_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_int40':
- lib/int56_conv.c:82:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 82 | CAMLreturn (copy_int64(((int64_t)Int40_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_int48':
- lib/int56_conv.c:89:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 89 | CAMLreturn (copy_int64(((int64_t)Int48_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_int64':
- lib/int56_conv.c:96:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 96 | CAMLreturn (copy_int64(((int64_t)Int64_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_int128':
- lib/int56_conv.c:104:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 104 | CAMLreturn (copy_int64(((int64_t)Int128_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_uint8':
- lib/int56_conv.c:115:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 115 | CAMLreturn (copy_int64(((int64_t)Uint8_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_uint16':
- lib/int56_conv.c:122:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 122 | CAMLreturn (copy_int64(((int64_t)Uint16_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_uint24':
- lib/int56_conv.c:129:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 129 | CAMLreturn (copy_int64(((int64_t)Uint24_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_uint32':
- lib/int56_conv.c:136:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 136 | CAMLreturn (copy_int64(((int64_t)Uint32_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_uint40':
- lib/int56_conv.c:143:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 143 | CAMLreturn (copy_int64(((int64_t)Uint40_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_uint48':
- lib/int56_conv.c:150:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 150 | CAMLreturn (copy_int64(((int64_t)Uint48_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_uint56':
- lib/int56_conv.c:157:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 157 | CAMLreturn (copy_int64(((int64_t)Uint56_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_uint64':
- lib/int56_conv.c:164:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 164 | CAMLreturn (copy_int64(((int64_t)Uint64_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int56_conv.c: In function 'int56_of_uint128':
- lib/int56_conv.c:172:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 172 | CAMLreturn (copy_int64(((int64_t)Uint128_val(v)) << 8));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int56_conv.o lib/int56_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int64_conv.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int64_conv.c
- lib/int64_conv.c: In function 'int64_of_int':
- lib/int64_conv.c:33:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 33 | CAMLreturn (copy_int64((int64_t)Int_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_nativeint':
- lib/int64_conv.c:40:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 40 | CAMLreturn (copy_int64((int64_t)Nativeint_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_float':
- lib/int64_conv.c:47:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 47 | CAMLreturn (copy_int64((int64_t)Double_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_int8':
- lib/int64_conv.c:54:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 54 | CAMLreturn (copy_int64((int64_t)Int8_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_int16':
- lib/int64_conv.c:61:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 61 | CAMLreturn (copy_int64((int64_t)Int16_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_int24':
- lib/int64_conv.c:68:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 68 | CAMLreturn (copy_int64((int64_t)Int24_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_int32':
- lib/int64_conv.c:75:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 75 | CAMLreturn (copy_int64((int64_t)Int32_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_int40':
- lib/int64_conv.c:82:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 82 | CAMLreturn (copy_int64((int64_t)Int40_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_int48':
- lib/int64_conv.c:89:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 89 | CAMLreturn (copy_int64((int64_t)Int48_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_int56':
- lib/int64_conv.c:96:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 96 | CAMLreturn (copy_int64((int64_t)Int56_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_int128':
- lib/int64_conv.c:104:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 104 | CAMLreturn (copy_int64((int64_t)Int128_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_uint8':
- lib/int64_conv.c:115:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 115 | CAMLreturn (copy_int64((int64_t)Uint8_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_uint16':
- lib/int64_conv.c:122:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 122 | CAMLreturn (copy_int64((int64_t)Uint16_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_uint24':
- lib/int64_conv.c:129:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 129 | CAMLreturn (copy_int64((int64_t)Uint24_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_uint32':
- lib/int64_conv.c:136:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 136 | CAMLreturn (copy_int64((int64_t)Uint32_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_uint40':
- lib/int64_conv.c:143:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 143 | CAMLreturn (copy_int64((int64_t)Uint40_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_uint48':
- lib/int64_conv.c:150:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 150 | CAMLreturn (copy_int64((int64_t)Uint48_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_uint56':
- lib/int64_conv.c:157:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 157 | CAMLreturn (copy_int64((int64_t)Uint56_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_uint64':
- lib/int64_conv.c:164:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 164 | CAMLreturn (copy_int64((int64_t)Uint64_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/int64_conv.c: In function 'int64_of_uint128':
- lib/int64_conv.c:172:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 172 | CAMLreturn (copy_int64((int64_t)Uint128_val(v)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mv int64_conv.o lib/int64_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/int128_conv.c
- mv int128_conv.o lib/int128_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint8_conv.c
- mv uint8_conv.o lib/uint8_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint16_conv.c
- mv uint16_conv.o lib/uint16_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint24_conv.c
- mv uint24_conv.o lib/uint24_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint32_conv.c
- mv uint32_conv.o lib/uint32_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint40_conv.c
- mv uint40_conv.o lib/uint40_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint48_conv.c
- mv uint48_conv.o lib/uint48_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint56_conv.c
- mv uint56_conv.o lib/uint56_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint64_conv.c
- mv uint64_conv.o lib/uint64_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -c lib/uint128_conv.c
- mv uint128_conv.o lib/uint128_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamlmklib -o lib/stdint_stubs -g lib/uint8_stubs.o lib/uint16_stubs.o lib/uint24_stubs.o lib/uint32_stubs.o lib/uint40_stubs.o lib/uint48_stubs.o lib/uint56_stubs.o lib/uint64_stubs.o lib/uint128_stubs.o lib/int8_stubs.o lib/int16_stubs.o lib/int24_stubs.o lib/int40_stubs.o lib/int48_stubs.o lib/int56_stubs.o lib/int128_stubs.o lib/float_conv.o lib/int_conv.o lib/nativeint_conv.o lib/int8_conv.o lib/int16_conv.o lib/int24_conv.o lib/int32_conv.o lib/int40_conv.o lib/int48_conv.o lib/int56_conv.o lib/int64_conv.o lib/int128_conv.o lib/uint8_conv.o lib/uint16_conv.o lib/uint24_conv.o lib/uint32_conv.o lib/uint40_conv.o lib/uint48_conv.o lib/uint56_conv.o lib/uint64_conv.o lib/uint128_conv.o
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bytes -modules lib/stdint.mli > lib/stdint.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package bytes -I lib -o lib/stdint.cmi lib/stdint.mli
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bytes -modules lib/stdint.ml > lib/stdint.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bytes -modules lib/bytes_conv.mli > lib/bytes_conv.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bytes -modules lib/infix.mli > lib/infix.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bytes -modules lib/str_conv.mli > lib/str_conv.mli.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package bytes -I lib -o lib/bytes_conv.cmi lib/bytes_conv.mli
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package bytes -I lib -o lib/infix.cmi lib/infix.mli
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package bytes -I lib -o lib/str_conv.cmi lib/str_conv.mli
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bytes -modules lib/str_conv.ml > lib/str_conv.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bytes -modules lib/bytes_conv.ml > lib/bytes_conv.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bytes -modules lib/infix.ml > lib/infix.ml.depends
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package bytes -I lib -o lib/stdint.cmo lib/stdint.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package bytes -I lib -o lib/stdint.cmo lib/stdint.ml
- File "lib/stdint.ml", line 193, characters 18-36:
- 193 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 291, characters 18-36:
- 291 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 441, characters 18-36:
- 441 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 585, characters 18-36:
- 585 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 669, characters 18-36:
- 669 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 753, characters 18-36:
- 753 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 844, characters 18-36:
- 844 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 937, characters 18-36:
- 937 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1030, characters 18-36:
- 1030 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1123, characters 18-36:
- 1123 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1208, characters 18-36:
- 1208 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1298, characters 18-36:
- 1298 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1383, characters 18-36:
- 1383 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1465, characters 18-36:
- 1465 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1547, characters 18-36:
- 1547 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1637, characters 18-36:
- 1637 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package bytes -I lib -o lib/str_conv.cmo lib/str_conv.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package bytes -I lib -o lib/bytes_conv.cmo lib/bytes_conv.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -package bytes -I lib -o lib/infix.cmo lib/infix.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -dllib -lstdint_stubs -cclib -lstdint_stubs -I lib lib/bytes_conv.cmo lib/infix.cmo lib/str_conv.cmo lib/stdint.cmo -o lib/stdint.cma
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package bytes -I lib -o lib/bytes_conv.cmx lib/bytes_conv.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package bytes -I lib -o lib/infix.cmx lib/infix.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package bytes -I lib -o lib/str_conv.cmx lib/str_conv.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package bytes -I lib -o lib/stdint.cmx lib/stdint.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -package bytes -I lib -o lib/stdint.cmx lib/stdint.ml
- File "lib/stdint.ml", line 193, characters 18-36:
- 193 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 291, characters 18-36:
- 291 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 441, characters 18-36:
- 441 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 585, characters 18-36:
- 585 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 669, characters 18-36:
- 669 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 753, characters 18-36:
- 753 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 844, characters 18-36:
- 844 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 937, characters 18-36:
- 937 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1030, characters 18-36:
- 1030 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1123, characters 18-36:
- 1123 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1208, characters 18-36:
- 1208 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1298, characters 18-36:
- 1298 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1383, characters 18-36:
- 1383 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1465, characters 18-36:
- 1465 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1547, characters 18-36:
- 1547 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "lib/stdint.ml", line 1637, characters 18-36:
- 1637 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -cclib -lstdint_stubs -I lib lib/bytes_conv.cmx lib/infix.cmx lib/str_conv.cmx lib/stdint.cmx -o lib/stdint.cmxa
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -I lib -I lib lib/stdint.cmxa lib/bytes_conv.cmx lib/infix.cmx lib/str_conv.cmx lib/stdint.cmx -o lib/stdint.cmxs
- + /home/opam/.opam/4.14/bin/ocamlopt.opt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- File "myocamlbuild.ml", line 155, characters 10-27:
- 155 | Stream.of_channel chn
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 161, characters 10-21:
- 161 | Stream.from
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 164, characters 23-34:
- 164 | match Stream.next st with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 167, characters 20-34:
- 167 | with Stream.Failure -> None)
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 170, characters 10-27:
- 170 | Genlex.make_lexer ["="] st_line
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 173, characters 16-28:
- 173 | match Stream.npeek 3 lexer with
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 15-27:
- 174 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 32-42:
- 174 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 48-61:
- 174 | | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
- ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 175, characters 16-27:
- 175 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 176, characters 16-27:
- 176 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 177, characters 16-27:
- 177 | Stream.junk lexer;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 518, characters 43-62:
- 518 | List.map (fun m -> (String.uncapitalize m) ^ ".cmi")
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "myocamlbuild.ml", line 531, characters 51-70:
- 531 | List.map (fun m -> dir^"/"^(String.uncapitalize m)^".cmi")
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
-> compiled stdint.0.3.0-0
Processing 3/4: [stdint: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "stdint" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/stdint.0.3.0-0)
- Removed /home/opam/.opam/4.14/lib/stdint/META
- Removed /home/opam/.opam/4.14/lib/stublibs/dllstdint_stubs.so.owner
- Removed /home/opam/.opam/4.14/lib/stublibs/dllstdint_stubs.so
- Removed /home/opam/.opam/4.14/lib/stdint
-> removed stdint.0.3.0-0
Processing 4/4: [stdint: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "ocaml" "setup.ml" "-install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/stdint.0.3.0-0)
- File "./setup.ml", line 318, characters 20-36:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 | String.compare (String.lowercase s1) (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 | (String.lowercase s1) = (String.lowercase s2)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 | Hashtbl.hash (String.lowercase s)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 | String.lowercase buf
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 | String.lowercase
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 | let compare = Pervasives.compare
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 | concat dir (String.capitalize base)
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 | concat dir (String.uncapitalize base)
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 7100, characters 46-67:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- Installed /home/opam/.opam/4.14/lib/stdint/uint8.h
- Installed /home/opam/.opam/4.14/lib/stdint/uint16.h
- Installed /home/opam/.opam/4.14/lib/stdint/uint24.h
- Installed /home/opam/.opam/4.14/lib/stdint/uint32.h
- Installed /home/opam/.opam/4.14/lib/stdint/uint40.h
- Installed /home/opam/.opam/4.14/lib/stdint/uint48.h
- Installed /home/opam/.opam/4.14/lib/stdint/uint56.h
- Installed /home/opam/.opam/4.14/lib/stdint/uint64.h
- Installed /home/opam/.opam/4.14/lib/stdint/uint128.h
- Installed /home/opam/.opam/4.14/lib/stdint/int8.h
- Installed /home/opam/.opam/4.14/lib/stdint/int16.h
- Installed /home/opam/.opam/4.14/lib/stdint/int24.h
- Installed /home/opam/.opam/4.14/lib/stdint/int40.h
- Installed /home/opam/.opam/4.14/lib/stdint/int48.h
- Installed /home/opam/.opam/4.14/lib/stdint/int56.h
- Installed /home/opam/.opam/4.14/lib/stdint/int128.h
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.mli
- Installed /home/opam/.opam/4.14/lib/stdint/libstdint_stubs.a
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.cma
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.cmxa
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.a
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.cmxs
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.cmi
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.cmti
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.cmt
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.annot
- Installed /home/opam/.opam/4.14/lib/stdint/infix.cmx
- Installed /home/opam/.opam/4.14/lib/stdint/bytes_conv.cmx
- Installed /home/opam/.opam/4.14/lib/stdint/str_conv.cmx
- Installed /home/opam/.opam/4.14/lib/stdint/stdint.cmx
- Installed /home/opam/.opam/4.14/lib/stublibs/dllstdint_stubs.so
- Installed /home/opam/.opam/4.14/lib/stublibs/dllstdint_stubs.so.owner
- ocamlfind: [WARNING] You have installed DLLs but the directory /home/opam/.opam/4.14/lib/stublibs is not mentioned in ld.conf
- Installed /home/opam/.opam/4.14/lib/stdint/META
-> installed stdint.0.3.0-0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 21:28.14 ---> saved as "a670d75375afda214f9201ad3335f35d9f94a6ea200dd1cc39f3192795ef0528"
Job succeeded
2026-03-03 21:28.21: Job succeeded