- github
- ocaml
- opam-repository
- 118a69
- compilers,4.14,dune.3.22.0~alpha0,revdeps,raylib.0.1.0
(not at the head of any monitored branch or PR)
2026-03-02 19:23.54: New job: test raylib.0.1.0 with dune.3.22.0~alpha0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29497/head (118a690db616b1df5c53d5fa00eb70791a80ae2c)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29497/head" && git reset --hard 118a690d
git fetch origin master
git merge --no-edit a7b8d1036328cf727af175b657f3d2b732b4d868
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0
RUN opam reinstall dune.3.22.0~alpha0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.0~alpha0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall raylib.0.1.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" != 'raylib.0.1.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 raylib.0.1.0) || true
RUN opam reinstall --with-test --verbose raylib.0.1.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" != 'raylib.0.1.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-03-02 19:23.54: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a-dune.3.22.0~alpha0-raylib.0.1.0-118a690db616b1df5c53d5fa00eb70791a80ae2c"
2026-03-02 19:23.54: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.0~alpha0' && 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 raylib.0.1.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\" != 'raylib.0.1.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 raylib.0.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose raylib.0.1.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\" != 'raylib.0.1.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-03-02 19:23.54: Waiting for resource in pool OCluster
2026-03-03 04:12.03: Waiting for worker…
2026-03-03 04:14.22: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at a7b8d10363 Merge pull request #29489 from anuragsoni/opam-publish-kqueue.0.7.0
Updating a7b8d10363..118a690db6
Fast-forward
.../chrome-trace/chrome-trace.3.22.0~alpha0/opam | 39 +++++++++++
.../dune-action-plugin.3.22.0~alpha0/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.0~alpha0/opam | 40 ++++++++++++
.../dune-build-info.3.22.0~alpha0/opam | 45 +++++++++++++
.../dune-configurator.3.22.0~alpha0/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.0~alpha0/opam | 42 ++++++++++++
.../dune-private-libs.3.22.0~alpha0/opam | 50 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.0~alpha0/opam | 37 +++++++++++
packages/dune/dune.3.22.0~alpha0/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.0~alpha0/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.0~alpha0/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.0~alpha0/opam | 38 +++++++++++
packages/stdune/stdune.3.22.0~alpha0/opam | 46 +++++++++++++
.../top-closure/top-closure.3.22.0~alpha0/opam | 38 +++++++++++
packages/xdg/xdg.3.22.0~alpha0/opam | 39 +++++++++++
18 files changed, 797 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha0/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha0/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha0/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam
create mode 100644 packages/dune-site/dune-site.3.22.0~alpha0/opam
create mode 100644 packages/dune/dune.3.22.0~alpha0/opam
create mode 100644 packages/dyn/dyn.3.22.0~alpha0/opam
create mode 100644 packages/fs-io/fs-io.3.22.0~alpha0/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam
create mode 100644 packages/ordering/ordering.3.22.0~alpha0/opam
create mode 100644 packages/stdune/stdune.3.22.0~alpha0/opam
create mode 100644 packages/top-closure/top-closure.3.22.0~alpha0/opam
create mode 100644 packages/xdg/xdg.3.22.0~alpha0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
2026-03-03 04:14.31 ---> using "40de8e47c13dd397f7466181b47c70cd31f6d05f624f7f51643a7089a29a5322" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-03 04:14.31 ---> using "11e955cadb21ab08a7e8407d7e49d7e8b8232723aa9e80323bab6a7d993e9a38" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-03 04:14.31 ---> using "b84411f14b612833c97eea3b0fb49d7afb0294cf8c4774caaff1f8b0f1bd5849" 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 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-03 04:14.31 ---> using "bc1392749f7c1b1568053e91f3061e53f54f3bf6892fcf3fa14761d0f2fabccc" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-03 04:14.31 ---> using "0f88aad717079fee185cb5f7b0853d5dede0158dafac18dc05292641ad1318aa" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 04:14.32 ---> using "cf2f29575da4e00ad2c0e3200eaf5375ace45ec778f515d81ffd2e5eb96c41f1" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 04:14.32 ---> using "c517023779902244dbe5c8fbf440d1dd4569daf367c1e2ee7dd7eb370c41d91c" 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 (1750 kB/s)
- Reading package lists...
-
2026-03-03 04:14.32 ---> using "a2e6599fe15f34bfd0a71de19dbfccfacdc1f910f7a37fea793bb8ff67d4ba47" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
dune is now pinned to version 3.22.0~alpha0
2026-03-03 04:14.32 ---> using "9ecf7f496eb9b328aa3c8f7333a40a30e123b33b9d8b5606b7ac6bfc2b62fac7" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.0~alpha0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha0 (cached)
-> installed dune.3.22.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 04:14.32 ---> using "1d093925996c7908c33a8109d0c1a7be5172d79d6a00aabc511d552ee2499f33" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall raylib.0.1.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\" != 'raylib.0.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
raylib.0.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 23 packages
- install bigarray-compat 1.1.0 [required by ppx_cstubs]
- install conf-cmake 1 [required by raylib]
- install conf-libgl 1 [required by raylib]
- install conf-libglu 1 [required by raylib]
- install conf-pkg-config 4 [required by conf-libglu]
- install containers 3.17 [required by ppx_cstubs]
- install cppo 1.8.0 [required by ppx_cstubs]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by raylib]
- install dune-configurator 3.22.0~alpha0 [required by ctypes]
- install either 1.0.0 [required by containers]
- install integers 0.7.0 [required by ctypes, ppx_cstubs]
- install num 1.6 [required by ppx_cstubs]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlfind 1.9.8 [required by ppx_cstubs]
- install ppx_cstubs 0.7.0 [required by raylib]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.35.0 [required by ppx_cstubs]
- install raylib 0.1.0
- install re 1.14.0 [required by ppx_cstubs]
- install result 1.5 [required by ppx_cstubs]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by integers, ppxlib]
The following system packages will first need to be installed:
cmake libasound2-dev libgl1-mesa-dev libglu1-mesa-dev libxi-dev libxrandr-dev mesa-common-dev pkg-config xorg-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" "cmake" "libasound2-dev" "libgl1-mesa-dev" "libglu1-mesa-dev" "libxi-dev" "libxrandr-dev" "mesa-common-dev" "pkg-config" "xorg-dev"
- Preconfiguring packages ...
- Selecting previously unselected package alsa-topology-conf.
- (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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../000-alsa-topology-conf_1.2.5.1-3_all.deb ...
- Unpacking alsa-topology-conf (1.2.5.1-3) ...
- Selecting previously unselected package libasound2-data.
- Preparing to unpack .../001-libasound2-data_1.2.14-1_all.deb ...
- Unpacking libasound2-data (1.2.14-1) ...
- Selecting previously unselected package libasound2t64:amd64.
- Preparing to unpack .../002-libasound2t64_1.2.14-1_amd64.deb ...
- Unpacking libasound2t64:amd64 (1.2.14-1) ...
- Selecting previously unselected package alsa-ucm-conf.
- Preparing to unpack .../003-alsa-ucm-conf_1.2.14-1_all.deb ...
- Unpacking alsa-ucm-conf (1.2.14-1) ...
- Selecting previously unselected package bzip2-doc.
- Preparing to unpack .../004-bzip2-doc_1.0.8-6_all.deb ...
- Unpacking bzip2-doc (1.0.8-6) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../005-cmake-data_3.31.6-2_all.deb ...
- Unpacking cmake-data (3.31.6-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../006-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libarchive13t64:amd64.
- Preparing to unpack .../007-libarchive13t64_3.7.4-4_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-4) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../008-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../009-librhash1_1.4.5-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../010-libuv1t64_1.50.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../011-cmake_3.31.6-2_amd64.deb ...
- Unpacking cmake (3.31.6-2) ...
- Selecting previously unselected package fonts-dejavu-mono.
- Preparing to unpack .../012-fonts-dejavu-mono_2.37-8_all.deb ...
- Unpacking fonts-dejavu-mono (2.37-8) ...
- Selecting previously unselected package fonts-dejavu-core.
- Preparing to unpack .../013-fonts-dejavu-core_2.37-8_all.deb ...
- Unpacking fonts-dejavu-core (2.37-8) ...
- Selecting previously unselected package fontconfig-config.
- Preparing to unpack .../014-fontconfig-config_2.15.0-2.3_amd64.deb ...
- Unpacking fontconfig-config (2.15.0-2.3) ...
- Selecting previously unselected package libasound2-dev:amd64.
- Preparing to unpack .../015-libasound2-dev_1.2.14-1_amd64.deb ...
- Unpacking libasound2-dev:amd64 (1.2.14-1) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../016-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libbz2-dev:amd64.
- Preparing to unpack .../017-libbz2-dev_1.0.8-6_amd64.deb ...
- Unpacking libbz2-dev:amd64 (1.0.8-6) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../018-libdrm-common_2.4.124-2_all.deb ...
- Unpacking libdrm-common (2.4.124-2) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../019-libdrm2_2.4.124-2_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../020-libdrm-amdgpu1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libpciaccess0:amd64.
- Preparing to unpack .../021-libpciaccess0_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../022-libdrm-intel1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-radeon1:amd64.
- Preparing to unpack .../023-libdrm-radeon1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-radeon1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-nouveau2:amd64.
- Preparing to unpack .../024-libdrm-nouveau2_2.4.124-2_amd64.deb ...
- Unpacking libdrm-nouveau2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libpciaccess-dev:amd64.
- Preparing to unpack .../025-libpciaccess-dev_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess-dev:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-dev:amd64.
- Preparing to unpack .../026-libdrm-dev_2.4.124-2_amd64.deb ...
- Unpacking libdrm-dev:amd64 (2.4.124-2) ...
- Selecting previously unselected package libglvnd0:amd64.
- Preparing to unpack .../027-libglvnd0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libwayland-server0:amd64.
- Preparing to unpack .../028-libwayland-server0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-server0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libelf1t64:amd64.
- Preparing to unpack .../029-libelf1t64_0.192-4_amd64.deb ...
- Unpacking libelf1t64:amd64 (0.192-4) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../030-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../031-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libsensors-config.
- Preparing to unpack .../032-libsensors-config_1%3a3.6.2-2_all.deb ...
- Unpacking libsensors-config (1:3.6.2-2) ...
- Selecting previously unselected package libsensors5:amd64.
- Preparing to unpack .../033-libsensors5_1%3a3.6.2-2_amd64.deb ...
- Unpacking libsensors5:amd64 (1:3.6.2-2) ...
- Selecting previously unselected package libx11-xcb1:amd64.
- Preparing to unpack .../034-libx11-xcb1_2%3a1.8.12-1_amd64.deb ...
- Unpacking libx11-xcb1:amd64 (2:1.8.12-1) ...
- Selecting previously unselected package libxcb-dri3-0:amd64.
- Preparing to unpack .../035-libxcb-dri3-0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-present0:amd64.
- Preparing to unpack .../036-libxcb-present0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-present0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-randr0:amd64.
- Preparing to unpack .../037-libxcb-randr0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-sync1:amd64.
- Preparing to unpack .../038-libxcb-sync1_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-xfixes0:amd64.
- Preparing to unpack .../039-libxcb-xfixes0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxshmfence1:amd64.
- Preparing to unpack .../040-libxshmfence1_1.3.3-1_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3.3-1) ...
- Selecting previously unselected package mesa-libgallium:amd64.
- Preparing to unpack .../041-mesa-libgallium_25.0.7-2_amd64.deb ...
- Unpacking mesa-libgallium:amd64 (25.0.7-2) ...
- Selecting previously unselected package libgbm1:amd64.
- Preparing to unpack .../042-libgbm1_25.0.7-2_amd64.deb ...
- Unpacking libgbm1:amd64 (25.0.7-2) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../043-libwayland-client0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../044-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libegl-mesa0:amd64.
- Preparing to unpack .../045-libegl-mesa0_25.0.7-2_amd64.deb ...
- Unpacking libegl-mesa0:amd64 (25.0.7-2) ...
- Selecting previously unselected package libegl1:amd64.
- Preparing to unpack .../046-libegl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libegl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libxcb-glx0:amd64.
- Preparing to unpack .../047-libxcb-glx0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxxf86vm1:amd64.
- Preparing to unpack .../048-libxxf86vm1_1%3a1.1.4-1+b4_amd64.deb ...
- Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Selecting previously unselected package libvulkan1:amd64.
- Preparing to unpack .../049-libvulkan1_1.4.309.0-1_amd64.deb ...
- Unpacking libvulkan1:amd64 (1.4.309.0-1) ...
- Selecting previously unselected package libgl1-mesa-dri:amd64.
- Preparing to unpack .../050-libgl1-mesa-dri_25.0.7-2_amd64.deb ...
- Unpacking libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx-mesa0:amd64.
- Preparing to unpack .../051-libglx-mesa0_25.0.7-2_amd64.deb ...
- Unpacking libglx-mesa0:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx0:amd64.
- Preparing to unpack .../052-libglx0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl1:amd64.
- Preparing to unpack .../053-libgl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglx-dev:amd64.
- Preparing to unpack .../054-libglx-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl-dev:amd64.
- Preparing to unpack .../055-libgl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libegl-dev:amd64.
- Preparing to unpack .../056-libegl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libegl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libexpat1-dev:amd64.
- Preparing to unpack .../057-libexpat1-dev_2.7.1-2_amd64.deb ...
- Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../058-libpng16-16t64_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../059-libfreetype6_2.13.3+dfsg-1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Selecting previously unselected package libfontconfig1:amd64.
- Preparing to unpack .../060-libfontconfig1_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../061-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package libpng-dev:amd64.
- Preparing to unpack .../062-libpng-dev_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng-dev:amd64 (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libfreetype-dev:amd64.
- Preparing to unpack .../063-libfreetype-dev_2.13.3+dfsg-1_amd64.deb ...
- Unpacking libfreetype-dev:amd64 (2.13.3+dfsg-1) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../064-uuid-dev_2.41-5_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../065-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../066-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../067-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libfontconfig-dev:amd64.
- Preparing to unpack .../068-libfontconfig-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libfontconfig1-dev:amd64.
- Preparing to unpack .../069-libfontconfig1-dev_2.15.0-2.3_amd64.deb ...
- Unpacking libfontconfig1-dev:amd64 (2.15.0-2.3) ...
- Selecting previously unselected package libfontenc1:amd64.
- Preparing to unpack .../070-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...
- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...
- Selecting previously unselected package libfontenc-dev:amd64.
- Preparing to unpack .../071-libfontenc-dev_1%3a1.1.8-1+b2_amd64.deb ...
- Unpacking libfontenc-dev:amd64 (1:1.1.8-1+b2) ...
- Selecting previously unselected package libfs6:amd64.
- Preparing to unpack .../072-libfs6_2%3a1.0.10-1_amd64.deb ...
- Unpacking libfs6:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libfs-dev:amd64.
- Preparing to unpack .../073-libfs-dev_2%3a1.0.10-1_amd64.deb ...
- Unpacking libfs-dev:amd64 (2:1.0.10-1) ...
- Selecting previously unselected package libglvnd-core-dev:amd64.
- Preparing to unpack .../074-libglvnd-core-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd-core-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles1:amd64.
- Preparing to unpack .../075-libgles1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles2:amd64.
- Preparing to unpack .../076-libgles2_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles2:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgles-dev:amd64.
- Preparing to unpack .../077-libgles-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgles-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libopengl0:amd64.
- Preparing to unpack .../078-libopengl0_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libopengl-dev:amd64.
- Preparing to unpack .../079-libopengl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglvnd-dev:amd64.
- Preparing to unpack .../080-libglvnd-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl1-mesa-dev:amd64.
- Preparing to unpack .../081-libgl1-mesa-dev_25.0.7-2_amd64.deb ...
- Unpacking libgl1-mesa-dev:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglu1-mesa:amd64.
- Preparing to unpack .../082-libglu1-mesa_9.0.2-1.1+b3_amd64.deb ...
- Unpacking libglu1-mesa:amd64 (9.0.2-1.1+b3) ...
- Selecting previously unselected package libglu1-mesa-dev:amd64.
- Preparing to unpack .../083-libglu1-mesa-dev_9.0.2-1.1+b3_amd64.deb ...
- Unpacking libglu1-mesa-dev:amd64 (9.0.2-1.1+b3) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../084-x11-common_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking x11-common (1:7.7+24+deb13u1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../085-libice6_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../086-libice-dev_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libpixman-1-0:amd64.
- Preparing to unpack .../087-libpixman-1-0_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...
- Selecting previously unselected package libpixman-1-dev:amd64.
- Preparing to unpack .../088-libpixman-1-dev_0.44.0-3_amd64.deb ...
- Unpacking libpixman-1-dev:amd64 (0.44.0-3) ...
- Selecting previously unselected package libpng-tools.
- Preparing to unpack .../089-libpng-tools_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng-tools (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../090-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../091-libsm-dev_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxt6t64:amd64.
- Preparing to unpack .../092-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...
- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Selecting previously unselected package libxmu6:amd64.
- Preparing to unpack .../093-libxmu6_2%3a1.1.3-3+b4_amd64.deb ...
- Unpacking libxmu6:amd64 (2:1.1.3-3+b4) ...
- Selecting previously unselected package libxpm4:amd64.
- Preparing to unpack .../094-libxpm4_1%3a3.5.17-1+b3_amd64.deb ...
- Unpacking libxpm4:amd64 (1:3.5.17-1+b3) ...
- Selecting previously unselected package libxaw7:amd64.
- Preparing to unpack .../095-libxaw7_2%3a1.0.16-1_amd64.deb ...
- Unpacking libxaw7:amd64 (2:1.0.16-1) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../096-libxext-dev_2%3a1.3.4-1+b3_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Selecting previously unselected package libxt-dev:amd64.
- Preparing to unpack .../097-libxt-dev_1%3a1.2.1-1.2+b2_amd64.deb ...
- Unpacking libxt-dev:amd64 (1:1.2.1-1.2+b2) ...
- Selecting previously unselected package libxmu-headers.
- Preparing to unpack .../098-libxmu-headers_2%3a1.1.3-3_all.deb ...
- Unpacking libxmu-headers (2:1.1.3-3) ...
- Selecting previously unselected package libxmu-dev:amd64.
- Preparing to unpack .../099-libxmu-dev_2%3a1.1.3-3+b4_amd64.deb ...
- Unpacking libxmu-dev:amd64 (2:1.1.3-3+b4) ...
- Selecting previously unselected package libxpm-dev:amd64.
- Preparing to unpack .../100-libxpm-dev_1%3a3.5.17-1+b3_amd64.deb ...
- Unpacking libxpm-dev:amd64 (1:3.5.17-1+b3) ...
- Selecting previously unselected package libxaw7-dev:amd64.
- Preparing to unpack .../101-libxaw7-dev_2%3a1.0.16-1_amd64.deb ...
- Unpacking libxaw7-dev:amd64 (2:1.0.16-1) ...
- Selecting previously unselected package libxcomposite1:amd64.
- Preparing to unpack .../102-libxcomposite1_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite1:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../103-libxfixes3_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxfixes-dev:amd64.
- Preparing to unpack .../104-libxfixes-dev_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxcomposite-dev:amd64.
- Preparing to unpack .../105-libxcomposite-dev_1%3a0.4.6-1_amd64.deb ...
- Unpacking libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../106-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../107-libxcursor1_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxrender-dev:amd64.
- Preparing to unpack .../108-libxrender-dev_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libxcursor-dev:amd64.
- Preparing to unpack .../109-libxcursor-dev_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor-dev:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxcvt0:amd64.
- Preparing to unpack .../110-libxcvt0_0.1.3-1_amd64.deb ...
- Unpacking libxcvt0:amd64 (0.1.3-1) ...
- Selecting previously unselected package libxcvt-dev:amd64.
- Preparing to unpack .../111-libxcvt-dev_0.1.3-1_amd64.deb ...
- Unpacking libxcvt-dev:amd64 (0.1.3-1) ...
- Selecting previously unselected package libxdamage1:amd64.
- Preparing to unpack .../112-libxdamage1_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxdamage-dev:amd64.
- Preparing to unpack .../113-libxdamage-dev_1%3a1.1.6-1+b2_amd64.deb ...
- Unpacking libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Selecting previously unselected package libxfont2:amd64.
- Preparing to unpack .../114-libxfont2_1%3a2.0.6-1+b3_amd64.deb ...
- Unpacking libxfont2:amd64 (1:2.0.6-1+b3) ...
- Selecting previously unselected package libxfont-dev.
- Preparing to unpack .../115-libxfont-dev_1%3a2.0.6-1+b3_amd64.deb ...
- Unpacking libxfont-dev (1:2.0.6-1+b3) ...
- Selecting previously unselected package libxft2:amd64.
- Preparing to unpack .../116-libxft2_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft2:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libxft-dev:amd64.
- Preparing to unpack .../117-libxft-dev_2.3.6-1+b4_amd64.deb ...
- Unpacking libxft-dev:amd64 (2.3.6-1+b4) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../118-libxi6_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxi-dev:amd64.
- Preparing to unpack .../119-libxi-dev_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi-dev:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libxinerama1:amd64.
- Preparing to unpack .../120-libxinerama1_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxinerama-dev:amd64.
- Preparing to unpack .../121-libxinerama-dev_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxkbfile1:amd64.
- Preparing to unpack .../122-libxkbfile1_1%3a1.1.0-1+b4_amd64.deb ...
- Unpacking libxkbfile1:amd64 (1:1.1.0-1+b4) ...
- Selecting previously unselected package libxkbfile-dev:amd64.
- Preparing to unpack .../123-libxkbfile-dev_1%3a1.1.0-1+b4_amd64.deb ...
- Unpacking libxkbfile-dev:amd64 (1:1.1.0-1+b4) ...
- Selecting previously unselected package libxmuu-dev:amd64.
- Preparing to unpack .../124-libxmuu-dev_2%3a1.1.3-3+b4_amd64.deb ...
- Unpacking libxmuu-dev:amd64 (2:1.1.3-3+b4) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../125-libxrandr2_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libxrandr-dev:amd64.
- Preparing to unpack .../126-libxrandr-dev_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libxres1:amd64.
- Preparing to unpack .../127-libxres1_2%3a1.2.1-1+b2_amd64.deb ...
- Unpacking libxres1:amd64 (2:1.2.1-1+b2) ...
- Selecting previously unselected package libxres-dev:amd64.
- Preparing to unpack .../128-libxres-dev_2%3a1.2.1-1+b2_amd64.deb ...
- Unpacking libxres-dev:amd64 (2:1.2.1-1+b2) ...
- Selecting previously unselected package libxss1:amd64.
- Preparing to unpack .../129-libxss1_1%3a1.2.3-1+b3_amd64.deb ...
- Unpacking libxss1:amd64 (1:1.2.3-1+b3) ...
- Selecting previously unselected package libxss-dev:amd64.
- Preparing to unpack .../130-libxss-dev_1%3a1.2.3-1+b3_amd64.deb ...
- Unpacking libxss-dev:amd64 (1:1.2.3-1+b3) ...
- Selecting previously unselected package libxtst6:amd64.
- Preparing to unpack .../131-libxtst6_2%3a1.2.5-1_amd64.deb ...
- Unpacking libxtst6:amd64 (2:1.2.5-1) ...
- Selecting previously unselected package libxtst-dev:amd64.
- Preparing to unpack .../132-libxtst-dev_2%3a1.2.5-1_amd64.deb ...
- Unpacking libxtst-dev:amd64 (2:1.2.5-1) ...
- Selecting previously unselected package libxv1:amd64.
- Preparing to unpack .../133-libxv1_2%3a1.0.11-1.1+b3_amd64.deb ...
- Unpacking libxv1:amd64 (2:1.0.11-1.1+b3) ...
- Selecting previously unselected package libxv-dev:amd64.
- Preparing to unpack .../134-libxv-dev_2%3a1.0.11-1.1+b3_amd64.deb ...
- Unpacking libxv-dev:amd64 (2:1.0.11-1.1+b3) ...
- Selecting previously unselected package libxvmc1:amd64.
- Preparing to unpack .../135-libxvmc1_2%3a1.0.12-2+b3_amd64.deb ...
- Unpacking libxvmc1:amd64 (2:1.0.12-2+b3) ...
- Selecting previously unselected package libxvmc-dev:amd64.
- Preparing to unpack .../136-libxvmc-dev_2%3a1.0.12-2+b3_amd64.deb ...
- Unpacking libxvmc-dev:amd64 (2:1.0.12-2+b3) ...
- Selecting previously unselected package libxxf86dga1:amd64.
- Preparing to unpack .../137-libxxf86dga1_2%3a1.1.5-1+b3_amd64.deb ...
- Unpacking libxxf86dga1:amd64 (2:1.1.5-1+b3) ...
- Selecting previously unselected package libxxf86dga-dev:amd64.
- Preparing to unpack .../138-libxxf86dga-dev_2%3a1.1.5-1+b3_amd64.deb ...
- Unpacking libxxf86dga-dev:amd64 (2:1.1.5-1+b3) ...
- Selecting previously unselected package libxxf86vm-dev:amd64.
- Preparing to unpack .../139-libxxf86vm-dev_1%3a1.1.4-1+b4_amd64.deb ...
- Unpacking libxxf86vm-dev:amd64 (1:1.1.4-1+b4) ...
- Selecting previously unselected package mesa-common-dev:amd64.
- Preparing to unpack .../140-mesa-common-dev_25.0.7-2_amd64.deb ...
- Unpacking mesa-common-dev:amd64 (25.0.7-2) ...
- Selecting previously unselected package mesa-vulkan-drivers:amd64.
- Preparing to unpack .../141-mesa-vulkan-drivers_25.0.7-2_amd64.deb ...
- Unpacking mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../142-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package xserver-xorg-dev.
- Preparing to unpack .../143-xserver-xorg-dev_2%3a21.1.16-1.3+deb13u1_amd64.deb ...
- Unpacking xserver-xorg-dev (2:21.1.16-1.3+deb13u1) ...
- Selecting previously unselected package xorg-dev.
- Preparing to unpack .../144-xorg-dev_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking xorg-dev (1:7.7+24+deb13u1) ...
- Setting up libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Setting up libpixman-1-0:amd64 (0.44.0-3) ...
- Setting up bzip2-doc (1.0.8-6) ...
- Setting up libwayland-server0:amd64 (1.23.1-3) ...
- Setting up libx11-xcb1:amd64 (2:1.8.12-1) ...
- Setting up libpciaccess0:amd64 (0.17-3+b3) ...
- Setting up libxmu-headers (2:1.1.3-3) ...
- Setting up libpixman-1-dev:amd64 (0.44.0-3) ...
- Setting up libxdamage1:amd64 (1:1.1.6-1+b2) ...
- Setting up libpciaccess-dev:amd64 (0.17-3+b3) ...
- Setting up libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Setting up libxpm4:amd64 (1:3.5.17-1+b3) ...
- Setting up libglvnd-core-dev:amd64 (1.7.0-1+b2) ...
- Setting up libxi6:amd64 (2:1.8.2-1) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libglvnd0:amd64 (1.7.0-1+b2) ...
- Setting up libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Setting up libuv1t64:amd64 (1.50.0-2) ...
- Setting up x11-common (1:7.7+24+deb13u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libsensors-config (1:3.6.2-2) ...
- Setting up libxxf86dga1:amd64 (2:1.1.5-1+b3) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up libxvmc1:amd64 (2:1.0.12-2+b3) ...
- Setting up libopengl0:amd64 (1.7.0-1+b2) ...
- Setting up libelf1t64:amd64 (0.192-4) ...
- Setting up libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Setting up libxcb-present0:amd64 (1.17.0-2+b1) ...
- Setting up libasound2-data (1.2.14-1) ...
- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgles2:amd64 (1.7.0-1+b2) ...
- Setting up libasound2t64:amd64 (1.2.14-1) ...
- Setting up libexpat1-dev:amd64 (2.7.1-2) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- Setting up uuid-dev:amd64 (2.41-5) ...
- Setting up libgles1:amd64 (1.7.0-1+b2) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Setting up libxpm-dev:amd64 (1:3.5.17-1+b3) ...
- Setting up libxv1:amd64 (2:1.0.11-1.1+b3) ...
- Setting up fonts-dejavu-mono (2.37-8) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Setting up libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Setting up fonts-dejavu-core (2.37-8) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libsensors5:amd64 (1:3.6.2-2) ...
- Setting up libvulkan1:amd64 (1.4.309.0-1) ...
- Setting up libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libfs6:amd64 (2:1.0.10-1) ...
- Setting up alsa-topology-conf (1.2.5.1-3) ...
- Setting up libxshmfence1:amd64 (1.3.3-1) ...
- Setting up libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Setting up libxcvt0:amd64 (0.1.3-1) ...
- Setting up cmake-data (3.31.6-2) ...
- Setting up librhash1:amd64 (1.4.5-1) ...
- Setting up libglu1-mesa:amd64 (9.0.2-1.1+b3) ...
- Setting up libxss1:amd64 (1:1.2.3-1+b3) ...
- Setting up libxkbfile1:amd64 (1:1.1.0-1+b4) ...
- Setting up libopengl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libasound2-dev:amd64 (1.2.14-1) ...
- Setting up libxmuu-dev:amd64 (2:1.1.3-3+b4) ...
- Setting up libdrm-common (2.4.124-2) ...
- Setting up libxcomposite1:amd64 (1:0.4.6-1) ...
- Setting up libxrender-dev:amd64 (1:0.9.12-1) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libxres1:amd64 (2:1.2.1-1+b2) ...
- Setting up libbz2-dev:amd64 (1.0.8-6) ...
- Setting up libxkbfile-dev:amd64 (1:1.1.0-1+b4) ...
- Setting up libwayland-client0:amd64 (1.23.1-3) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up libice6:amd64 (2:1.1.1-1) ...
- Setting up libxcvt-dev:amd64 (0.1.3-1) ...
- Setting up libice-dev:amd64 (2:1.1.1-1) ...
- Setting up libpng-tools (1.6.48-1+deb13u3) ...
- Setting up alsa-ucm-conf (1.2.14-1) ...
- Setting up fontconfig-config (2.15.0-2.3) ...
- Setting up libxtst6:amd64 (2:1.2.5-1) ...
- Setting up libxxf86dga-dev:amd64 (2:1.1.5-1+b3) ...
- Setting up libxxf86vm-dev:amd64 (1:1.1.4-1+b4) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up libpng-dev:amd64 (1.6.48-1+deb13u3) ...
- Setting up libfontenc-dev:amd64 (1:1.1.8-1+b2) ...
- Setting up libxss-dev:amd64 (1:1.2.3-1+b3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Setting up libxv-dev:amd64 (2:1.0.11-1.1+b3) ...
- Setting up libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Setting up libfs-dev:amd64 (2:1.0.10-1) ...
- Setting up libdrm2:amd64 (2.4.124-2) ...
- Setting up libxres-dev:amd64 (2:1.2.1-1+b2) ...
- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
- Setting up libxi-dev:amd64 (2:1.8.2-1) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libarchive13t64:amd64 (3.7.4-4) ...
- Setting up libxfont2:amd64 (1:2.0.6-1+b3) ...
- Setting up libxvmc-dev:amd64 (2:1.0.12-2+b3) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Setting up libxtst-dev:amd64 (2:1.2.5-1) ...
- Setting up libxdamage-dev:amd64 (1:1.1.6-1+b2) ...
- Setting up mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Setting up libxft2:amd64 (2.3.6-1+b4) ...
- Setting up libdrm-nouveau2:amd64 (2.4.124-2) ...
- Setting up libsm-dev:amd64 (2:1.2.6-1) ...
- Setting up libdrm-radeon1:amd64 (2.4.124-2) ...
- Setting up libxcomposite-dev:amd64 (1:0.4.6-1) ...
- Setting up libxcursor-dev:amd64 (1:1.2.3-1) ...
- Setting up libdrm-intel1:amd64 (2.4.124-2) ...
- Setting up libfreetype-dev:amd64 (2.13.3+dfsg-1) ...
- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Setting up cmake (3.31.6-2) ...
- Setting up mesa-libgallium:amd64 (25.0.7-2) ...
- Setting up libdrm-dev:amd64 (2.4.124-2) ...
- Setting up libxmu6:amd64 (2:1.1.3-3+b4) ...
- Setting up libgbm1:amd64 (25.0.7-2) ...
- Setting up libfontconfig-dev:amd64 (2.15.0-2.3) ...
- Setting up libxfont-dev (1:2.0.6-1+b3) ...
- Setting up libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Setting up libxaw7:amd64 (2:1.0.16-1) ...
- Setting up libegl-mesa0:amd64 (25.0.7-2) ...
- Setting up libxt-dev:amd64 (1:1.2.1-1.2+b2) ...
- Setting up libegl1:amd64 (1.7.0-1+b2) ...
- Setting up libxft-dev:amd64 (2.3.6-1+b4) ...
- Setting up libfontconfig1-dev:amd64 (2.15.0-2.3) ...
- Setting up libglx-mesa0:amd64 (25.0.7-2) ...
- Setting up libglx0:amd64 (1.7.0-1+b2) ...
- Setting up libxmu-dev:amd64 (2:1.1.3-3+b4) ...
- Setting up libgl1:amd64 (1.7.0-1+b2) ...
- Setting up libxaw7-dev:amd64 (2:1.0.16-1) ...
- Setting up libglx-dev:amd64 (1.7.0-1+b2) ...
- Setting up libgl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libegl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libglu1-mesa-dev:amd64 (9.0.2-1.1+b3) ...
- Setting up mesa-common-dev:amd64 (25.0.7-2) ...
- Setting up libgles-dev:amd64 (1.7.0-1+b2) ...
- Setting up xserver-xorg-dev (2:21.1.16-1.3+deb13u1) ...
- Setting up libglvnd-dev:amd64 (1.7.0-1+b2) ...
- Setting up xorg-dev (1:7.7+24+deb13u1) ...
- Setting up libgl1-mesa-dev:amd64 (25.0.7-2) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved conf-cmake.1 (cached)
-> installed conf-libgl.1
-> installed conf-cmake.1
-> installed conf-pkg-config.4
-> installed conf-libglu.1
-> retrieved containers.3.17 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.24.0 (cached)
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> retrieved dune-configurator.3.22.0~alpha0 (cached)
-> retrieved either.1.0.0 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_cstubs.0.7.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> installed either.1.0.0
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0 (cached)
-> retrieved raylib.0.1.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed result.1.5
-> installed stdlib-shims.0.3.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed integers.0.7.0
-> installed dune-configurator.3.22.0~alpha0
-> installed num.1.6
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> installed containers.3.17
-> installed ctypes.0.24.0
-> installed ppxlib.0.35.0
-> installed ppx_cstubs.0.7.0
[ERROR] The compilation of raylib.0.1.0 failed at "dune build -p raylib -j 71 @install".
#=== ERROR while compiling raylib.0.1.0 =======================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path ~/.opam/4.14/.opam-switch/build/raylib.0.1.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p raylib -j 71 @install
# exit-code 1
# env-file ~/.opam/log/raylib-7-89adda.env
# output-file ~/.opam/log/raylib-7-89adda.out
### output ###
# (cd _build/default/src/c/vendor/build && /usr/bin/cmake -DBUILD_SHARED_LIBS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_GAMES=OFF -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release -Wno-dev ..)
# -- The C compiler identification is GNU 14.2.0
# -- The CXX compiler identification is GNU 14.2.0
# -- Detecting C compiler ABI info
# -- Detecting C compiler ABI info - done
# -- Check for working C compiler: /usr/bin/cc - skipped
# -- Detecting C compile features
# -- Detecting C compile features - done
# -- Detecting CXX compiler ABI info
# -- Detecting CXX compiler ABI info - done
# -- Check for working CXX compiler: /usr/bin/c++ - skipped
# -- Detecting CXX compile features
# -- Detecting CXX compile features - done
# -- Performing Test COMPILER_HAS_THOSE_TOGGLES
# -- Performing Test COMPILER_HAS_THOSE_TOGGLES - Success
# -- Testing if -Werror=pointer-arith can be used -- compiles
# -- Testing if -Werror=implicit-function-declaration can be used -- compiles
# -- Testing if -fno-strict-aliasing can be used -- compiles
# -- Testing if file system supports symlinks
# -- Testing if file system supports symlinks -- supported
# -- Using raylib's GLFW
# -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
# -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
# -- Found Threads: TRUE
# -- Using X11 for window creation
# -- Found X11: /usr/include
# -- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so
# -- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so - found
# -- Looking for gethostbyname
# -- Looking for gethostbyname - found
# -- Looking for connect
# -- Looking for connect - found
# -- Looking for remove
# -- Looking for remove - found
# -- Looking for shmat
# -- Looking for shmat - found
# -- Looking for IceConnectionNumber in ICE
# -- Looking for IceConnectionNumber in ICE - found
# -- Audio Backend: miniaudio
# -- Building raylib static library
# -- Generated build type: Release
# -- Compiling with the flags:
# -- PLATFORM=PLATFORM_DESKTOP
# -- GRAPHICS=GRAPHICS_API_OPENGL_33
# -- Configuring done (2.5s)
# -- Generating done (0.0s)
# -- Build files have been written to: /home/opam/.opam/4.14/.opam-switch/build/raylib.0.1.0/_build/default/src/c/vendor/build
# File "src/c/dune", lines 28-56, characters 0-778:
# 28 | (rule
# 29 | (deps
# 30 | (source_tree vendor))
# ....
# 54 | (run cmake --build build -- -j 8))
# 55 | (copy vendor/build/src/libraylib.a libraylib.a)
# 56 | (copy vendor/build/src/libraylib.so.3.0.0 dllraylib.so)))))
# (cd _build/default/src/c/vendor && /usr/bin/cmake --build build -- -j 8)
# [ 4%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/input.c.o
# [ 8%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/x11_init.c.o
# [ 12%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/context.c.o
# [ 24%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/window.c.o
# [ 28%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/monitor.c.o
# [ 28%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/init.c.o
# [ 28%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/vulkan.c.o
# [ 32%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/x11_monitor.c.o
# [ 36%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/x11_window.c.o
# [ 40%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/xkb_unicode.c.o
# [ 44%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/posix_time.c.o
# [ 48%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/posix_thread.c.o
# [ 52%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/glx_context.c.o
# [ 56%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/egl_context.c.o
# [ 60%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/osmesa_context.c.o
# [ 64%] Building C object src/external/glfw/src/CMakeFiles/glfw_objlib.dir/linux_joystick.c.o
# [ 64%] Built target glfw_objlib
# [ 68%] Linking C static library libglfw3.a
# [ 68%] Built target glfw
# [ 72%] Building C object src/CMakeFiles/raylib_static.dir/utils.c.o
# [ 76%] Building C object src/CMakeFiles/raylib_static.dir/models.c.o
# [ 84%] Building C object src/CMakeFiles/raylib_static.dir/shapes.c.o
# [ 84%] Building C object src/CMakeFiles/raylib_static.dir/core.c.o
# [ 88%] Building C object src/CMakeFiles/raylib_static.dir/raudio.c.o
# [ 96%] Building C object src/CMakeFiles/raylib_static.dir/textures.c.o
# [ 92%] Building C object src/CMakeFiles/raylib_static.dir/text.c.o
# /home/opam/.opam/4.14/.opam-switch/build/raylib.0.1.0/_build/default/src/c/vendor/src/raudio.c: In function 'LoadMP3':
# /home/opam/.opam/4.14/.opam-switch/build/raylib.0.1.0/_build/default/src/c/vendor/src/raudio.c:2101:65: error: passing argument 3 of 'drmp3_open_file_and_read_f32' from incompatible pointer type [-Wincompatible-pointer-types]
# 2101 | wave.data = drmp3_open_file_and_read_f32(fileName, &config, &totalFrameCount);
# | ^~~~~~~~~~~~~~~~
# | |
# | long long unsigned int *
# In file included from /home/opam/.opam/4.14/.opam-switch/build/raylib.0.1.0/_build/default/src/c/vendor/src/raudio.c:216:
# /home/opam/.opam/4.14/.opam-switch/build/raylib.0.1.0/_build/default/src/c/vendor/src/external/dr_mp3.h:3767:96: note: expected 'drmp3_uint64 *' {aka 'long unsigned int *'} but argument is of type 'long long unsigned int *'
# 3767 | float* drmp3_open_file_and_read_f32(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
# | ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
# gmake[2]: *** [src/CMakeFiles/raylib_static.dir/build.make:107: src/CMakeFiles/raylib_static.dir/raudio.c.o] Error 1
# gmake[2]: *** Waiting for unfinished jobs....
# gmake[1]: *** [CMakeFiles/Makefile2:151: src/CMakeFiles/raylib_static.dir/all] Error 2
# gmake: *** [Makefile:166: all] Error 2
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build raylib 0.1.0
+-
+- The following changes have been performed
| - install bigarray-compat 1.1.0
| - install conf-cmake 1
| - install conf-libgl 1
| - install conf-libglu 1
| - install conf-pkg-config 4
| - install containers 3.17
| - install cppo 1.8.0
| - install csexp 1.5.2
| - install ctypes 0.24.0
| - install dune-configurator 3.22.0~alpha0
| - install either 1.0.0
| - install integers 0.7.0
| - install num 1.6
| - install ocaml-compiler-libs v0.12.4
| - install ocamlfind 1.9.8
| - install ppx_cstubs 0.7.0
| - install ppx_derivers 1.2.1
| - install ppxlib 0.35.0
| - install re 1.14.0
| - install result 1.5
| - install sexplib0 v0.17.0
| - install stdlib-shims 0.3.0
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260303041432.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall raylib.0.1.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" != 'raylib.0.1.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-03-03 04:16.55: Job failed: Failed: Build failed
2026-03-03 04:16.55: Log analysis:
2026-03-03 04:16.55: >>>
[ERROR] The compilation of raylib.0.1.0 failed at "dune build -p raylib -j 71 @install".
(score = 20)
2026-03-03 04:16.55: >>>
# /home/opam/.opam/4.14/.opam-switch/build/raylib.0.1.0/_build/default/src/c/vendor/src/raudio.c:2101:65: error: passing argument 3 of 'drmp3_open_file_and_read_f32' from incompatible pointer type [-Wincompatible-pointer-types]
(score = 30)
2026-03-03 04:16.55: passing argument 3 of 'drmp3_open_file_and_read_f32' from incompatible pointer type [-Wincompatible-pointer-types]