Build:
  1. 0
2025-12-09 07:35.25: New job: test raylib.1.3.1 with dune-configurator.3.21.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29042/head (a9b8a0d0db631d21208bd4ab7355e867d7ecf88d)
                              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/29042/head" && git reset --hard a9b8a0d0
git fetch origin master
git merge --no-edit 2e91c1385fa6ee7c38e1108967fe3bf9ccba52f6
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
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-configurator.3.21.0~alpha2 3.21.0~alpha2
RUN opam reinstall dune-configurator.3.21.0~alpha2; \
    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-configurator.3.21.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall raylib.1.3.1; \
    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.1.3.1' && 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.1.3.1) || true
RUN opam reinstall --with-test --verbose raylib.1.3.1; \
    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.1.3.1' && 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 .

2025-12-09 07:35.25: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04-dune-configurator.3.21.0~alpha2-raylib.1.3.1-a9b8a0d0db631d21208bd4ab7355e867d7ecf88d"
2025-12-09 07:35.25: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
 (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-configurator.3.21.0~alpha2 3.21.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune-configurator.3.21.0~alpha2;\
             \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-configurator.3.21.0~alpha2' && 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.1.3.1;\
             \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.1.3.1' && 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.1.3.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose raylib.1.3.1;\
             \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.1.3.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-09 07:35.25: Waiting for resource in pool OCluster
2025-12-09 15:16.38: Waiting for worker…
2025-12-09 15:19.37: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 2e91c1385f Merge pull request #29043 from hannesm/mirage-kv
Merge made by the 'ort' strategy.
 .../chrome-trace/chrome-trace.3.21.0~alpha2/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.21.0~alpha2/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.21.0~alpha2/opam             | 47 ++++++++++++++
 .../dune-configurator.3.21.0~alpha2/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.0~alpha2/opam    | 44 +++++++++++++
 .../dune-private-libs.3.21.0~alpha2/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha2/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.0~alpha2/opam      | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.0~alpha2/opam    | 39 +++++++++++
 packages/dune/dune.3.21.0~alpha2/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.0~alpha2/opam                | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.0~alpha2/opam            | 40 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha2/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.21.0~alpha2/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.21.0~alpha2/opam          | 48 ++++++++++++++
 .../top-closure/top-closure.3.21.0~alpha2/opam     | 39 +++++++++++
 packages/xdg/xdg.3.21.0~alpha2/opam                | 41 ++++++++++++
 17 files changed, 787 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.21.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.21.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.21.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.21.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.21.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.21.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.21.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.21.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
2025-12-09 15:19.40 ---> using "5f87df8c1f6f0886e7311dfd3df40b8bbb961cc34c83c0d033c6dd248c84bc7d" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-09 15:19.40 ---> using "f1296791f2d76481058db697105a569091a6b6345f05c94bbc5a650f1a364f9a" 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
2025-12-09 15:19.40 ---> using "0cac9a31b4750e6a46df8ed8d2f68352091a988199fdf62c52779549510cd6bf" 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
2025-12-09 15:19.40 ---> using "1deb91dc3badca969976ed6f3bc5fe7c443d73a2cfa957be662fd6f93e30aa7b" 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/"))
2025-12-09 15:19.40 ---> using "1a02438c8753bf7228a9eb625e65b7af26778a022b9ce0b16be5ef4f294c58cd" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-09 15:19.40 ---> using "5eb86997857236bc32f8e9906c0a6a1698d33db864496f8e374d3bf25b889084" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-09 15:19.40 ---> using "461b809ba40b3a1f0f49bbba2df1162936b2a997b1e1fab87951df5ee9c3828d" 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 [81.7 kB]
- Fetched 172 kB in 0s (2038 kB/s)
- Reading package lists...
2025-12-09 15:19.40 ---> using "d953188c1144583f4d6c9508d29746bc7aa496329e24e2133499412480d3b360" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.21.0~alpha2 3.21.0~alpha2"))
dune-configurator is now pinned to version 3.21.0~alpha2
2025-12-09 15:19.40 ---> using "f45886c6ac8e59201747e60854040b21b9efe54140a7fa9d122291c5a4c92615" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune-configurator.3.21.0~alpha2;\
                        \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-configurator.3.21.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune-configurator.3.21.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
  - install csexp             1.5.2                  [required by dune-configurator]
  - install dune              3.21.0~alpha2          [required by dune-configurator]
  - install dune-configurator 3.21.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.0~alpha2, dune-configurator.3.21.0~alpha2  (cached)
-> installed dune.3.21.0~alpha2
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 15:19.40 ---> using "a6180f788b49dedbf213ae73d9759448bdbce8414aac4ef4360e7ac1b6adfecc" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall raylib.1.3.1;\
                        \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.1.3.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
raylib.1.3.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 11 packages
  - install conf-libxcursor  1      [required by raylib]
  - install conf-libxi       1      [required by raylib]
  - install conf-libxinerama 1      [required by raylib]
  - install conf-libxrandr   1      [required by raylib]
  - install conf-mesa        1      [required by raylib]
  - install conf-pkg-config  4      [required by conf-libxrandr, conf-libxi, conf-libxcursor, etc.]
  - install ctypes           0.24.0 [required by raylib]
  - install integers         0.7.0  [required by raylib]
  - install patch            2.0.0  [required by raylib]
  - install raylib           1.3.1
  - install stdlib-shims     0.3.0  [required by integers]

The following system packages will first need to be installed:
    libgl1-mesa-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev pkg-config

<><> 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" "libgl1-mesa-dev" "libxcursor-dev" "libxi-dev" "libxinerama-dev" "libxrandr-dev" "pkg-config"
- Selecting previously unselected package libdrm-common.
- (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 ... 20653 files and directories currently installed.)
- Preparing to unpack .../00-libdrm-common_2.4.124-2_all.deb ...
- Unpacking libdrm-common (2.4.124-2) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../01-libdrm2_2.4.124-2_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../02-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 .../03-libpciaccess0_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../04-libdrm-intel1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libglvnd0:amd64.
- Preparing to unpack .../05-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 .../06-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 .../07-libelf1t64_0.192-4_amd64.deb ...
- Unpacking libelf1t64:amd64 (0.192-4) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../08-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 libz3-4:amd64.
- Preparing to unpack .../09-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 .../10-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 .../11-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 .../12-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 .../13-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 .../14-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 .../15-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 .../16-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 .../17-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 .../18-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 .../19-libxshmfence1_1.3.3-1_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3.3-1) ...
- Selecting previously unselected package mesa-libgallium:amd64.
- Preparing to unpack .../20-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 .../21-libgbm1_25.0.7-2_amd64.deb ...
- Unpacking libgbm1:amd64 (25.0.7-2) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../22-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 .../23-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 .../24-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 .../25-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 .../26-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 .../27-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 .../28-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 .../29-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 .../30-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 .../31-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 .../32-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 .../33-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 .../34-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 .../35-libegl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libegl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglvnd-core-dev:amd64.
- Preparing to unpack .../36-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 .../37-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 .../38-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 .../39-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 .../40-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 .../41-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 .../42-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 .../43-libgl1-mesa-dev_25.0.7-2_amd64.deb ...
- Unpacking libgl1-mesa-dev:amd64 (25.0.7-2) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../44-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../45-libxfixes3_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../46-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 .../47-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 .../48-libxrender-dev_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender-dev:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libxfixes-dev:amd64.
- Preparing to unpack .../49-libxfixes-dev_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxcursor-dev:amd64.
- Preparing to unpack .../50-libxcursor-dev_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor-dev:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../51-libxext-dev_2%3a1.3.4-1+b3_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../52-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 .../53-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 .../54-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 .../55-libxinerama-dev_2%3a1.1.4-3+b4_amd64.deb ...
- Unpacking libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../56-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 .../57-libxrandr-dev_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package mesa-vulkan-drivers:amd64.
- Preparing to unpack .../58-mesa-vulkan-drivers_25.0.7-2_amd64.deb ...
- Unpacking mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../59-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../60-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../61-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- 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 libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- 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 libsensors-config (1:3.6.2-2) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- 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 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 libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Setting up libgles1:amd64 (1.7.0-1+b2) ...
- Setting up libxinerama1:amd64 (2:1.1.4-3+b4) ...
- Setting up libxrandr2:amd64 (2:1.5.4-1+b3) ...
- 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 libxshmfence1:amd64 (1.3.3-1) ...
- Setting up libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Setting up libopengl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libdrm-common (2.4.124-2) ...
- 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 libwayland-client0:amd64 (1.23.1-3) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libxfixes-dev:amd64 (1:6.0.0-2+b4) ...
- Setting up libxrandr-dev:amd64 (2:1.5.4-1+b3) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libxinerama-dev:amd64 (2:1.1.4-3+b4) ...
- Setting up libdrm2:amd64 (2.4.124-2) ...
- Setting up libxi-dev:amd64 (2:1.8.2-1) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Setting up mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Setting up libxcursor-dev:amd64 (1:1.2.3-1) ...
- Setting up libdrm-intel1:amd64 (2.4.124-2) ...
- Setting up mesa-libgallium:amd64 (25.0.7-2) ...
- Setting up libgbm1:amd64 (25.0.7-2) ...
- Setting up libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Setting up libegl-mesa0:amd64 (25.0.7-2) ...
- Setting up libegl1:amd64 (1.7.0-1+b2) ...
- Setting up libglx-mesa0:amd64 (25.0.7-2) ...
- Setting up libglx0:amd64 (1.7.0-1+b2) ...
- Setting up libgl1:amd64 (1.7.0-1+b2) ...
- 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 libgles-dev:amd64 (1.7.0-1+b2) ...
- Setting up libglvnd-dev:amd64 (1.7.0-1+b2) ...
- Setting up libgl1-mesa-dev:amd64 (25.0.7-2) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ctypes.0.24.0  (cached)
-> installed conf-pkg-config.4
-> retrieved integers.0.7.0  (cached)
-> retrieved patch.2.0.0  (cached)
-> installed conf-libxcursor.1
-> installed conf-libxi.1
-> installed conf-libxinerama.1
-> installed conf-libxrandr.1
-> installed conf-mesa.1
-> installed patch.2.0.0
-> retrieved raylib.1.3.1  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed ctypes.0.24.0
-> installed raylib.1.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 15:20.31 ---> saved as "5c207dc7bcb349f77aa5c775386a5f952e55c9f3c42f46fec886f3bf4c4ca7fd"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved raylib.1.3.1  (https://opam.ocaml.org/cache)
-> removed   raylib.1.3.1
-> installed raylib.1.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 15:20.49 ---> saved as "3f8b8c81fa34c8de9e69139d686d816889233e01ee94fef4cab5986b88afe14c"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [raylib.1.3.1: extract]
-> retrieved raylib.1.3.1  (cached)
Processing  2/4: [raylib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "raylib" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/raylib.1.3.1)
- (cd _build/default/src/c && ./apply_patch.exe enable_jpg.patch)
- vendor/raylib/src/config.h
- patching vendor/raylib/src/config.h
- (cd _build/default/src/c && /usr/bin/make -C vendor/raylib/src RAYLIB_LIBTYPE=STATIC -j 8)
- make: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/raylib.1.3.1/_build/default/src/c/vendor/raylib/src'
- gcc -c rcore.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c rshapes.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c rtextures.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c rtext.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c utils.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc  -c rglfw.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c rmodels.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c raudio.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- ar rcs ../src/libraylib.a rcore.o rshapes.o rtextures.o rtext.o utils.o rglfw.o rmodels.o raudio.o
- raylib static library generated (libraylib.a) in ../src!
- make: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/raylib.1.3.1/_build/default/src/c/vendor/raylib/src'
- In file included from rglfw.c:87:
- external/glfw/src/posix_poll.c:29:9: warning: "_GNU_SOURCE" redefined
-    29 | #define _GNU_SOURCE
-       |         ^~~~~~~~~~~
- <command-line>: note: this is the location of the previous definition
- In file included from rtextures.c:216:
- external/stb_image_resize2.h:2866:14: warning: 'stbir__support_zero' defined but not used [-Wunused-function]
-  2866 | static float stbir__support_zero(float s, void * user_data)
-       |              ^~~~~~~~~~~~~~~~~~~
- external/stb_image_resize2.h:2503:13: warning: 'stbir_simd_memcpy' defined but not used [-Wunused-function]
-  2503 | static void stbir_simd_memcpy( void * dest, void const * src, size_t bytes )
-       |             ^~~~~~~~~~~~~~~~~
- In file included from rmodels.c:43:
- external/par_shapes.h: In function 'par_shapes_create_disk':
- raylib.h:122:33: warning: argument 1 range [18446744069414584320, 18446744073709551610] exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
-   122 |     #define RL_MALLOC(sz)       malloc(sz)
-       |                                 ^~~~~~~~~~
- rmodels.c:99:35: note: in expansion of macro 'RL_MALLOC'
-    99 |     #define PAR_MALLOC(T, N) ((T*)RL_MALLOC(N*sizeof(T)))
-       |                                   ^~~~~~~~~
- external/par_shapes.h:741:23: note: in expansion of macro 'PAR_MALLOC'
-   741 |     mesh->triangles = PAR_MALLOC(PAR_SHAPES_T, 3 * mesh->ntriangles);
-       |                       ^~~~~~~~~~
- In file included from rmodels.c:57:
- /usr/include/stdlib.h:672:14: note: in a call to allocation function 'malloc' declared here
-   672 | extern void *malloc (size_t __size) __THROW __attribute_malloc__
-       |              ^~~~~~
- In file included from raudio.c:238:
- external/qoa.h: In function 'qoa_encode_frame':
- external/qoa.h:466:36: warning: 'best_slice' may be used uninitialized [-Wmaybe-uninitialized]
-   466 |                         best_slice <<= (QOA_SLICE_LEN - slice_len) * 3;
-       |                         ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- external/qoa.h:409:38: note: 'best_slice' was declared here
-   409 |                         qoa_uint64_t best_slice;
-       |                                      ^~~~~~~~~~
- external/qoa.h:455:45: warning: 'best_scalefactor' may be used uninitialized [-Wmaybe-uninitialized]
-   455 |                         prev_scalefactor[c] = best_scalefactor;
-       |                         ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
- external/qoa.h:411:29: note: 'best_scalefactor' was declared here
-   411 |                         int best_scalefactor;
-       |                             ^~~~~~~~~~~~~~~~
- (cd _build/default/src/c && /usr/bin/make -C vendor/raylib/src clean)
- make: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/raylib.1.3.1/_build/default/src/c/vendor/raylib/src'
- rm -fv *.o ../src/libraylib.a ../src/libraylib.bc ../src/libraylib.so* raygui.c
- removed 'raudio.o'
- removed 'rcore.o'
- removed 'rglfw.o'
- removed 'rmodels.o'
- removed 'rshapes.o'
- removed 'rtext.o'
- removed 'rtextures.o'
- removed 'utils.o'
- removed '../src/libraylib.a'
- removed all generated files!
- make: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/raylib.1.3.1/_build/default/src/c/vendor/raylib/src'
- (cd _build/default/src/c && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/ctypes -I /home/opam/.opam/5.4/lib/ctypes/stubs -I /home/opam/.opam/5.4/lib/integers -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/stdlib-shims -I functions -I types -I vendor/raylib/src -o c_generated_functions.o -c c_generated_functions.c)
- c_generated_functions.c: In function 'raylib_stub_46_GetClipboardText':
- c_generated_functions.c:259:17: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   259 |    char* x175 = GetClipboardText();
-       |                 ^~~~~~~~~~~~~~~~
- c_generated_functions.c: In function 'raylib_stub_111_UnloadFileData':
- c_generated_functions.c:693:19: warning: passing argument 1 of 'UnloadFileData' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   693 |    UnloadFileData(x523);
-       |                   ^~~~
- In file included from c_generated_functions.c:1:
- vendor/raylib/src/raylib.h:1099:42: note: expected 'unsigned char *' but argument is of type 'const char *'
-  1099 | RLAPI void UnloadFileData(unsigned char *data);                   // Unload file data allocated by LoadFileData()
-       |                           ~~~~~~~~~~~~~~~^~~~
- c_generated_functions.c: In function 'raylib_stub_115_UnloadFileText':
- c_generated_functions.c:721:19: warning: passing argument 1 of 'UnloadFileText' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   721 |    UnloadFileText(x547);
-       |                   ^~~~
- vendor/raylib/src/raylib.h:1103:33: note: expected 'char *' but argument is of type 'const char *'
-  1103 | RLAPI void UnloadFileText(char *text);                            // Unload file text data allocated by LoadFileText()
-       |                           ~~~~~~^~~~
- c_generated_functions.c: In function 'raylib_stub_116_SaveFileText':
- c_generated_functions.c:728:36: warning: passing argument 2 of 'SaveFileText' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   728 |    _Bool x553 = SaveFileText(x551, x552);
-       |                                    ^~~~
- vendor/raylib/src/raylib.h:1104:53: note: expected 'char *' but argument is of type 'const char *'
-  1104 | RLAPI bool SaveFileText(const char *fileName, char *text);        // Save text data to file (write), string must be '\0' terminated, returns true on success
-       |                                               ~~~~~~^~~~
- c_generated_functions.c: In function 'raylib_stub_393_TextCopy':
- c_generated_functions.c:3552:25: warning: passing argument 1 of 'TextCopy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-  3552 |    int x3584 = TextCopy(x3582, x3583);
-       |                         ^~~~~
- vendor/raylib/src/raylib.h:1463:26: note: expected 'char *' but argument is of type 'const char *'
-  1463 | RLAPI int TextCopy(char *dst, const char *src);                                             // Copy one string to another, returns bytes copied
-       |                    ~~~~~~^~~
- c_generated_functions.c: In function 'raylib_stub_397_TextReplace':
- c_generated_functions.c:3581:36: warning: passing argument 1 of 'TextReplace' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-  3581 |    char const* x3610 = TextReplace(x3607, x3608, x3609);
-       |                                    ^~~~~
- vendor/raylib/src/raylib.h:1468:31: note: expected 'char *' but argument is of type 'const char *'
-  1468 | RLAPI char *TextReplace(char *text, const char *replace, const char *by);                   // Replace text string (WARNING: memory must be freed!)
-       |                         ~~~~~~^~~~
- c_generated_functions.c: In function 'raylib_stub_399_TextAppend':
- c_generated_functions.c:3597:15: warning: passing argument 1 of 'TextAppend' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-  3597 |    TextAppend(x3623, x3624, x3625);
-       |               ^~~~~
- vendor/raylib/src/raylib.h:1472:29: note: expected 'char *' but argument is of type 'const char *'
-  1472 | RLAPI void TextAppend(char *text, const char *append, int *position);                       // Append text at specific position and move cursor!
-       |                       ~~~~~~^~~~
- (cd _build/default/src/c && /usr/bin/make -C vendor/raylib/src RAYLIB_LIBTYPE=SHARED -j 8)
- make: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/raylib.1.3.1/_build/default/src/c/vendor/raylib/src'
- gcc -c rcore.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -fPIC -DBUILD_LIBTYPE_SHARED -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c rshapes.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -fPIC -DBUILD_LIBTYPE_SHARED -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c rtextures.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -fPIC -DBUILD_LIBTYPE_SHARED -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c rtext.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -fPIC -DBUILD_LIBTYPE_SHARED -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c utils.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -fPIC -DBUILD_LIBTYPE_SHARED -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc  -c rglfw.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -fPIC -DBUILD_LIBTYPE_SHARED -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c rmodels.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -fPIC -DBUILD_LIBTYPE_SHARED -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -c raudio.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing  -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -fPIC -DBUILD_LIBTYPE_SHARED -I.  -Iexternal/glfw/include -Iexternal/glfw/deps/mingw
- gcc -shared -o ../src/libraylib.so.5.0.0 rcore.o rshapes.o rtextures.o rtext.o utils.o rglfw.o rmodels.o raudio.o  -L. -L../src -Wl,-soname,libraylib.so.500 -lGL -lc -lm -lpthread -ldl -lrt -lX11
- raylib shared library generated (libraylib.so.5.0.0) in ../src!
- cd ../src && ln -fsv libraylib.so.5.0.0 libraylib.so.500
- 'libraylib.so.500' -> 'libraylib.so.5.0.0'
- cd ../src && ln -fsv libraylib.so.500 libraylib.so
- 'libraylib.so' -> 'libraylib.so.500'
- make: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/raylib.1.3.1/_build/default/src/c/vendor/raylib/src'
- In file included from rglfw.c:87:
- external/glfw/src/posix_poll.c:29:9: warning: "_GNU_SOURCE" redefined
-    29 | #define _GNU_SOURCE
-       |         ^~~~~~~~~~~
- <command-line>: note: this is the location of the previous definition
- In file included from rtextures.c:216:
- external/stb_image_resize2.h:2866:14: warning: 'stbir__support_zero' defined but not used [-Wunused-function]
-  2866 | static float stbir__support_zero(float s, void * user_data)
-       |              ^~~~~~~~~~~~~~~~~~~
- external/stb_image_resize2.h:2503:13: warning: 'stbir_simd_memcpy' defined but not used [-Wunused-function]
-  2503 | static void stbir_simd_memcpy( void * dest, void const * src, size_t bytes )
-       |             ^~~~~~~~~~~~~~~~~
- In file included from rmodels.c:43:
- external/par_shapes.h: In function 'par_shapes_create_disk':
- raylib.h:122:33: warning: argument 1 range [18446744069414584320, 18446744073709551610] exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
-   122 |     #define RL_MALLOC(sz)       malloc(sz)
-       |                                 ^~~~~~~~~~
- rmodels.c:99:35: note: in expansion of macro 'RL_MALLOC'
-    99 |     #define PAR_MALLOC(T, N) ((T*)RL_MALLOC(N*sizeof(T)))
-       |                                   ^~~~~~~~~
- external/par_shapes.h:741:23: note: in expansion of macro 'PAR_MALLOC'
-   741 |     mesh->triangles = PAR_MALLOC(PAR_SHAPES_T, 3 * mesh->ntriangles);
-       |                       ^~~~~~~~~~
- In file included from rmodels.c:57:
- /usr/include/stdlib.h:672:14: note: in a call to allocation function 'malloc' declared here
-   672 | extern void *malloc (size_t __size) __THROW __attribute_malloc__
-       |              ^~~~~~
- In file included from raudio.c:238:
- external/qoa.h: In function 'qoa_encode_frame':
- external/qoa.h:466:36: warning: 'best_slice' may be used uninitialized [-Wmaybe-uninitialized]
-   466 |                         best_slice <<= (QOA_SLICE_LEN - slice_len) * 3;
-       |                         ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- external/qoa.h:409:38: note: 'best_slice' was declared here
-   409 |                         qoa_uint64_t best_slice;
-       |                                      ^~~~~~~~~~
- external/qoa.h:455:45: warning: 'best_scalefactor' may be used uninitialized [-Wmaybe-uninitialized]
-   455 |                         prev_scalefactor[c] = best_scalefactor;
-       |                         ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
- external/qoa.h:411:29: note: 'best_scalefactor' was declared here
-   411 |                         int best_scalefactor;
-       |                             ^~~~~~~~~~~~~~~~
-> compiled  raylib.1.3.1
-> removed   raylib.1.3.1
-> installed raylib.1.3.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-09 15:21.06 ---> saved as "9cc739ebaceb5842bd316edf3b2889b4e14914ea1d85d02fcc074f3bb7f54567"
Job succeeded
2025-12-09 15:21.12: Job succeeded