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 centos-9-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:centos-9-ocaml-4.14@sha256:b6d95f3bc3bb5c66afde03363bea6e2d4d1c2b3f9be57ca9ed04454c0f58f5e5
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 "\"centos-9\""; 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 "\"centos-9\""; 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:centos-9-ocaml-4.14@sha256:b6d95f3bc3bb5c66afde03363bea6e2d4d1c2b3f9be57ca9ed04454c0f58f5e5-raylib.1.6.0-450fcb54eb97683228045509526518426f9b6bde"
2025-12-30 12:34.49: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-4.14@sha256:b6d95f3bc3bb5c66afde03363bea6e2d4d1c2b3f9be57ca9ed04454c0f58f5e5)
(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 \"\\\"centos-9\\\"\"; 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 \"\\\"centos-9\\\"\"; 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.40: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files: 93% (17912/19114)
Updating files: 94% (17968/19114)
Updating files: 95% (18159/19114)
Updating files: 96% (18350/19114)
Updating files: 97% (18541/19114)
Updating files: 98% (18732/19114)
Updating files: 99% (18923/19114)
Updating files: 100% (19114/19114)
Updating files: 100% (19114/19114), done.
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:centos-9-ocaml-4.14@sha256:b6d95f3bc3bb5c66afde03363bea6e2d4d1c2b3f9be57ca9ed04454c0f58f5e5)
Unable to find image 'ocaml/opam:centos-9-ocaml-4.14@sha256:b6d95f3bc3bb5c66afde03363bea6e2d4d1c2b3f9be57ca9ed04454c0f58f5e5' locally
docker.io/ocaml/opam@sha256:b6d95f3bc3bb5c66afde03363bea6e2d4d1c2b3f9be57ca9ed04454c0f58f5e5: Pulling from ocaml/opam
f8cd8c42bb80: Already exists
322e94cfde58: Already exists
12ea695e8f14: Already exists
a0619735e51a: Already exists
320d94d31091: Already exists
44197641e273: Already exists
2d0a3dad40fa: Already exists
6cda2abc8884: Already exists
c59382bce11f: Already exists
a0a7d888b56b: Already exists
29c93ca5ecc2: Already exists
4eb5bcb684d9: Already exists
7953ecba1643: Already exists
812b50b59e90: Already exists
c22f854befed: Already exists
d9334dcacbf9: Already exists
c5d32c8f3628: Already exists
586f185021dc: Already exists
586f185021dc: Already exists
80c15c541dc3: Already exists
456e2364418d: Already exists
d60b7ce96989: Already exists
37d1b6b41f24: Already exists
4f4fb700ef54: Already exists
253d43aa8999: Already exists
571faceb7b57: Already exists
7dc7f33c3fdb: Already exists
3f67bb5a83dd: Already exists
ad3cc0f698b1: Already exists
b4ed53aef5c7: Already exists
5324a3b75bc0: Already exists
a80faa10099d: Already exists
c252346bd2ee: Already exists
7e4192004608: Already exists
487c544f740e: Already exists
a2e884390d84: Already exists
395513f9504f: Already exists
3118900a0b6c: Already exists
a101d96ef179: Already exists
8188c7857b74: Already exists
3cdc8c100551: Already exists
0dc549f4ecc1: Already exists
94decd476a4f: Pulling fs layer
fc1ab310907b: Pulling fs layer
ffd45684b7bb: Pulling fs layer
1a622f7819ac: Pulling fs layer
ffd45684b7bb: Waiting
1a622f7819ac: Waiting
94decd476a4f: Waiting
fc1ab310907b: Waiting
94decd476a4f: Verifying Checksum
94decd476a4f: Download complete
fc1ab310907b: Verifying Checksum
fc1ab310907b: Download complete
ffd45684b7bb: Download complete
1a622f7819ac: Download complete
94decd476a4f: Pull complete
fc1ab310907b: Pull complete
ffd45684b7bb: Pull complete
1a622f7819ac: Pull complete
Digest: sha256:b6d95f3bc3bb5c66afde03363bea6e2d4d1c2b3f9be57ca9ed04454c0f58f5e5
Status: Downloaded newer image for ocaml/opam@sha256:b6d95f3bc3bb5c66afde03363bea6e2d4d1c2b3f9be57ca9ed04454c0f58f5e5
2025-12-30 12:40.39 ---> saved as "01e427e87d372981cd6075a0335380e047c2aa27af9d9f7e46e3bc9b566520a3"
/: (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:40.39 ---> saved as "e92f5d6f720187f8311d4bf7bfcff0dc57720dc2859b007a16f8641b3b835fe8"
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-30 12:41.06 ---> saved as "bdd07b88a827d9e51c4796bfcb3618f97fdade8dc32faa986a5dbe65563a8b30"
/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=centos os-version=9
# 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:41.07 ---> saved as "869abdaefda2d8448989784297997a275e6ccc1762b36085b0d6b4f9f3a81355"
/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:41.15 ---> saved as "1fa63af69304be4d51ba7323e7972e36adb1d16f7023ceab2f8b05dcf9128117"
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 12:41.23 ---> saved as "07bcf4bc60d8c966eb8e40f283f014752e393626dc1790528d647ebb0b7d0274"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 12:41.42 ---> saved as "a52322b56ee67872dfeec3be160e1739f603087e830d4f91d3b86f5e4b662706"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 111 kB/s | 15 kB 00:00
- CentOS Stream 9 - AppStream 116 kB/s | 15 kB 00:00
- CentOS Stream 9 - CRB 108 kB/s | 15 kB 00:00
- CentOS Stream 9 - Extras packages 107 kB/s | 17 kB 00:00
- Metadata cache created.
2025-12-30 12:41.44 ---> saved as "ae448b07887c6fba61e49d44a027e17b5fa6a89819c47dc9865ad5aeeade7c73"
/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:41.45 ---> saved as "9024ce086070c4f917bcf7beb81a1ab599f59dcf58199488ef4bae8678107c87"
/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 \"\\\"centos-9\\\"\"; 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
- 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 csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.24.0 [required by raylib]
- install dune 3.20.2 [required by raylib]
- install dune-configurator 3.20.2 [required by raylib]
- install integers 0.7.0 [required by raylib]
- install patch 3.1.0 [required by raylib]
- install raylib 1.6.0 (pinned)
- install stdlib-shims 0.3.0 [required by integers]
The following system packages will first need to be installed:
libXcursor-devel libXi-devel libXinerama-devel libXrandr-devel mesa-libGL-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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 "yum" "install" "-y" "libXcursor-devel" "libXi-devel" "libXinerama-devel" "libXrandr-devel" "mesa-libGL-devel"
- Last metadata expiration check: 0:00:05 ago on Tue Dec 30 12:41:44 2025.
- Dependencies resolved.
- ================================================================================
- Package Arch Version Repository Size
- ================================================================================
- Installing:
- libXcursor-devel x86_64 1.2.0-7.el9 appstream 26 k
- libXi-devel x86_64 1.7.10-8.el9 appstream 113 k
- libXinerama-devel x86_64 1.1.4-10.el9 appstream 14 k
- libXrandr-devel x86_64 1.5.2-8.el9 appstream 20 k
- mesa-libGL-devel x86_64 25.0.7-2.el9 appstream 28 k
- Installing dependencies:
- libXext-devel x86_64 1.3.4-8.el9 appstream 87 k
- libXfixes-devel x86_64 5.0.3-16.el9 appstream 13 k
- libXrender-devel x86_64 0.9.10-16.el9 appstream 17 k
- libdrm-devel x86_64 2.4.123-2.el9 appstream 181 k
- libglvnd-core-devel x86_64 1:1.3.4-1.el9 appstream 18 k
- libglvnd-devel x86_64 1:1.3.4-1.el9 appstream 161 k
- libglvnd-gles x86_64 1:1.3.4-1.el9 appstream 33 k
- libglvnd-opengl x86_64 1:1.3.4-1.el9 appstream 43 k
- libpciaccess-devel x86_64 0.16-7.el9 appstream 13 k
- Installing weak dependencies:
- gl-manpages noarch 1.1-24.20190306.el9 appstream 1.2 M
-
- Transaction Summary
- ================================================================================
- Install 15 Packages
-
- Total download size: 2.0 M
- Installed size: 4.4 M
- Downloading Packages:
- (1/15): libXcursor-devel-1.2.0-7.el9.x86_64.rpm 990 kB/s | 26 kB 00:00
- (2/15): libXfixes-devel-5.0.3-16.el9.x86_64.rpm 491 kB/s | 13 kB 00:00
- (3/15): gl-manpages-1.1-24.20190306.el9.noarch. 11 MB/s | 1.2 MB 00:00
- (4/15): libXi-devel-1.7.10-8.el9.x86_64.rpm 1.5 MB/s | 113 kB 00:00
- (5/15): libXext-devel-1.3.4-8.el9.x86_64.rpm 681 kB/s | 87 kB 00:00
- (6/15): libXinerama-devel-1.1.4-10.el9.x86_64.r 751 kB/s | 14 kB 00:00
- (7/15): libXrender-devel-0.9.10-16.el9.x86_64.r 305 kB/s | 17 kB 00:00
- (8/15): libXrandr-devel-1.5.2-8.el9.x86_64.rpm 297 kB/s | 20 kB 00:00
- (9/15): libglvnd-core-devel-1.3.4-1.el9.x86_64. 789 kB/s | 18 kB 00:00
- (10/15): libglvnd-gles-1.3.4-1.el9.x86_64.rpm 1.5 MB/s | 33 kB 00:00
- (11/15): libdrm-devel-2.4.123-2.el9.x86_64.rpm 1.6 MB/s | 181 kB 00:00
- (12/15): libglvnd-devel-1.3.4-1.el9.x86_64.rpm 2.9 MB/s | 161 kB 00:00
- (13/15): libglvnd-opengl-1.3.4-1.el9.x86_64.rpm 747 kB/s | 43 kB 00:00
- (14/15): mesa-libGL-devel-25.0.7-2.el9.x86_64.r 451 kB/s | 28 kB 00:00
- (15/15): libpciaccess-devel-0.16-7.el9.x86_64.r 142 kB/s | 13 kB 00:00
- --------------------------------------------------------------------------------
- Total 4.3 MB/s | 2.0 MB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : libXext-devel-1.3.4-8.el9.x86_64 1/15
- Installing : libXrender-devel-0.9.10-16.el9.x86_64 2/15
- Installing : libXfixes-devel-5.0.3-16.el9.x86_64 3/15
- Installing : libpciaccess-devel-0.16-7.el9.x86_64 4/15
- Installing : libdrm-devel-2.4.123-2.el9.x86_64 5/15
- Installing : libglvnd-opengl-1:1.3.4-1.el9.x86_64 6/15
- Installing : libglvnd-gles-1:1.3.4-1.el9.x86_64 7/15
- Installing : libglvnd-core-devel-1:1.3.4-1.el9.x86_64 8/15
- Installing : libglvnd-devel-1:1.3.4-1.el9.x86_64 9/15
- Installing : gl-manpages-1.1-24.20190306.el9.noarch 10/15
- Installing : mesa-libGL-devel-25.0.7-2.el9.x86_64 11/15
- Installing : libXcursor-devel-1.2.0-7.el9.x86_64 12/15
- Installing : libXi-devel-1.7.10-8.el9.x86_64 13/15
- Installing : libXrandr-devel-1.5.2-8.el9.x86_64 14/15
- Installing : libXinerama-devel-1.1.4-10.el9.x86_64 15/15
- Running scriptlet: libXinerama-devel-1.1.4-10.el9.x86_64 15/15
- Verifying : gl-manpages-1.1-24.20190306.el9.noarch 1/15
- Verifying : libXcursor-devel-1.2.0-7.el9.x86_64 2/15
- Verifying : libXext-devel-1.3.4-8.el9.x86_64 3/15
- Verifying : libXfixes-devel-5.0.3-16.el9.x86_64 4/15
- Verifying : libXi-devel-1.7.10-8.el9.x86_64 5/15
- Verifying : libXinerama-devel-1.1.4-10.el9.x86_64 6/15
- Verifying : libXrandr-devel-1.5.2-8.el9.x86_64 7/15
- Verifying : libXrender-devel-0.9.10-16.el9.x86_64 8/15
- Verifying : libdrm-devel-2.4.123-2.el9.x86_64 9/15
- Verifying : libglvnd-core-devel-1:1.3.4-1.el9.x86_64 10/15
- Verifying : libglvnd-devel-1:1.3.4-1.el9.x86_64 11/15
- Verifying : libglvnd-gles-1:1.3.4-1.el9.x86_64 12/15
- Verifying : libglvnd-opengl-1:1.3.4-1.el9.x86_64 13/15
- Verifying : libpciaccess-devel-0.16-7.el9.x86_64 14/15
- Verifying : mesa-libGL-devel-25.0.7-2.el9.x86_64 15/15
-
- Installed:
- gl-manpages-1.1-24.20190306.el9.noarch
- libXcursor-devel-1.2.0-7.el9.x86_64
- libXext-devel-1.3.4-8.el9.x86_64
- libXfixes-devel-5.0.3-16.el9.x86_64
- libXi-devel-1.7.10-8.el9.x86_64
- libXinerama-devel-1.1.4-10.el9.x86_64
- libXrandr-devel-1.5.2-8.el9.x86_64
- libXrender-devel-0.9.10-16.el9.x86_64
- libdrm-devel-2.4.123-2.el9.x86_64
- libglvnd-core-devel-1:1.3.4-1.el9.x86_64
- libglvnd-devel-1:1.3.4-1.el9.x86_64
- libglvnd-gles-1:1.3.4-1.el9.x86_64
- libglvnd-opengl-1:1.3.4-1.el9.x86_64
- libpciaccess-devel-0.16-7.el9.x86_64
- mesa-libGL-devel-25.0.7-2.el9.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "libXcursor-devel" "libXi-devel" "libXinerama-devel" "libXrandr-devel" "mesa-libGL-devel"
- libXcursor-devel-1.2.0-7.el9.x86_64
- libXi-devel-1.7.10-8.el9.x86_64
- libXinerama-devel-1.1.4-10.el9.x86_64
- libXrandr-devel-1.5.2-8.el9.x86_64
- mesa-libGL-devel-25.0.7-2.el9.x86_64
<><> 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 csexp.1.5.2
-> installed patch.3.1.0
-> installed stdlib-shims.0.3.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:43.21 ---> saved as "1911776d405bf01776d746c2a2a502b61ba53d23f4400a52e7da9c90ffdd3387"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test raylib.1.6.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile 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:44.22 ---> saved as "b1d1bea5bbeed11bebdda7d72542186285e56e6b0219b6eaad352ce075fd6792"
/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 \"\\\"centos-9\\\"\"; 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
- recompile 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/bin/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: warning: "_GNU_SOURCE" redefined
- 27 | #define _GNU_SOURCE
- |
- <command-line>: note: this is the location of the previous definition
- (cd _build/default/src/c && /usr/bin/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/bin/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: warning: "_GNU_SOURCE" redefined
- 27 | #define _GNU_SOURCE
- |
- <command-line>: note: this is the location of the previous definition
- (cd _build/default/src/c/raylib && /usr/bin/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);
- | ^~~~
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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:34: warning: pointer targets in passing argument 1 of 'ExportDataAsCode' differ in signedness [-Wpointer-sign]
- 1189 | _Bool x903 = ExportDataAsCode(x898, x899, x902);
- | ^~~~
- | |
- | const char *
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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);
- | ^~~~
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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:36: warning: passing argument 2 of 'SaveFileText' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 1220 | _Bool x923 = SaveFileText(x921, x922);
- | ^~~~
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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 *
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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 *
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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 *
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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 *
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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);
- | ^~~~~
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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);
- | ^~~~~
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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 *
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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 *
- In file included from raylib__c_cout_generated_functions__Functions__Functions.c:1:
- ../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:45.15 ---> saved as "446c232a760bd927e66226235b8b0b871e8005bfea35fabceb94479ce63744fc"
Job succeeded
2025-12-30 12:45.20: Job succeeded