Build:
- 0
2025-12-30 12:34.49: New job: test raylib.1.6.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29008/head (450fcb54eb97683228045509526518426f9b6bde)
on archlinux-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/29008/head" && git reset --hard 450fcb54
git fetch origin master
git merge --no-edit c239a62d58deaede2e5dce17c2715a55397b73f2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:archlinux-ocaml-4.14@sha256:767bb0cef7f7af77a4af5353218da9fcecc02d6c6b0aed3d32f0fa3a984e1369
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 raylib.1.6.0 1.6.0
RUN opam reinstall raylib.1.6.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'raylib.1.6.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.1.6.0) || true
RUN opam reinstall --with-test --verbose raylib.1.6.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 "\"archlinux\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'raylib.1.6.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 .
2025-12-30 12:34.49: Using cache hint "ocaml/opam:archlinux-ocaml-4.14@sha256:767bb0cef7f7af77a4af5353218da9fcecc02d6c6b0aed3d32f0fa3a984e1369-raylib.1.6.0-450fcb54eb97683228045509526518426f9b6bde"
2025-12-30 12:34.49: Using OBuilder spec:
((from ocaml/opam:archlinux-ocaml-4.14@sha256:767bb0cef7f7af77a4af5353218da9fcecc02d6c6b0aed3d32f0fa3a984e1369)
(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 raylib.1.6.0 1.6.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall raylib.1.6.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 \"\\\"archlinux\\\"\"; 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.6.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.1.6.0) || true"))
(run (shell "opam reinstall --with-test --verbose raylib.1.6.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 \"\\\"archlinux\\\"\"; 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.6.0' && 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-30 12:34.49: Waiting for resource in pool OCluster
2025-12-30 12:34.51: Waiting for worker…
2025-12-30 12:39.35: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at c239a62d58 Merge pull request #29143 from filipeom/opam-publish-smtml.0.18.0
Merge made by the 'ort' strategy.
packages/raygui/raygui.1.6.0/opam | 43 +++++++++++++++++
.../raylib-callbacks/raylib-callbacks.1.6.0/opam | 39 +++++++++++++++
packages/raylib/raylib.1.6.0/opam | 55 ++++++++++++++++++++++
3 files changed, 137 insertions(+)
create mode 100644 packages/raygui/raygui.1.6.0/opam
create mode 100644 packages/raylib-callbacks/raylib-callbacks.1.6.0/opam
create mode 100644 packages/raylib/raylib.1.6.0/opam
(from ocaml/opam:archlinux-ocaml-4.14@sha256:767bb0cef7f7af77a4af5353218da9fcecc02d6c6b0aed3d32f0fa3a984e1369)
Unable to find image 'ocaml/opam:archlinux-ocaml-4.14@sha256:767bb0cef7f7af77a4af5353218da9fcecc02d6c6b0aed3d32f0fa3a984e1369' locally
docker.io/ocaml/opam@sha256:767bb0cef7f7af77a4af5353218da9fcecc02d6c6b0aed3d32f0fa3a984e1369: Pulling from ocaml/opam
20856ddc4ee5: Pulling fs layer
1fc1d7f7a8aa: Pulling fs layer
422c2b21852f: Pulling fs layer
f6a51478d59b: Pulling fs layer
33d08da7381b: Pulling fs layer
7ff2cef6516f: Pulling fs layer
cac5f36cdcf2: Pulling fs layer
f6a51478d59b: Waiting
f7367936a4ff: Pulling fs layer
7ff2cef6516f: Waiting
0f775f9b4040: Pulling fs layer
33d08da7381b: Waiting
67121c45c12e: Pulling fs layer
f7367936a4ff: Waiting
0f775f9b4040: Waiting
ab03a25a5561: Pulling fs layer
cac5f36cdcf2: Waiting
4919242ee9f5: Pulling fs layer
67121c45c12e: Waiting
2bde80d3d23c: Pulling fs layer
ab03a25a5561: Waiting
45ed496461fa: Pulling fs layer
2bde80d3d23c: Waiting
4919242ee9f5: Waiting
e61d343247b6: Pulling fs layer
45ed496461fa: Waiting
4f4fb700ef54: Pulling fs layer
5a662aa88b61: Pulling fs layer
e61d343247b6: Waiting
0b6b22f514e4: Pulling fs layer
4f4fb700ef54: Waiting
5a662aa88b61: Waiting
f8febdcadc99: Pulling fs layer
0b6b22f514e4: Waiting
5df9cf626dcd: Pulling fs layer
f8febdcadc99: Waiting
1449ca64a26d: Pulling fs layer
5df9cf626dcd: Waiting
2e1679b79bab: Pulling fs layer
1449ca64a26d: Waiting
e34619743411: Pulling fs layer
9a28f75fe375: Pulling fs layer
2e1679b79bab: Waiting
e34619743411: Waiting
3a18e07c27f5: Pulling fs layer
9a28f75fe375: Waiting
20a61cc0811b: Pulling fs layer
3a18e07c27f5: Waiting
676aad68d255: Pulling fs layer
3d3debbfafcd: Pulling fs layer
856a6a25081a: Pulling fs layer
4040f3e85115: Pulling fs layer
676aad68d255: Waiting
20a61cc0811b: Waiting
3d3debbfafcd: Waiting
856a6a25081a: Waiting
be9188a811cb: Pulling fs layer
d6bea3409cc9: Pulling fs layer
be9188a811cb: Waiting
4040f3e85115: Waiting
5eb47fdd7908: Pulling fs layer
166968ba5f42: Pulling fs layer
48ec34d55b70: Pulling fs layer
9c6f70d9a5a4: Pulling fs layer
8d00bd74f251: Pulling fs layer
7896046f3133: Pulling fs layer
166968ba5f42: Waiting
9c6f70d9a5a4: Waiting
8d00bd74f251: Waiting
48ec34d55b70: Waiting
7896046f3133: Waiting
1fc1d7f7a8aa: Verifying Checksum
1fc1d7f7a8aa: Download complete
f6a51478d59b: Verifying Checksum
f6a51478d59b: Download complete
33d08da7381b: Verifying Checksum
33d08da7381b: Download complete
422c2b21852f: Verifying Checksum
422c2b21852f: Download complete
7ff2cef6516f: Verifying Checksum
7ff2cef6516f: Download complete
cac5f36cdcf2: Verifying Checksum
cac5f36cdcf2: Download complete
f7367936a4ff: Verifying Checksum
f7367936a4ff: Download complete
0f775f9b4040: Verifying Checksum
0f775f9b4040: Download complete
67121c45c12e: Verifying Checksum
67121c45c12e: Download complete
ab03a25a5561: Verifying Checksum
ab03a25a5561: Download complete
4919242ee9f5: Download complete
2bde80d3d23c: Verifying Checksum
2bde80d3d23c: Download complete
45ed496461fa: Download complete
e61d343247b6: Verifying Checksum
e61d343247b6: Download complete
4f4fb700ef54: Download complete
5a662aa88b61: Verifying Checksum
5a662aa88b61: Download complete
0b6b22f514e4: Verifying Checksum
0b6b22f514e4: Download complete
f8febdcadc99: Verifying Checksum
f8febdcadc99: Download complete
5df9cf626dcd: Verifying Checksum
5df9cf626dcd: Download complete
1449ca64a26d: Verifying Checksum
1449ca64a26d: Download complete
2e1679b79bab: Verifying Checksum
2e1679b79bab: Download complete
e34619743411: Download complete
3a18e07c27f5: Download complete
9a28f75fe375: Verifying Checksum
9a28f75fe375: Download complete
676aad68d255: Download complete
20a61cc0811b: Download complete
3d3debbfafcd: Verifying Checksum
3d3debbfafcd: Download complete
4040f3e85115: Verifying Checksum
4040f3e85115: Download complete
be9188a811cb: Verifying Checksum
be9188a811cb: Download complete
d6bea3409cc9: Verifying Checksum
d6bea3409cc9: Download complete
5eb47fdd7908: Download complete
166968ba5f42: Download complete
20856ddc4ee5: Verifying Checksum
20856ddc4ee5: Download complete
9c6f70d9a5a4: Download complete
8d00bd74f251: Verifying Checksum
8d00bd74f251: Download complete
7896046f3133: Verifying Checksum
7896046f3133: Download complete
856a6a25081a: Verifying Checksum
856a6a25081a: Download complete
48ec34d55b70: Verifying Checksum
48ec34d55b70: Download complete
20856ddc4ee5: Pull complete
1fc1d7f7a8aa: Pull complete
422c2b21852f: Pull complete
f6a51478d59b: Pull complete
33d08da7381b: Pull complete
7ff2cef6516f: Pull complete
cac5f36cdcf2: Pull complete
f7367936a4ff: Pull complete
0f775f9b4040: Pull complete
67121c45c12e: Pull complete
ab03a25a5561: Pull complete
4919242ee9f5: Pull complete
2bde80d3d23c: Pull complete
45ed496461fa: Pull complete
e61d343247b6: Pull complete
4f4fb700ef54: Pull complete
5a662aa88b61: Pull complete
0b6b22f514e4: Pull complete
f8febdcadc99: Pull complete
5df9cf626dcd: Pull complete
1449ca64a26d: Pull complete
2e1679b79bab: Pull complete
e34619743411: Pull complete
9a28f75fe375: Pull complete
3a18e07c27f5: Pull complete
20a61cc0811b: Pull complete
676aad68d255: Pull complete
3d3debbfafcd: Pull complete
856a6a25081a: Pull complete
4040f3e85115: Pull complete
be9188a811cb: Pull complete
d6bea3409cc9: Pull complete
5eb47fdd7908: Pull complete
166968ba5f42: Pull complete
48ec34d55b70: Pull complete
9c6f70d9a5a4: Pull complete
8d00bd74f251: Pull complete
7896046f3133: Pull complete
Digest: sha256:767bb0cef7f7af77a4af5353218da9fcecc02d6c6b0aed3d32f0fa3a984e1369
Status: Downloaded newer image for ocaml/opam@sha256:767bb0cef7f7af77a4af5353218da9fcecc02d6c6b0aed3d32f0fa3a984e1369
2025-12-30 12:42.05 ---> saved as "49f751ef8c5ec33f33fbe83dbeaff2f7692644f493b8d93418fe42161181ae76"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-30 12:42.05 ---> saved as "5e321eaf7708cbe3616ec4538875daeaf0a6e10a12427c4f31dbc12fb844ef73"
/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 255 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=255 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-30 12:42.33 ---> saved as "7d7163de28fee87438027dc98bc5bd1004f829cff2359406bb77523376a36d0e"
/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=arch os-version=20251221.0.472429
# 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
2025-12-30 12:42.34 ---> saved as "0dbe8ac91f23bf305e3643bfbc3644c66a9f67f546f93edcfb06ee17f7dc2cf8"
/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-30 12:42.51 ---> saved as "ab2b5008930c112af884e21293c9655e522d4fc1c9a71918b298220a8175a715"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 12:43.07 ---> saved as "57a894dc4bada120d4565026e5a7df9ec703c4c9d0047cf6008646d49ac002a2"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 12:43.28 ---> saved as "d2d2a0cc6251bec3ecbce8d6c664d40472a9e6cf4bacdc62e6f3ad03db9463d7"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/sbin/sudo "pacman" "-Sy"
- :: Synchronizing package databases...
- core downloading...
- extra downloading...
2025-12-30 12:43.29 ---> saved as "36e811061ba7cd8ed45a53e37c8c2722932967fe0b82c64e642f322aadf65f75"
/home/opam: (run (shell "opam pin add -k version -yn raylib.1.6.0 1.6.0"))
raylib is now pinned to version 1.6.0
2025-12-30 12:43.29 ---> saved as "479df091cf4adbed2360f86c4c3ff1aad5ac0c1448a8cdbc3b80481d0994f235"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall raylib.1.6.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 \"\\\"archlinux\\\"\"; 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.6.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.1.6.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
∗ conf-libxcursor 1 [required by raylib]
∗ conf-libxi 1 [required by raylib]
∗ conf-libxinerama 1 [required by raylib]
∗ conf-libxrandr 1 [required by raylib]
∗ conf-mesa 1 [required by raylib]
∗ conf-pkg-config 4 [required by conf-libxrandr, conf-libxi, conf-libxcursor, etc.]
∗ csexp 1.5.2 [required by dune-configurator]
∗ ctypes 0.24.0 [required by raylib]
∗ dune 3.20.2 [required by raylib]
∗ dune-configurator 3.20.2 [required by raylib]
∗ integers 0.7.0 [required by raylib]
∗ patch 3.1.0 [required by raylib]
∗ raylib 1.6.0 (pinned)
∗ stdlib-shims 0.3.0 [required by integers]
The following system packages will first need to be installed:
libxcursor libxi libxinerama libxrandr mesa pkgconf
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pacman to install them (may need root/sudo access)
2. Display the recommended pacman 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/sbin/sudo "pacman" "-Su" "--noconfirm" "libxcursor" "libxi" "libxinerama" "libxrandr" "mesa" "pkgconf"
- :: Starting full system upgrade...
- resolving dependencies...
- looking for conflicting packages...
-
- Package (22) Old Version New Version Net Change Download Size
-
- extra/default-cursors 3-1 0.00 MiB 0.00 MiB
- core/iana-etc 20251120-1 20251215-1 0.00 MiB 0.39 MiB
- extra/libdrm 2.4.131-1 1.28 MiB 0.35 MiB
- core/libedit 20250104_3.1-1 0.26 MiB 0.11 MiB
- extra/libglvnd 1.7.0-3 3.34 MiB 0.32 MiB
- core/libnghttp3 1.13.1-1 1.14.0-1 0.00 MiB 0.08 MiB
- extra/libpciaccess 0.18.1-2 0.06 MiB 0.02 MiB
- extra/libxext 1.3.6-1 0.30 MiB 0.10 MiB
- extra/libxfixes 6.0.2-1 0.04 MiB 0.01 MiB
- extra/libxrender 0.9.12-1 0.09 MiB 0.03 MiB
- extra/libxshmfence 1.3.3-1 0.02 MiB 0.01 MiB
- extra/libxxf86vm 1.1.6-1 0.03 MiB 0.02 MiB
- extra/llvm-libs 21.1.6-1 150.01 MiB 38.45 MiB
- extra/lm_sensors 1:3.6.2-1 0.48 MiB 0.13 MiB
- extra/spirv-tools 1:1.4.335.0-1 7.51 MiB 1.89 MiB
- extra/wayland 1.24.0-1 0.82 MiB 0.14 MiB
- extra/libxcursor 1.2.3-1 0.07 MiB 0.03 MiB
- extra/libxi 1.8.2-1 0.48 MiB 0.15 MiB
- extra/libxinerama 1.1.5-2 0.02 MiB 0.01 MiB
- extra/libxrandr 1.5.4-1 0.07 MiB 0.03 MiB
- extra/mesa 1:25.3.2-1 44.86 MiB 11.23 MiB
- core/pkgconf 2.5.1-1 0.20 MiB 0.07 MiB
-
- Total Download Size: 53.57 MiB
- Total Installed Size: 214.20 MiB
- Net Upgrade Size: 209.95 MiB
-
- :: Proceed with installation? [Y/n]
- :: Retrieving packages...
- llvm-libs-21.1.6-1-x86_64 downloading...
- mesa-1:25.3.2-1-x86_64 downloading...
- spirv-tools-1:1.4.335.0-1-x86_64 downloading...
- iana-etc-20251215-1-any downloading...
- libdrm-2.4.131-1-x86_64 downloading...
- libglvnd-1.7.0-3-x86_64 downloading...
- libxi-1.8.2-1-x86_64 downloading...
- wayland-1.24.0-1-x86_64 downloading...
- lm_sensors-1:3.6.2-1-x86_64 downloading...
- libedit-20250104_3.1-1-x86_64 downloading...
- libxext-1.3.6-1-x86_64 downloading...
- libnghttp3-1.14.0-1-x86_64 downloading...
- pkgconf-2.5.1-1-x86_64 downloading...
- libxcursor-1.2.3-1-x86_64 downloading...
- libxrender-0.9.12-1-x86_64 downloading...
- libxrandr-1.5.4-1-x86_64 downloading...
- libpciaccess-0.18.1-2-x86_64 downloading...
- libxxf86vm-1.1.6-1-x86_64 downloading...
- libxfixes-6.0.2-1-x86_64 downloading...
- libxinerama-1.1.5-2-x86_64 downloading...
- libxshmfence-1.3.3-1-x86_64 downloading...
- default-cursors-3-1-any downloading...
- checking keyring...
- checking package integrity...
- loading package files...
- checking for file conflicts...
- :: Processing package changes...
- upgrading iana-etc...
- installing libxfixes...
- installing libxrender...
- installing default-cursors...
- Optional dependencies for default-cursors
- adwaita-cursors: default cursor theme
- installing libxcursor...
- installing libxext...
- installing libxi...
- installing libxinerama...
- installing libxrandr...
- installing libpciaccess...
- installing libdrm...
- Optional dependencies for libdrm
- cairo: needed for modetest tool
- installing libglvnd...
- installing libxshmfence...
- installing libxxf86vm...
- installing libedit...
- installing llvm-libs...
- installing lm_sensors...
- Optional dependencies for lm_sensors
- rrdtool: for logging with sensord
- perl: for sensor detection and configuration convert [installed]
- installing spirv-tools...
- installing wayland...
- upgrading libnghttp3...
- installing mesa...
- Optional dependencies for mesa
- opengl-man-pages: for the OpenGL API man pages
- installing pkgconf...
- :: Running post-transaction hooks...
- (1/2) Reloading system manager configuration...
- Failed to check for chroot() environment: Permission denied
- Skipped: Current root is not booted.
- (2/2) Arming ConditionNeedsUpdate...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved csexp.1.5.2 (cached)
∗ installed conf-pkg-config.4
⬇ retrieved ctypes.0.24.0 (cached)
∗ installed conf-libxcursor.1
∗ installed conf-libxi.1
∗ installed conf-libxinerama.1
∗ installed conf-libxrandr.1
∗ installed conf-mesa.1
⬇ retrieved dune.3.20.2, dune-configurator.3.20.2 (cached)
⬇ retrieved integers.0.7.0 (cached)
⬇ retrieved patch.3.1.0 (cached)
⬇ retrieved raylib.1.6.0 (cached)
⬇ retrieved stdlib-shims.0.3.0 (cached)
∗ installed dune.3.20.2
∗ installed stdlib-shims.0.3.0
∗ installed csexp.1.5.2
∗ installed patch.3.1.0
∗ installed integers.0.7.0
∗ installed dune-configurator.3.20.2
∗ installed ctypes.0.24.0
∗ installed raylib.1.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 12:45.12 ---> saved as "fa3b0e7551765ae4ded6a23ee5e7c0a9603fd1f882d0d78a310a879dbd927f47"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test raylib.1.6.0) || true"))
The following actions will be performed:
=== recompile 1 package
↻ raylib 1.6.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⊘ removed raylib.1.6.0
∗ installed raylib.1.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 12:46.05 ---> saved as "24c36dbf47abe8af57009dc351d9fc54bd699e6bfc4ff5c99178b4f8bdff5ce0"
/home/opam: (run (shell "opam reinstall --with-test --verbose raylib.1.6.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 \"\\\"archlinux\\\"\"; 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.6.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
↻ raylib 1.6.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [raylib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "raylib" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/raylib.1.6.0)
- (cd _build/default/src/c && ./apply_patch.exe enable_formats.patch)
- vendor/raylib/src/config.h
- patching vendor/raylib/src/config.h
- (cd _build/default/src/c && /usr/sbin/make -C vendor/raylib/src RAYLIB_LIBTYPE=STATIC -j 8)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/raylib.1.6.0/_build/default/src/c/vendor/raylib/src'
- gcc -c rcore.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rshapes.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rtextures.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rtext.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c utils.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rglfw.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rmodels.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c raudio.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -DGRAPHICS_API_OPENGL_33 -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=c99 -fPIC -O1 -Werror=implicit-function-declaration -D_GLFW_X11 -I. -Iexternal/glfw/include
- 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/4.14/.opam-switch/build/raylib.1.6.0/_build/default/src/c/vendor/raylib/src'
- In file included from rglfw.c:99:
- external/glfw/src/posix_poll.c:27:9: warning: ‘_GNU_SOURCE’ redefined
- 27 | #define _GNU_SOURCE
- | ^~~~~~~~~~~
- <command-line>: note: this is the location of the previous definition
- In file included from rmodels.c:43:
- external/par_shapes.h: In function ‘par_shapes_create_disk’:
- raylib.h:133:33: warning: argument 1 range [18446744069414584320, 18446744073709551610] exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
- 133 | #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__
- | ^~~~~~
- (cd _build/default/src/c && /usr/sbin/make -C vendor/raylib/src clean)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/raylib.1.6.0/_build/default/src/c/vendor/raylib/src'
- rm -fv *.o ../src/libraylib.a ../src/libraylib.bc ../src/libraylib.so* raygui.c ../src/*-protocol.h ../src/*-protocol-code.h
- 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/4.14/.opam-switch/build/raylib.1.6.0/_build/default/src/c/vendor/raylib/src'
- (cd _build/default/src/c && /usr/sbin/make -C vendor/raylib/src RAYLIB_LIBTYPE=SHARED -j 8)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/raylib.1.6.0/_build/default/src/c/vendor/raylib/src'
- gcc -c rcore.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -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 -fvisibility=hidden -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rshapes.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -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 -fvisibility=hidden -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rtextures.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -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 -fvisibility=hidden -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rtext.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -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 -fvisibility=hidden -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c utils.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -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 -fvisibility=hidden -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rglfw.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -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 -fvisibility=hidden -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c rmodels.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -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 -fvisibility=hidden -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -c raudio.c -Wall -D_GNU_SOURCE -DPLATFORM_DESKTOP_GLFW -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 -fvisibility=hidden -D_GLFW_X11 -I. -Iexternal/glfw/include
- gcc -shared -o ../src/libraylib.so.5.5.0 rcore.o rshapes.o rtextures.o rtext.o utils.o rglfw.o rmodels.o raudio.o -L. -L../src -Wl,-soname,libraylib.so.550 -lGL -lc -lm -lpthread -ldl -lrt -lX11
- raylib shared library generated (libraylib.so.5.5.0) in ../src!
- cd ../src && ln -fsv libraylib.so.5.5.0 libraylib.so.550
- 'libraylib.so.550' -> 'libraylib.so.5.5.0'
- cd ../src && ln -fsv libraylib.so.550 libraylib.so
- 'libraylib.so' -> 'libraylib.so.550'
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/raylib.1.6.0/_build/default/src/c/vendor/raylib/src'
- In file included from rglfw.c:99:
- external/glfw/src/posix_poll.c:27:9: warning: ‘_GNU_SOURCE’ redefined
- 27 | #define _GNU_SOURCE
- | ^~~~~~~~~~~
- <command-line>: note: this is the location of the previous definition
- In file included from rmodels.c:43:
- external/par_shapes.h: In function ‘par_shapes_create_disk’:
- raylib.h:133:33: warning: argument 1 range [18446744069414584320, 18446744073709551610] exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=]
- 133 | #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__
- | ^~~~~~
- (cd _build/default/src/c/raylib && /usr/sbin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -Wall -fdiagnostics-color=always -I../vendor/raylib/src -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/stdlib-shims -o raylib__c_cout_generated_functions__Functions__Functions.o -c raylib__c_cout_generated_functions__Functions__Functions.c)
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_46_GetClipboardText’:
- raylib__c_cout_generated_functions__Functions__Functions.c:445:17: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 445 | char* x310 = GetClipboardText();
- | ^~~~~~~~~~~~~~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_112_LoadFileData’:
- raylib__c_cout_generated_functions__Functions__Functions.c:1155:45: warning: pointer targets in passing argument 2 of ‘LoadFileData’ differ in signedness [-Wpointer-sign]
- 1155 | unsigned char* x873 = LoadFileData(x871, x872);
- | ^~~~
- | |
- | unsigned int *
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../vendor/raylib/src/raylib.h:1115:62: note: expected ‘int *’ but argument is of type ‘unsigned int *’
- 1115 | RLAPI unsigned char *LoadFileData(const char *fileName, int *dataSize); // Load file data as byte array (read)
- | ~~~~~^~~~~~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_113_UnloadFileData’:
- raylib__c_cout_generated_functions__Functions__Functions.c:1165:19: warning: passing argument 1 of ‘UnloadFileData’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 1165 | UnloadFileData(x878);
- | ^~~~
- ../vendor/raylib/src/raylib.h:1116:42: note: expected ‘unsigned char *’ but argument is of type ‘const char *’
- 1116 | RLAPI void UnloadFileData(unsigned char *data); // Unload file data allocated by LoadFileData()
- | ~~~~~~~~~~~~~~~^~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_115_ExportDataAsCode’:
- raylib__c_cout_generated_functions__Functions__Functions.c:1189:33: warning: pointer targets in passing argument 1 of ‘ExportDataAsCode’ differ in signedness [-Wpointer-sign]
- 1189 | bool x903 = ExportDataAsCode(x898, x899, x902);
- | ^~~~
- | |
- | const char *
- ../vendor/raylib/src/raylib.h:1118:50: note: expected ‘const unsigned char *’ but argument is of type ‘const char *’
- 1118 | RLAPI bool ExportDataAsCode(const unsigned char *data, int dataSize, const char *fileName); // Export data to code (.h), returns true on success
- | ~~~~~~~~~~~~~~~~~~~~~^~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_117_UnloadFileText’:
- raylib__c_cout_generated_functions__Functions__Functions.c:1209:19: warning: passing argument 1 of ‘UnloadFileText’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 1209 | UnloadFileText(x914);
- | ^~~~
- ../vendor/raylib/src/raylib.h:1120:33: note: expected ‘char *’ but argument is of type ‘const char *’
- 1120 | RLAPI void UnloadFileText(char *text); // Unload file text data allocated by LoadFileText()
- | ~~~~~~^~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_118_SaveFileText’:
- raylib__c_cout_generated_functions__Functions__Functions.c:1220:35: warning: passing argument 2 of ‘SaveFileText’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 1220 | bool x923 = SaveFileText(x921, x922);
- | ^~~~
- ../vendor/raylib/src/raylib.h:1121:53: note: expected ‘char *’ but argument is of type ‘const char *’
- 1121 | RLAPI bool SaveFileText(const char *fileName, char *text); // Save text data to file (write), string must be '\0' terminated, returns true on success
- | ~~~~~~^~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_268_LoadImageAnimFromMemory’:
- raylib__c_cout_generated_functions__Functions__Functions.c:3301:56: warning: pointer targets in passing argument 2 of ‘LoadImageAnimFromMemory’ differ in signedness [-Wpointer-sign]
- 3301 | struct Image x2957 = LoadImageAnimFromMemory(x2951, x2952, x2953, x2956);
- | ^~~~~
- | |
- | const char *
- ../vendor/raylib/src/raylib.h:1326:80: note: expected ‘const unsigned char *’ but argument is of type ‘const char *’
- 1326 | RLAPI Image LoadImageAnimFromMemory(const char *fileType, const unsigned char *fileData, int dataSize, int *frames); // Load image sequence from memory buffer
- | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_269_LoadImageFromMemory’:
- raylib__c_cout_generated_functions__Functions__Functions.c:3314:52: warning: pointer targets in passing argument 2 of ‘LoadImageFromMemory’ differ in signedness [-Wpointer-sign]
- 3314 | struct Image x2969 = LoadImageFromMemory(x2964, x2965, x2966);
- | ^~~~~
- | |
- | const char *
- ../vendor/raylib/src/raylib.h:1327:76: note: expected ‘const unsigned char *’ but argument is of type ‘const char *’
- 1327 | RLAPI Image LoadImageFromMemory(const char *fileType, const unsigned char *fileData, int dataSize); // Load image from memory buffer, fileType refers to extension: i.e. '.png'
- | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_275_ExportImageToMemory’:
- raylib__c_cout_generated_functions__Functions__Functions.c:3382:24: warning: pointer targets in initialization of ‘const char *’ from ‘unsigned char *’ differ in signedness [-Wpointer-sign]
- 3382 | char const* x3020 = ExportImageToMemory(x3017, x3018, x3019);
- | ^~~~~~~~~~~~~~~~~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_384_LoadFontFromMemory’:
- raylib__c_cout_generated_functions__Functions__Functions.c:4986:30: warning: pointer targets in passing argument 2 of ‘LoadFontFromMemory’ differ in signedness [-Wpointer-sign]
- 4986 | LoadFontFromMemory(x4623, x4624, x4625, x4628, x4631, x4632);
- | ^~~~~
- | |
- | const char *
- ../vendor/raylib/src/raylib.h:1464:74: note: expected ‘const unsigned char *’ but argument is of type ‘const char *’
- 1464 | RLAPI Font LoadFontFromMemory(const char *fileType, const unsigned char *fileData, int dataSize, int fontSize, int *codepoints, int codepointCount); // Load font from memory buffer, fileType refers to extension: i.e. '.ttf'
- | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_386_LoadFontData’:
- raylib__c_cout_generated_functions__Functions__Functions.c:5026:17: warning: pointer targets in passing argument 1 of ‘LoadFontData’ differ in signedness [-Wpointer-sign]
- 5026 | LoadFontData(x4659, x4660, x4663, x4666, x4667, x4670);
- | ^~~~~
- | |
- | const char *
- ../vendor/raylib/src/raylib.h:1466:52: note: expected ‘const unsigned char *’ but argument is of type ‘const char *’
- 1466 | RLAPI GlyphInfo *LoadFontData(const unsigned char *fileData, int dataSize, int fontSize, int *codepoints, int codepointCount, int type); // Load font data for further use
- | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_412_TextCopy’:
- raylib__c_cout_generated_functions__Functions__Functions.c:5433:25: warning: passing argument 1 of ‘TextCopy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 5433 | int x5056 = TextCopy(x5054, x5055);
- | ^~~~~
- ../vendor/raylib/src/raylib.h:1501:26: note: expected ‘char *’ but argument is of type ‘const char *’
- 1501 | RLAPI int TextCopy(char *dst, const char *src); // Copy one string to another, returns bytes copied
- | ~~~~~~^~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_418_TextAppend’:
- raylib__c_cout_generated_functions__Functions__Functions.c:5502:15: warning: passing argument 1 of ‘TextAppend’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 5502 | TextAppend(x5113, x5114, x5115);
- | ^~~~~
- ../vendor/raylib/src/raylib.h:1510:29: note: expected ‘char *’ but argument is of type ‘const char *’
- 1510 | RLAPI void TextAppend(char *text, const char *append, int *position); // Append text at specific position and move cursor!
- | ~~~~~~^~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_509_LoadWaveFromMemory’:
- raylib__c_cout_generated_functions__Functions__Functions.c:6921:50: warning: pointer targets in passing argument 2 of ‘LoadWaveFromMemory’ differ in signedness [-Wpointer-sign]
- 6921 | struct Wave x6552 = LoadWaveFromMemory(x6547, x6548, x6549);
- | ^~~~~
- | |
- | const char *
- ../vendor/raylib/src/raylib.h:1635:74: note: expected ‘const unsigned char *’ but argument is of type ‘const char *’
- 1635 | RLAPI Wave LoadWaveFromMemory(const char *fileType, const unsigned char *fileData, int dataSize); // Load wave from memory buffer, fileType refers to extension: i.e. '.wav'
- | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~
- raylib__c_cout_generated_functions__Functions__Functions.c: In function ‘raylib_stubs_535_LoadMusicStreamFromMemory’:
- raylib__c_cout_generated_functions__Functions__Functions.c:7217:58: warning: pointer targets in passing argument 2 of ‘LoadMusicStreamFromMemory’ differ in signedness [-Wpointer-sign]
- 7217 | struct Music x6796 = LoadMusicStreamFromMemory(x6791, x6792, x6793);
- | ^~~~~
- | |
- | const char *
- ../vendor/raylib/src/raylib.h:1665:82: note: expected ‘const unsigned char *’ but argument is of type ‘const char *’
- 1665 | RLAPI Music LoadMusicStreamFromMemory(const char *fileType, const unsigned char *data, int dataSize); // Load music stream from data
- | ~~~~~~~~~~~~~~~~~~~~~^~~~
λ compiled raylib.1.6.0
⊘ removed raylib.1.6.0
∗ installed raylib.1.6.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 12:46.53 ---> saved as "9dd449f3e85247b2f1a1f1dfe59f95ded2ea3d3d04f0ec05ff77cc10dc40f3dd"
Job succeeded
2025-12-30 12:47.05: Job succeeded