(for PR #29582)
2026-03-25 13:14.48: New job: test faad.0.3.3 with ocaml-compiler.5.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0
RUN opam reinstall --update-invariant ocaml-compiler.5.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" != 'ocaml-compiler.5.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 faad.0.3.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" != 'faad.0.3.3' && 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.3.3) || true
RUN opam reinstall --with-test --verbose faad.0.3.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" != 'faad.0.3.3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-25 13:14.48: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-faad.0.3.3-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.48: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.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\" != 'ocaml-compiler.5.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall faad.0.3.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\" != 'faad.0.3.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 (network host)
(shell "(opam reinstall --with-test faad.0.3.3) || true"))
(run (shell "opam reinstall --with-test --verbose faad.0.3.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\" != 'faad.0.3.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-25 13:14.48: Waiting for resource in pool OCluster
2026-03-25 19:18.41: Waiting for worker…
2026-03-25 19:22.18: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.5/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.6/opam | 5 ++++-
packages/ocaml-option-llvm/ocaml-option-llvm.1/opam | 18 ++++++++++++++++++
.../ocaml-options-vanilla/ocaml-options-vanilla.1/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 2 ++
15 files changed, 69 insertions(+), 12 deletions(-)
create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 19:22.20 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 19:22.20 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[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-25 19:22.20 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# 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-25 19:22.20 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-25 19:22.20 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 19:22.21 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 19:22.21 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (10.7 MB/s)
- Reading package lists...
-
2026-03-25 19:22.21 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
ocaml-compiler is now pinned to version 5.4.0
2026-03-25 19:22.21 ---> using "60e129f7398974b5fa5afc8f56ec09bd24a9182f5e9834464bfc959db1aa6b14" 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;\
\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' && 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 8 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-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
- recompile ocaml-compiler 5.4.0 (pinned)
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0 (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
-> installed ocaml-base-compiler.5.4.0
-> 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
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-25 19:22.21 ---> using "efbc92fc0c607605c8bb33f9e4c8fe340a48c67e14d2f61592db8a4edc5c0b15" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall faad.0.3.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\" != 'faad.0.3.3' && 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.3.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install faad 0.3.3
- 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.3.3 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed ocamlfind.1.9.8
-> installed faad.0.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:22.33 ---> saved as "851a72c3b5a8ebb11bb054465d5b9a8e1129d457336e5c707e2dd67ce086730e"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test faad.0.3.3) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile faad 0.3.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved faad.0.3.3 (https://opam.ocaml.org/cache)
-> removed faad.0.3.3
-> installed faad.0.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:22.40 ---> saved as "342e24549d89a9a2baa47a35856cc5994649756a2d124f4ef690e2b29d53306f"
/home/opam: (run (shell "opam reinstall --with-test --verbose faad.0.3.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\" != 'faad.0.3.3' && 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.3.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [faad.0.3.3: extract]
-> retrieved faad.0.3.3 (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.3.3)
- configuring ocaml-faad 0.3.3
- 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-unknown-linux-gnu
- checking host system type... x86_64-unknown-linux-gnu
- checking for a BSD-compatible install... /usr/bin/install -c
- checking that calling user is not root... ok
- 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
- 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... no
- 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
- 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.3.3)
- make -C src all
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.3.3/src'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.3.3/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 -DITUNES_DRM \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -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:502:10: note: in expansion of macro 'String_val'
- 502 | memcpy(String_val(ans), buf, buflen);
- | ^~~~~~~~~~
- In file included from faad_stubs.c:39:
- /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 -DITUNES_DRM \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -o drms.o " drms.c
- In function 'ReadUserKey',
- inlined from 'GetUserKey' at drms.c:905:10,
- inlined from 'drms_init' at drms.c:332:17:
- drms.c:868:15: warning: '/.drms/' directive writing 7 bytes into a region of size between 1 and 255 [-Wformat-overflow=]
- 868 | "%s/" DRMS_DIRNAME "/%08X.%03d", p_drms->psz_homedir,
- | ^~~~~
- drms.c: In function 'drms_init':
- drms.c:868:18: note: format string is defined here
- 868 | "%s/" DRMS_DIRNAME "/%08X.%03d", p_drms->psz_homedir,
- | ^~~~~~~~~~~~~~~~~~
- In function 'ReadUserKey',
- inlined from 'GetUserKey' at drms.c:905:10,
- inlined from 'drms_init' at drms.c:332:17:
- drms.c:868:15: note: using the range [-2147483648, 2147483647] for directive argument
- 868 | "%s/" DRMS_DIRNAME "/%08X.%03d", p_drms->psz_homedir,
- | ^~~~~
- drms.c:867:5: note: 'sprintf' output between 20 and 282 bytes into a destination of size 255
- 867 | sprintf( psz_path, /*XMMS_PATH_MAX - 1,*/
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 868 | "%s/" DRMS_DIRNAME "/%08X.%03d", p_drms->psz_homedir,
- | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 869 | p_drms->i_user, p_drms->i_key );
- | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In function 'WriteUserKey',
- inlined from 'GetUserKey' at drms.c:1010:13,
- inlined from 'drms_init' at drms.c:332:17:
- drms.c:828:15: warning: '/.drms' directive writing 6 bytes into a region of size between 1 and 255 [-Wformat-overflow=]
- 828 | "%s/" DRMS_DIRNAME, p_drms->psz_homedir );
- | ^~~~~
- drms.c: In function 'drms_init':
- drms.c:828:18: note: format string is defined here
- 828 | "%s/" DRMS_DIRNAME, p_drms->psz_homedir );
- | ^
- In function 'WriteUserKey',
- inlined from 'GetUserKey' at drms.c:1010:13,
- inlined from 'drms_init' at drms.c:332:17:
- drms.c:827:5: note: 'sprintf' output between 7 and 261 bytes into a destination of size 255
- 827 | sprintf( psz_path, /* XMMS_PATH_MAX - 1, */
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 828 | "%s/" DRMS_DIRNAME, p_drms->psz_homedir );
- | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- drms.c:840:51: warning: '/.drms/' directive writing 7 bytes into a region of size between 1 and 255 [-Wformat-overflow=]
- 840 | sprintf( psz_path, /*XMMS_PATH_MAX - 1,*/ "%s/" DRMS_DIRNAME "/%08X.%03d",
- | ^~~~~
- drms.c: In function 'drms_init':
- drms.c:840:54: note: format string is defined here
- 840 | sprintf( psz_path, /*XMMS_PATH_MAX - 1,*/ "%s/" DRMS_DIRNAME "/%08X.%03d",
- | ^~~~~~~~~~~~~~~~~~
- In function 'WriteUserKey',
- inlined from 'GetUserKey' at drms.c:1010:13,
- inlined from 'drms_init' at drms.c:332:17:
- drms.c:840:51: note: using the range [-2147483648, 2147483647] for directive argument
- 840 | sprintf( psz_path, /*XMMS_PATH_MAX - 1,*/ "%s/" DRMS_DIRNAME "/%08X.%03d",
- | ^~~~~
- drms.c:840:9: note: 'sprintf' output between 20 and 282 bytes into a destination of size 255
- 840 | sprintf( psz_path, /*XMMS_PATH_MAX - 1,*/ "%s/" DRMS_DIRNAME "/%08X.%03d",
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 841 | p_drms->psz_homedir, p_drms->i_user, p_drms->i_key );
- | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 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 -DITUNES_DRM \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -o mp4atom.o " mp4atom.c
- 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 -DITUNES_DRM \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -o mp4ff.o " mp4ff.c
- 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 -DITUNES_DRM \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -o mp4meta.o " mp4meta.c
- 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 -DITUNES_DRM \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -o mp4sample.o " mp4sample.c
- 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 -DITUNES_DRM \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -o mp4tagupdate.o " mp4tagupdate.c
- 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 -DITUNES_DRM \
- -DPIC -fPIC -I/home/opam/.opam/5.4/include \
- -o mp4util.o " mp4util.c
- ar rcs libfaad_stubs.a faad_stubs.o drms.o mp4atom.o mp4ff.o mp4meta.o mp4sample.o mp4tagupdate.o mp4util.o
- ocamlc.opt -c -g -w +A@5-7@8@11@12@20-35-44-45 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@5-7@8@11@12@20-35-44-45 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 -L/home/opam/.opam/5.4/lib \
- -o faad_stubs faad_stubs.o drms.o mp4atom.o mp4ff.o mp4meta.o mp4sample.o mp4tagupdate.o mp4util.o -lfaad -lm \
-
- ocamlc.opt -a -dllib dllfaad_stubs.so -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.3.3/src'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.3.3/src'
- ocamldep.opt -native faad.mli > ._ncdi/faad.di
- make[2]: 'libfaad_stubs.a' is up to date.
- ocamlopt.opt -c -g -w +A@5-7@8@11@12@20-35-44-45 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 -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.3.3/src'
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.3.3/src'
-> compiled faad.0.3.3
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.3.3)
- 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.3.3
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.3.3)
- make -C src install
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.3.3/src'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.3.3/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.3.3/src'
- make[2]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/faad.0.3.3/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.3.3/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.3.3/src'
-> installed faad.0.3.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:22.47 ---> saved as "316d9bc62669cb30b350d3a45de96d7c335cba516a494d20a03b7120ef7d65cc"
Job succeeded
2026-03-25 19:22.53: Job succeeded