Build:
- 0
2026-02-27 04:05.00: New job: test faad.0.4.0 with ocaml-compiler.5.4.0~beta1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/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-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
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 ocaml-compiler.5.4.0~beta1 5.4.0~beta1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1; \
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" != 'ocaml-compiler.5.4.0~beta1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall faad.0.4.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" != 'faad.0.4.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 faad.0.4.0) || true
RUN opam reinstall --with-test --verbose faad.0.4.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" != 'faad.0.4.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:05.00: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-compiler.5.4.0~beta1-faad.0.4.0-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:05.00: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(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 ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
\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\" != 'ocaml-compiler.5.4.0~beta1' && 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 faad.0.4.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\" != 'faad.0.4.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 faad.0.4.0) || true"))
(run (shell "opam reinstall --with-test --verbose faad.0.4.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\" != 'faad.0.4.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:05.00: Waiting for resource in pool OCluster
2026-03-02 11:59.57: Waiting for worker…
2026-03-02 12:17.59: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 70% (12986/18334)
Updating files: 71% (13018/18334)
Updating files: 72% (13201/18334)
Updating files: 73% (13384/18334)
Updating files: 74% (13568/18334)
Updating files: 75% (13751/18334)
Updating files: 76% (13934/18334)
Updating files: 77% (14118/18334)
Updating files: 78% (14301/18334)
Updating files: 79% (14484/18334)
Updating files: 80% (14668/18334)
Updating files: 81% (14851/18334)
Updating files: 82% (15034/18334)
Updating files: 83% (15218/18334)
Updating files: 84% (15401/18334)
Updating files: 85% (15584/18334)
Updating files: 86% (15768/18334)
Updating files: 87% (15951/18334)
Updating files: 88% (16134/18334)
Updating files: 89% (16318/18334)
Updating files: 90% (16501/18334)
Updating files: 91% (16684/18334)
Updating files: 92% (16868/18334)
Updating files: 93% (17051/18334)
Updating files: 94% (17234/18334)
Updating files: 95% (17418/18334)
Updating files: 96% (17601/18334)
Updating files: 97% (17784/18334)
Updating files: 98% (17968/18334)
Updating files: 99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
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-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 12:18.02 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" 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-02 12:18.02 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" 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.
Continue? [Y/n] y
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.
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 12:18.02 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-02 12:18.02 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" 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-02 12:18.02 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 12:18.04 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 12:18.04 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" 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 [113 kB]
- Fetched 203 kB in 0s (1230 kB/s)
- Reading package lists...
-
2026-03-02 12:18.04 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
ocaml-compiler is now pinned to version 5.4.0~beta1
2026-03-02 12:18.04 ---> using "6fd37d04a9e382ba9520dd8b4a6843a6d9b45aa8b88c7f16a736b525cb8983ed" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
\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\" != 'ocaml-compiler.5.4.0~beta1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-compiler.5.4.0~beta1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
- remove ocaml-base-compiler 5.4.0 (pinned) [conflicts with ocaml-compiler]
=== downgrade 1 package
- downgrade ocaml-compiler 5.4.0 to 5.4.0~beta1 (pinned)
=== recompile 6 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 1 package
- install ocaml-variants 5.4.0~beta1+options [required by ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta1 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta1
-> installed ocaml-variants.5.4.0~beta1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta1+options"}]
Use `opam switch set-invariant' to change it.
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-02 12:18.04 ---> using "762340eb078c3df659e13e030502422547d3305b9c3af0f846f7b3c885574d39" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall faad.0.4.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\" != 'faad.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
faad.0.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install base-bytes base [required by faad]
- install faad 0.4.0
- install ocamlfind 1.9.8 [required by faad]
The following system packages will first need to be installed:
libfaad-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libfaad-dev"
- Selecting previously unselected package libfaad2:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../libfaad2_2.11.2-1_amd64.deb ...
- Unpacking libfaad2:amd64 (2.11.2-1) ...
- Selecting previously unselected package libfaad-dev:amd64.
- Preparing to unpack .../libfaad-dev_2.11.2-1_amd64.deb ...
- Unpacking libfaad-dev:amd64 (2.11.2-1) ...
- Setting up libfaad2:amd64 (2.11.2-1) ...
- Setting up libfaad-dev:amd64 (2.11.2-1) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved faad.0.4.0 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed faad.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 12:18.31 ---> saved as "37604ce81e1ca2141ba4ff50cd7a00c387209dc873843489ca8b445612ae8712"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test faad.0.4.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile faad 0.4.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved faad.0.4.0 (https://opam.ocaml.org/cache)
-> removed faad.0.4.0
-> installed faad.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 12:18.49 ---> saved as "af1808d2509badc5410e5384a6684816fa67aad8d2f304c6b709a1ba355b4b79"
/home/opam: (run (shell "opam reinstall --with-test --verbose faad.0.4.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\" != 'faad.0.4.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 faad 0.4.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [faad.0.4.0: extract]
-> retrieved faad.0.4.0 (cached)
Processing 2/4: [faad: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix" "/home/opam/.opam/5.4" (CWD=/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0)
- configuring ocaml-faad 0.4.0
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to accept ISO C89... none needed
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking for a BSD-compatible install...
- /usr/bin/install -c
- checking target toolchain... linux
- checking for gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
- checking for ar... ar
- checking for ocamlc... ocamlc
- OCaml version is 5.4.0~beta1
- checking if ocaml compiler supports first-class modules... yes
- OCaml library path is /home/opam/.opam/5.4/lib/ocaml
- checking for ocamlopt... ocamlopt
- checking for ocamlc.opt... ocamlc.opt
- checking for ocamlopt.opt... ocamlopt.opt
- checking for ocaml... ocaml
- checking for ocamldep... ocamldep
- checking for ocamldep.opt... ocamldep.opt
- checking for ocamlmktop... ocamlmktop
- checking for ocamlmklib... ocamlmklib
- checking for ocamldoc... ocamldoc
- checking for ocamldoc.opt... ocamldoc.opt
- checking for ocamlbuild... no
- checking for camlidl... no
- checking for ocamllex... ocamllex
- checking for ocamllex.opt... ocamllex.opt
- checking for ocamlyacc... ocamlyacc
- checking for camlp4... no
- checking for camlp4boot... no
- checking for camlp4o... no
- checking for camlp4of... no
- checking for camlp4oof... no
- checking for camlp4orf... no
- checking for camlp4prof... no
- checking for camlp4r... no
- checking for camlp4rf... no
- checking for ocamlfind... ocamlfind
- checking for ocaml standard library path... /home/opam/.opam/5.4/lib/ocaml
- checking for caml/threads.h... yes
- checking for gcc option to produce PIC... -fPIC
- checking how to run the C preprocessor... gcc -E
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for ANSI C header files... yes
- checking for sys/types.h... yes
- checking for sys/stat.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for memory.h... yes
- checking for strings.h...
- yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for unistd.h... yes
- checking errno.h usability... yes
- checking errno.h presence... yes
- checking for errno.h... yes
- checking neaacdec.h usability... yes
- checking neaacdec.h presence... yes
- checking for neaacdec.h... yes
- checking for NeAACDecInit... yes
- checking for ocaml bytes module... ok
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating src/META
- config.status: creating src/Makefile
- config.status: creating config.h
Processing 2/4: [faad: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0)
- make -C src all
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
- ocamldep.opt faad.ml > ._d/faad.d
- ocamldep.opt faad.mli > ._bcdi/faad.di
- OCamlMakefile:1129: warning: pattern recipe did not update peer target '._ncdi/faad.di'.
- ocamlc.opt -c -cc "gcc" -ccopt "-fPIC -g -O2 -I/home/opam/.opam/5.4/include -I.. -DHAVE_CONFIG_H -Wall -DCAML_NAME_SPACE -DUSE_TAGGING \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -I/home/opam/.opam/5.4/lib/bytes -o faad_stubs.o " faad_stubs.c
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/alloc.h:20,
- from faad_stubs.c:29:
- faad_stubs.c: In function 'ocaml_faad_mp4_read_sample':
- /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:366:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 366 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- faad_stubs.c:503:10: note: in expansion of macro 'String_val'
- 503 | memcpy(String_val(ans), buf, buflen);
- | ^~~~~~~~~~
- In file included from faad_stubs.c:40:
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- ocamlc.opt -c -cc "gcc" -ccopt "-fPIC -g -O2 -I/home/opam/.opam/5.4/include -I.. -DHAVE_CONFIG_H -Wall -DCAML_NAME_SPACE -DUSE_TAGGING \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -I/home/opam/.opam/5.4/lib/bytes -o mp4atom.o " mp4atom.c
- mp4atom.c: In function 'mp4ff_read_esds':
- mp4atom.c:343:57: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 343 | mp4ff_read_data(f, f->track[f->total_tracks - 1]->decoderConfig, f->track[f->total_tracks - 1]->decoderConfigLen);
- | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
- | |
- | uint8_t * {aka unsigned char *}
- In file included from mp4atom.c:44:
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4atom.c: In function 'mp4ff_read_mp4a':
- mp4atom.c:354:14: warning: variable 'size' set but not used [-Wunused-but-set-variable]
- 354 | uint64_t size;
- | ^~~~
- mp4ffint.h: At top level:
- mp4ffint.h:175:16: warning: 'mp4ff_chunk_of_sample' declared 'static' but never defined [-Wunused-function]
- 175 | static int32_t mp4ff_chunk_of_sample(const mp4ff_t *f, const int32_t track, const int32_t sample,
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:177:16: warning: 'mp4ff_chunk_to_offset' declared 'static' but never defined [-Wunused-function]
- 177 | static int32_t mp4ff_chunk_to_offset(const mp4ff_t *f, const int32_t track, const int32_t chunk);
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:178:16: warning: 'mp4ff_sample_range_size' declared 'static' but never defined [-Wunused-function]
- 178 | static int32_t mp4ff_sample_range_size(const mp4ff_t *f, const int32_t track,
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:180:16: warning: 'mp4ff_sample_to_offset' declared 'static' but never defined [-Wunused-function]
- 180 | static int32_t mp4ff_sample_to_offset(const mp4ff_t *f, const int32_t track, const int32_t sample);
- | ^~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:186:16: warning: 'mp4ff_tag_add_field' declared 'static' but never defined [-Wunused-function]
- 186 | static int32_t mp4ff_tag_add_field(mp4ff_metadata_t *tags, const char *item, const char *value, int32_t len);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:187:16: warning: 'mp4ff_tag_set_field' declared 'static' but never defined [-Wunused-function]
- 187 | static int32_t mp4ff_tag_set_field(mp4ff_metadata_t *tags, const char *item, const char *value);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:188:16: warning: 'mp4ff_set_metadata_name' declared 'static' but never defined [-Wunused-function]
- 188 | static int32_t mp4ff_set_metadata_name(mp4ff_t *f, const uint8_t atom_type, char **name);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:189:16: warning: 'mp4ff_parse_tag' declared 'static' but never defined [-Wunused-function]
- 189 | static int32_t mp4ff_parse_tag(mp4ff_t *f, const uint8_t parent_atom_type, const int32_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:190:16: warning: 'mp4ff_meta_find_by_name' declared 'static' but never defined [-Wunused-function]
- 190 | static int32_t mp4ff_meta_find_by_name(const mp4ff_t *f, const char *item, char **value);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -cc "gcc" -ccopt "-fPIC -g -O2 -I/home/opam/.opam/5.4/include -I.. -DHAVE_CONFIG_H -Wall -DCAML_NAME_SPACE -DUSE_TAGGING \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -I/home/opam/.opam/5.4/lib/bytes -o mp4ff.o " mp4ff.c
- mp4ff.c: In function 'mp4ff_read_sample':
- mp4ff.c:452:33: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 452 | result = mp4ff_read_data(f, *audio_buffer, *bytes);
- | ^~~~~~~~~~~~~
- | |
- | uint8_t * {aka unsigned char *}
- In file included from mp4ff.c:33:
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4ff.c: In function 'mp4ff_read_sample_v2':
- mp4ff.c:478:36: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 478 | result = mp4ff_read_data(f,buffer,size);
- | ^~~~~~
- | |
- | unsigned char *
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'unsigned char *'
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4ffint.h: At top level:
- mp4ffint.h:157:16: warning: 'mp4ff_atom_get_size' declared 'static' but never defined [-Wunused-function]
- 157 | static int32_t mp4ff_atom_get_size(const int8_t *data);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:158:16: warning: 'mp4ff_atom_compare' declared 'static' but never defined [-Wunused-function]
- 158 | static int32_t mp4ff_atom_compare(const int8_t a1, const int8_t b1, const int8_t c1, const int8_t d1,
- | ^~~~~~~~~~~~~~~~~~
- mp4ffint.h:160:16: warning: 'mp4ff_atom_name_to_type' declared 'static' but never defined [-Wunused-function]
- 160 | static uint8_t mp4ff_atom_name_to_type(const int8_t a, const int8_t b, const int8_t c, const int8_t d);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:162:16: warning: 'mp4ff_read_stsz' declared 'static' but never defined [-Wunused-function]
- 162 | static int32_t mp4ff_read_stsz(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:163:16: warning: 'mp4ff_read_esds' declared 'static' but never defined [-Wunused-function]
- 163 | static int32_t mp4ff_read_esds(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:164:16: warning: 'mp4ff_read_mp4a' declared 'static' but never defined [-Wunused-function]
- 164 | static int32_t mp4ff_read_mp4a(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:165:16: warning: 'mp4ff_read_stsd' declared 'static' but never defined [-Wunused-function]
- 165 | static int32_t mp4ff_read_stsd(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:166:16: warning: 'mp4ff_read_stsc' declared 'static' but never defined [-Wunused-function]
- 166 | static int32_t mp4ff_read_stsc(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:167:16: warning: 'mp4ff_read_stco' declared 'static' but never defined [-Wunused-function]
- 167 | static int32_t mp4ff_read_stco(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:168:16: warning: 'mp4ff_read_stts' declared 'static' but never defined [-Wunused-function]
- 168 | static int32_t mp4ff_read_stts(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:170:16: warning: 'mp4ff_read_meta' declared 'static' but never defined [-Wunused-function]
- 170 | static int32_t mp4ff_read_meta(mp4ff_t *f, const uint64_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:175:16: warning: 'mp4ff_chunk_of_sample' declared 'static' but never defined [-Wunused-function]
- 175 | static int32_t mp4ff_chunk_of_sample(const mp4ff_t *f, const int32_t track, const int32_t sample,
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:177:16: warning: 'mp4ff_chunk_to_offset' declared 'static' but never defined [-Wunused-function]
- 177 | static int32_t mp4ff_chunk_to_offset(const mp4ff_t *f, const int32_t track, const int32_t chunk);
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:178:16: warning: 'mp4ff_sample_range_size' declared 'static' but never defined [-Wunused-function]
- 178 | static int32_t mp4ff_sample_range_size(const mp4ff_t *f, const int32_t track,
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:180:16: warning: 'mp4ff_sample_to_offset' declared 'static' but never defined [-Wunused-function]
- 180 | static int32_t mp4ff_sample_to_offset(const mp4ff_t *f, const int32_t track, const int32_t sample);
- | ^~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:186:16: warning: 'mp4ff_tag_add_field' declared 'static' but never defined [-Wunused-function]
- 186 | static int32_t mp4ff_tag_add_field(mp4ff_metadata_t *tags, const char *item, const char *value, int32_t len);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:187:16: warning: 'mp4ff_tag_set_field' declared 'static' but never defined [-Wunused-function]
- 187 | static int32_t mp4ff_tag_set_field(mp4ff_metadata_t *tags, const char *item, const char *value);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:188:16: warning: 'mp4ff_set_metadata_name' declared 'static' but never defined [-Wunused-function]
- 188 | static int32_t mp4ff_set_metadata_name(mp4ff_t *f, const uint8_t atom_type, char **name);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:189:16: warning: 'mp4ff_parse_tag' declared 'static' but never defined [-Wunused-function]
- 189 | static int32_t mp4ff_parse_tag(mp4ff_t *f, const uint8_t parent_atom_type, const int32_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:190:16: warning: 'mp4ff_meta_find_by_name' declared 'static' but never defined [-Wunused-function]
- 190 | static int32_t mp4ff_meta_find_by_name(const mp4ff_t *f, const char *item, char **value);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -cc "gcc" -ccopt "-fPIC -g -O2 -I/home/opam/.opam/5.4/include -I.. -DHAVE_CONFIG_H -Wall -DCAML_NAME_SPACE -DUSE_TAGGING \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -I/home/opam/.opam/5.4/lib/bytes -o mp4meta.o " mp4meta.c
- In file included from mp4meta.c:36:
- mp4ffint.h:157:16: warning: 'mp4ff_atom_get_size' declared 'static' but never defined [-Wunused-function]
- 157 | static int32_t mp4ff_atom_get_size(const int8_t *data);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:158:16: warning: 'mp4ff_atom_compare' declared 'static' but never defined [-Wunused-function]
- 158 | static int32_t mp4ff_atom_compare(const int8_t a1, const int8_t b1, const int8_t c1, const int8_t d1,
- | ^~~~~~~~~~~~~~~~~~
- mp4ffint.h:160:16: warning: 'mp4ff_atom_name_to_type' declared 'static' but never defined [-Wunused-function]
- 160 | static uint8_t mp4ff_atom_name_to_type(const int8_t a, const int8_t b, const int8_t c, const int8_t d);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:162:16: warning: 'mp4ff_read_stsz' declared 'static' but never defined [-Wunused-function]
- 162 | static int32_t mp4ff_read_stsz(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:163:16: warning: 'mp4ff_read_esds' declared 'static' but never defined [-Wunused-function]
- 163 | static int32_t mp4ff_read_esds(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:164:16: warning: 'mp4ff_read_mp4a' declared 'static' but never defined [-Wunused-function]
- 164 | static int32_t mp4ff_read_mp4a(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:165:16: warning: 'mp4ff_read_stsd' declared 'static' but never defined [-Wunused-function]
- 165 | static int32_t mp4ff_read_stsd(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:166:16: warning: 'mp4ff_read_stsc' declared 'static' but never defined [-Wunused-function]
- 166 | static int32_t mp4ff_read_stsc(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:167:16: warning: 'mp4ff_read_stco' declared 'static' but never defined [-Wunused-function]
- 167 | static int32_t mp4ff_read_stco(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:168:16: warning: 'mp4ff_read_stts' declared 'static' but never defined [-Wunused-function]
- 168 | static int32_t mp4ff_read_stts(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:170:16: warning: 'mp4ff_read_meta' declared 'static' but never defined [-Wunused-function]
- 170 | static int32_t mp4ff_read_meta(mp4ff_t *f, const uint64_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:175:16: warning: 'mp4ff_chunk_of_sample' declared 'static' but never defined [-Wunused-function]
- 175 | static int32_t mp4ff_chunk_of_sample(const mp4ff_t *f, const int32_t track, const int32_t sample,
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:177:16: warning: 'mp4ff_chunk_to_offset' declared 'static' but never defined [-Wunused-function]
- 177 | static int32_t mp4ff_chunk_to_offset(const mp4ff_t *f, const int32_t track, const int32_t chunk);
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:178:16: warning: 'mp4ff_sample_range_size' declared 'static' but never defined [-Wunused-function]
- 178 | static int32_t mp4ff_sample_range_size(const mp4ff_t *f, const int32_t track,
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:180:16: warning: 'mp4ff_sample_to_offset' declared 'static' but never defined [-Wunused-function]
- 180 | static int32_t mp4ff_sample_to_offset(const mp4ff_t *f, const int32_t track, const int32_t sample);
- | ^~~~~~~~~~~~~~~~~~~~~~
- mp4meta.c:169:16: warning: 'TrackToString' defined but not used [-Wunused-function]
- 169 | static int32_t TrackToString(char** str, const uint16_t track, const uint16_t totalTracks)
- | ^~~~~~~~~~~~~
- mp4meta.c:80:16: warning: 'mp4ff_tag_set_field' defined but not used [-Wunused-function]
- 80 | static int32_t mp4ff_tag_set_field(mp4ff_metadata_t *tags, const char *item, const char *value)
- | ^~~~~~~~~~~~~~~~~~~
- ocamlc.opt -c -cc "gcc" -ccopt "-fPIC -g -O2 -I/home/opam/.opam/5.4/include -I.. -DHAVE_CONFIG_H -Wall -DCAML_NAME_SPACE -DUSE_TAGGING \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -I/home/opam/.opam/5.4/lib/bytes -o mp4sample.o " mp4sample.c
- In file included from mp4sample.c:32:
- mp4ffint.h:157:16: warning: 'mp4ff_atom_get_size' declared 'static' but never defined [-Wunused-function]
- 157 | static int32_t mp4ff_atom_get_size(const int8_t *data);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:158:16: warning: 'mp4ff_atom_compare' declared 'static' but never defined [-Wunused-function]
- 158 | static int32_t mp4ff_atom_compare(const int8_t a1, const int8_t b1, const int8_t c1, const int8_t d1,
- | ^~~~~~~~~~~~~~~~~~
- mp4ffint.h:160:16: warning: 'mp4ff_atom_name_to_type' declared 'static' but never defined [-Wunused-function]
- 160 | static uint8_t mp4ff_atom_name_to_type(const int8_t a, const int8_t b, const int8_t c, const int8_t d);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:162:16: warning: 'mp4ff_read_stsz' declared 'static' but never defined [-Wunused-function]
- 162 | static int32_t mp4ff_read_stsz(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:163:16: warning: 'mp4ff_read_esds' declared 'static' but never defined [-Wunused-function]
- 163 | static int32_t mp4ff_read_esds(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:164:16: warning: 'mp4ff_read_mp4a' declared 'static' but never defined [-Wunused-function]
- 164 | static int32_t mp4ff_read_mp4a(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:165:16: warning: 'mp4ff_read_stsd' declared 'static' but never defined [-Wunused-function]
- 165 | static int32_t mp4ff_read_stsd(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:166:16: warning: 'mp4ff_read_stsc' declared 'static' but never defined [-Wunused-function]
- 166 | static int32_t mp4ff_read_stsc(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:167:16: warning: 'mp4ff_read_stco' declared 'static' but never defined [-Wunused-function]
- 167 | static int32_t mp4ff_read_stco(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:168:16: warning: 'mp4ff_read_stts' declared 'static' but never defined [-Wunused-function]
- 168 | static int32_t mp4ff_read_stts(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:170:16: warning: 'mp4ff_read_meta' declared 'static' but never defined [-Wunused-function]
- 170 | static int32_t mp4ff_read_meta(mp4ff_t *f, const uint64_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:186:16: warning: 'mp4ff_tag_add_field' declared 'static' but never defined [-Wunused-function]
- 186 | static int32_t mp4ff_tag_add_field(mp4ff_metadata_t *tags, const char *item, const char *value, int32_t len);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:187:16: warning: 'mp4ff_tag_set_field' declared 'static' but never defined [-Wunused-function]
- 187 | static int32_t mp4ff_tag_set_field(mp4ff_metadata_t *tags, const char *item, const char *value);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:188:16: warning: 'mp4ff_set_metadata_name' declared 'static' but never defined [-Wunused-function]
- 188 | static int32_t mp4ff_set_metadata_name(mp4ff_t *f, const uint8_t atom_type, char **name);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:189:16: warning: 'mp4ff_parse_tag' declared 'static' but never defined [-Wunused-function]
- 189 | static int32_t mp4ff_parse_tag(mp4ff_t *f, const uint8_t parent_atom_type, const int32_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:190:16: warning: 'mp4ff_meta_find_by_name' declared 'static' but never defined [-Wunused-function]
- 190 | static int32_t mp4ff_meta_find_by_name(const mp4ff_t *f, const char *item, char **value);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- In function 'mp4ff_chunk_to_offset',
- inlined from 'mp4ff_sample_to_offset' at mp4sample.c:126:21,
- inlined from 'mp4ff_set_sample_position' at mp4sample.c:151:14:
- mp4sample.c:85:35: warning: 'chunk' may be used uninitialized [-Wmaybe-uninitialized]
- 85 | if (p_track->stco_entry_count && (chunk > p_track->stco_entry_count))
- | ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- mp4sample.c: In function 'mp4ff_set_sample_position':
- mp4sample.c:122:13: note: 'chunk' was declared here
- 122 | int32_t chunk, chunk_sample, chunk_offset1, chunk_offset2;
- | ^~~~~
- In function 'mp4ff_sample_range_size',
- inlined from 'mp4ff_sample_to_offset' at mp4sample.c:127:37,
- inlined from 'mp4ff_set_sample_position' at mp4sample.c:151:14:
- mp4sample.c:111:44: warning: 'chunk_sample' may be used uninitialized [-Wmaybe-uninitialized]
- 111 | for(i = chunk_sample, total = 0; i < sample; i++)
- | ~~^~~~~~~~
- mp4sample.c: In function 'mp4ff_set_sample_position':
- mp4sample.c:122:20: note: 'chunk_sample' was declared here
- 122 | int32_t chunk, chunk_sample, chunk_offset1, chunk_offset2;
- | ^~~~~~~~~~~~
- ocamlc.opt -c -cc "gcc" -ccopt "-fPIC -g -O2 -I/home/opam/.opam/5.4/include -I.. -DHAVE_CONFIG_H -Wall -DCAML_NAME_SPACE -DUSE_TAGGING \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -I/home/opam/.opam/5.4/lib/bytes -o mp4tagupdate.o " mp4tagupdate.c
- mp4tagupdate.c: In function 'membuffer_transfer_from_file':
- mp4tagupdate.c:146:57: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 146 | if ((unsigned)mp4ff_read_data(src,(char*)bufptr + oldsize,bytes)!=bytes)
- | ~~~~~~~~~~~~~~^~~~~~~~~
- | |
- | char *
- In file included from mp4tagupdate.c:3:
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'char *'
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c: In function 'find_atom':
- mp4tagupdate.c:420:35: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 420 | mp4ff_read_data(f,atom_name,4);
- | ^~~~~~~~~
- | |
- | char *
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'char *'
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c: In function 'modify_moov':
- mp4tagupdate.c:587:35: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 587 | mp4ff_read_data(f,p_out,(uint32_t)(udta_offset - total_base )); p_out += (uint32_t)(udta_offset - total_base );
- | ^~~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c:589:35: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 589 | mp4ff_read_data(f,p_out,4); p_out += 4;
- | ^~~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c:590:35: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 590 | mp4ff_read_data(f,p_out,(uint32_t)(meta_offset - udta_offset - 8)); p_out += (uint32_t)(meta_offset - udta_offset - 8);
- | ^~~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c:592:35: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 592 | mp4ff_read_data(f,p_out,4); p_out += 4;
- | ^~~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c:593:35: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 593 | mp4ff_read_data(f,p_out,(uint32_t)(ilst_offset - meta_offset - 8)); p_out += (uint32_t)(ilst_offset - meta_offset - 8);
- | ^~~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c:595:35: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 595 | mp4ff_read_data(f,p_out,4); p_out += 4;
- | ^~~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c:601:35: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 601 | mp4ff_read_data(f,p_out,(uint32_t)(total_size - (ilst_offset - total_base) - ilst_size));
- | ^~~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4ffint.h:142:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 142 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c: In function 'mp4ff_meta_update':
- mp4tagupdate.c:636:30: warning: pointer targets in passing argument 2 of 'mp4ff_write_data' differ in signedness [-Wpointer-sign]
- 636 | mp4ff_write_data(ff, free_data, 4);
- | ^~~~~~~~~
- | |
- | char *
- mp4ffint.h:143:46: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'char *'
- 143 | int32_t mp4ff_write_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c:640:37: warning: pointer targets in passing argument 2 of 'mp4ff_write_data' differ in signedness [-Wpointer-sign]
- 640 | mp4ff_write_data(ff,"moov",4);
- | ^~~~~~
- | |
- | char *
- mp4ffint.h:143:46: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'char *'
- 143 | int32_t mp4ff_write_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4tagupdate.c:647:37: warning: pointer targets in passing argument 2 of 'mp4ff_write_data' differ in signedness [-Wpointer-sign]
- 647 | mp4ff_write_data(ff,"moov",4);
- | ^~~~~~
- | |
- | char *
- mp4ffint.h:143:46: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'char *'
- 143 | int32_t mp4ff_write_data(mp4ff_t *f, int8_t *data, uint32_t size);
- | ~~~~~~~~^~~~
- mp4ffint.h: At top level:
- mp4ffint.h:157:16: warning: 'mp4ff_atom_get_size' declared 'static' but never defined [-Wunused-function]
- 157 | static int32_t mp4ff_atom_get_size(const int8_t *data);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:158:16: warning: 'mp4ff_atom_compare' declared 'static' but never defined [-Wunused-function]
- 158 | static int32_t mp4ff_atom_compare(const int8_t a1, const int8_t b1, const int8_t c1, const int8_t d1,
- | ^~~~~~~~~~~~~~~~~~
- mp4ffint.h:160:16: warning: 'mp4ff_atom_name_to_type' declared 'static' but never defined [-Wunused-function]
- 160 | static uint8_t mp4ff_atom_name_to_type(const int8_t a, const int8_t b, const int8_t c, const int8_t d);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:162:16: warning: 'mp4ff_read_stsz' declared 'static' but never defined [-Wunused-function]
- 162 | static int32_t mp4ff_read_stsz(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:163:16: warning: 'mp4ff_read_esds' declared 'static' but never defined [-Wunused-function]
- 163 | static int32_t mp4ff_read_esds(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:164:16: warning: 'mp4ff_read_mp4a' declared 'static' but never defined [-Wunused-function]
- 164 | static int32_t mp4ff_read_mp4a(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:165:16: warning: 'mp4ff_read_stsd' declared 'static' but never defined [-Wunused-function]
- 165 | static int32_t mp4ff_read_stsd(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:166:16: warning: 'mp4ff_read_stsc' declared 'static' but never defined [-Wunused-function]
- 166 | static int32_t mp4ff_read_stsc(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:167:16: warning: 'mp4ff_read_stco' declared 'static' but never defined [-Wunused-function]
- 167 | static int32_t mp4ff_read_stco(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:168:16: warning: 'mp4ff_read_stts' declared 'static' but never defined [-Wunused-function]
- 168 | static int32_t mp4ff_read_stts(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:170:16: warning: 'mp4ff_read_meta' declared 'static' but never defined [-Wunused-function]
- 170 | static int32_t mp4ff_read_meta(mp4ff_t *f, const uint64_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:175:16: warning: 'mp4ff_chunk_of_sample' declared 'static' but never defined [-Wunused-function]
- 175 | static int32_t mp4ff_chunk_of_sample(const mp4ff_t *f, const int32_t track, const int32_t sample,
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:177:16: warning: 'mp4ff_chunk_to_offset' declared 'static' but never defined [-Wunused-function]
- 177 | static int32_t mp4ff_chunk_to_offset(const mp4ff_t *f, const int32_t track, const int32_t chunk);
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:178:16: warning: 'mp4ff_sample_range_size' declared 'static' but never defined [-Wunused-function]
- 178 | static int32_t mp4ff_sample_range_size(const mp4ff_t *f, const int32_t track,
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:180:16: warning: 'mp4ff_sample_to_offset' declared 'static' but never defined [-Wunused-function]
- 180 | static int32_t mp4ff_sample_to_offset(const mp4ff_t *f, const int32_t track, const int32_t sample);
- | ^~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:186:16: warning: 'mp4ff_tag_add_field' declared 'static' but never defined [-Wunused-function]
- 186 | static int32_t mp4ff_tag_add_field(mp4ff_metadata_t *tags, const char *item, const char *value, int32_t len);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:187:16: warning: 'mp4ff_tag_set_field' declared 'static' but never defined [-Wunused-function]
- 187 | static int32_t mp4ff_tag_set_field(mp4ff_metadata_t *tags, const char *item, const char *value);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:188:16: warning: 'mp4ff_set_metadata_name' declared 'static' but never defined [-Wunused-function]
- 188 | static int32_t mp4ff_set_metadata_name(mp4ff_t *f, const uint8_t atom_type, char **name);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:189:16: warning: 'mp4ff_parse_tag' declared 'static' but never defined [-Wunused-function]
- 189 | static int32_t mp4ff_parse_tag(mp4ff_t *f, const uint8_t parent_atom_type, const int32_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:190:16: warning: 'mp4ff_meta_find_by_name' declared 'static' but never defined [-Wunused-function]
- 190 | static int32_t mp4ff_meta_find_by_name(const mp4ff_t *f, const char *item, char **value);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4tagupdate.c:23:17: warning: 'fix_byte_order_16' defined but not used [-Wunused-function]
- 23 | static uint16_t fix_byte_order_16(uint16_t src)
- | ^~~~~~~~~~~~~~~~~
- ocamlc.opt -c -cc "gcc" -ccopt "-fPIC -g -O2 -I/home/opam/.opam/5.4/include -I.. -DHAVE_CONFIG_H -Wall -DCAML_NAME_SPACE -DUSE_TAGGING \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -I/home/opam/.opam/5.4/lib/bytes -o mp4util.o " mp4util.c
- mp4util.c: In function 'mp4ff_write_int32':
- mp4util.c:78:31: warning: pointer targets in passing argument 2 of 'mp4ff_write_data' differ in signedness [-Wpointer-sign]
- 78 | return mp4ff_write_data(f,(uint8_t*)&result,sizeof(result));
- | ^~~~~~~~~~~~~~~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4util.c:53:46: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 53 | int32_t mp4ff_write_data(mp4ff_t *f, int8_t *data, uint32_t size)
- | ~~~~~~~~^~~~
- mp4util.c: In function 'mp4ff_read_int64':
- mp4util.c:100:24: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 100 | mp4ff_read_data(f, data, 8);
- | ^~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4util.c:34:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 34 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size)
- | ~~~~~~~~^~~~
- mp4util.c: In function 'mp4ff_read_string':
- mp4util.c:160:49: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 160 | if ((uint32_t)mp4ff_read_data(f,str,length)!=length)
- | ^~~
- | |
- | char *
- mp4util.c:34:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'char *'
- 34 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size)
- | ~~~~~~~~^~~~
- mp4util.c: In function 'mp4ff_read_char':
- mp4util.c:176:24: warning: pointer targets in passing argument 2 of 'mp4ff_read_data' differ in signedness [-Wpointer-sign]
- 176 | mp4ff_read_data(f, &output, 1);
- | ^~~~~~~
- | |
- | uint8_t * {aka unsigned char *}
- mp4util.c:34:45: note: expected 'int8_t *' {aka 'signed char *'} but argument is of type 'uint8_t *' {aka 'unsigned char *'}
- 34 | int32_t mp4ff_read_data(mp4ff_t *f, int8_t *data, uint32_t size)
- | ~~~~~~~~^~~~
- In file included from mp4util.c:31:
- mp4ffint.h: At top level:
- mp4ffint.h:157:16: warning: 'mp4ff_atom_get_size' declared 'static' but never defined [-Wunused-function]
- 157 | static int32_t mp4ff_atom_get_size(const int8_t *data);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:158:16: warning: 'mp4ff_atom_compare' declared 'static' but never defined [-Wunused-function]
- 158 | static int32_t mp4ff_atom_compare(const int8_t a1, const int8_t b1, const int8_t c1, const int8_t d1,
- | ^~~~~~~~~~~~~~~~~~
- mp4ffint.h:160:16: warning: 'mp4ff_atom_name_to_type' declared 'static' but never defined [-Wunused-function]
- 160 | static uint8_t mp4ff_atom_name_to_type(const int8_t a, const int8_t b, const int8_t c, const int8_t d);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:162:16: warning: 'mp4ff_read_stsz' declared 'static' but never defined [-Wunused-function]
- 162 | static int32_t mp4ff_read_stsz(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:163:16: warning: 'mp4ff_read_esds' declared 'static' but never defined [-Wunused-function]
- 163 | static int32_t mp4ff_read_esds(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:164:16: warning: 'mp4ff_read_mp4a' declared 'static' but never defined [-Wunused-function]
- 164 | static int32_t mp4ff_read_mp4a(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:165:16: warning: 'mp4ff_read_stsd' declared 'static' but never defined [-Wunused-function]
- 165 | static int32_t mp4ff_read_stsd(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:166:16: warning: 'mp4ff_read_stsc' declared 'static' but never defined [-Wunused-function]
- 166 | static int32_t mp4ff_read_stsc(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:167:16: warning: 'mp4ff_read_stco' declared 'static' but never defined [-Wunused-function]
- 167 | static int32_t mp4ff_read_stco(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:168:16: warning: 'mp4ff_read_stts' declared 'static' but never defined [-Wunused-function]
- 168 | static int32_t mp4ff_read_stts(mp4ff_t *f);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:170:16: warning: 'mp4ff_read_meta' declared 'static' but never defined [-Wunused-function]
- 170 | static int32_t mp4ff_read_meta(mp4ff_t *f, const uint64_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:175:16: warning: 'mp4ff_chunk_of_sample' declared 'static' but never defined [-Wunused-function]
- 175 | static int32_t mp4ff_chunk_of_sample(const mp4ff_t *f, const int32_t track, const int32_t sample,
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:177:16: warning: 'mp4ff_chunk_to_offset' declared 'static' but never defined [-Wunused-function]
- 177 | static int32_t mp4ff_chunk_to_offset(const mp4ff_t *f, const int32_t track, const int32_t chunk);
- | ^~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:178:16: warning: 'mp4ff_sample_range_size' declared 'static' but never defined [-Wunused-function]
- 178 | static int32_t mp4ff_sample_range_size(const mp4ff_t *f, const int32_t track,
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:180:16: warning: 'mp4ff_sample_to_offset' declared 'static' but never defined [-Wunused-function]
- 180 | static int32_t mp4ff_sample_to_offset(const mp4ff_t *f, const int32_t track, const int32_t sample);
- | ^~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:186:16: warning: 'mp4ff_tag_add_field' declared 'static' but never defined [-Wunused-function]
- 186 | static int32_t mp4ff_tag_add_field(mp4ff_metadata_t *tags, const char *item, const char *value, int32_t len);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:187:16: warning: 'mp4ff_tag_set_field' declared 'static' but never defined [-Wunused-function]
- 187 | static int32_t mp4ff_tag_set_field(mp4ff_metadata_t *tags, const char *item, const char *value);
- | ^~~~~~~~~~~~~~~~~~~
- mp4ffint.h:188:16: warning: 'mp4ff_set_metadata_name' declared 'static' but never defined [-Wunused-function]
- 188 | static int32_t mp4ff_set_metadata_name(mp4ff_t *f, const uint8_t atom_type, char **name);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- mp4ffint.h:189:16: warning: 'mp4ff_parse_tag' declared 'static' but never defined [-Wunused-function]
- 189 | static int32_t mp4ff_parse_tag(mp4ff_t *f, const uint8_t parent_atom_type, const int32_t size);
- | ^~~~~~~~~~~~~~~
- mp4ffint.h:190:16: warning: 'mp4ff_meta_find_by_name' declared 'static' but never defined [-Wunused-function]
- 190 | static int32_t mp4ff_meta_find_by_name(const mp4ff_t *f, const char *item, char **value);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ar rcs libfaad_stubs.a faad_stubs.o mp4atom.o mp4ff.o mp4meta.o mp4sample.o mp4tagupdate.o mp4util.o
- ocamlc.opt -c -g -w +A-4@5-7@8-9@11@12@20-35-44-45-50 -I /home/opam/.opam/5.4/lib/bytes faad.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- ocamlc.opt -c -g -w +A-4@5-7@8-9@11@12@20-35-44-45-50 -I /home/opam/.opam/5.4/lib/bytes faad.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- ocamlmklib -I /home/opam/.opam/5.4/lib/bytes -L/home/opam/.opam/5.4/lib \
- -o faad_stubs faad_stubs.o mp4atom.o mp4ff.o mp4meta.o mp4sample.o mp4tagupdate.o mp4util.o -lfaad -lm \
-
- ocamlc.opt -a -dllib dllfaad_stubs.so -I /home/opam/.opam/5.4/lib/bytes -ccopt -L/home/opam/.opam/5.4/lib -ccopt -L/home/opam/.opam/5.4/lib -cclib -lfaad_stubs -cclib -lfaad -cclib -lm -o faad.cma faad.cmo
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
- ocamldep.opt -native faad.mli > ._ncdi/faad.di
- make[2]: 'libfaad_stubs.a' is up to date.
- ocamlopt.opt -c -g -w +A-4@5-7@8-9@11@12@20-35-44-45-50 -I /home/opam/.opam/5.4/lib/bytes faad.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_auto_include:
- OCaml's lib directory layout changed in 5.0. The unix subdirectory has been
- automatically added to the search path, but you should add -I +unix to the
- command-line to silence this alert (e.g. by adding unix to the list of
- libraries in your dune file, or adding use_unix to your _tags file for
- ocamlbuild, or using -package unix for ocamlfind).
- ocamlopt.opt -a -I /home/opam/.opam/5.4/lib/bytes -ccopt -L/home/opam/.opam/5.4/lib -ccopt -L/home/opam/.opam/5.4/lib -cclib -lfaad_stubs -cclib -lfaad -cclib -lm -o faad.cmxa faad.cmx
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
-> compiled faad.0.4.0
Processing 3/4: [faad: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "faad" (CWD=/home/opam/.opam/5.4/.opam-switch/remove/faad.0.4.0)
- Removed /home/opam/.opam/5.4/lib/faad/META
- Removed /home/opam/.opam/5.4/lib/stublibs/dllfaad_stubs.so.owner
- Removed /home/opam/.opam/5.4/lib/stublibs/dllfaad_stubs.so
- Removed /home/opam/.opam/5.4/lib/faad
-> removed faad.0.4.0
Processing 4/4: [faad: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0)
- make -C src install
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
- make[2]: 'libfaad_stubs.a' is up to date.
- make[2]: 'faad.cma' is up to date.
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
- make[2]: 'libfaad_stubs.a' is up to date.
- make[2]: 'faad.cmxa' is up to date.
- make[2]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
-
- Installing library with ocamlfind
- ocamlfind install faad META faad.mli faad.cmi faad.cma faad.cmxa faad.cmx faad.a libfaad_stubs.a dllfaad_stubs.so
- Installed /home/opam/.opam/5.4/lib/faad/libfaad_stubs.a
- Installed /home/opam/.opam/5.4/lib/faad/faad.a
- Installed /home/opam/.opam/5.4/lib/faad/faad.cmx
- Installed /home/opam/.opam/5.4/lib/faad/faad.cmxa
- Installed /home/opam/.opam/5.4/lib/faad/faad.cma
- Installed /home/opam/.opam/5.4/lib/faad/faad.cmi
- Installed /home/opam/.opam/5.4/lib/faad/faad.mli
- Installed /home/opam/.opam/5.4/lib/stublibs/dllfaad_stubs.so
- Installed /home/opam/.opam/5.4/lib/stublibs/dllfaad_stubs.so.owner
- ocamlfind: [WARNING] You have installed DLLs but the directory /home/opam/.opam/5.4/lib/stublibs is not mentioned in ld.conf
- Installed /home/opam/.opam/5.4/lib/faad/META
-
- Installation successful.
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.4.0/src'
-> installed faad.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 12:19.07 ---> saved as "156d4b514f4af2f557e12295a38630ecb31054854cae00f96133d4dda8cd697a"
Job succeeded
2026-03-02 12:19.30: Job succeeded