- github
- ocaml
- opam-repository
- 19c70f
- compilers,4.14,dune.3.22.0~alpha2,revdeps,lablgl.1.05
(not at the head of any monitored branch or PR)
2026-03-16 19:17.35: New job: test lablgl.1.05 with dune.3.22.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29547/head (19c70fd6a788b154ec5e9fe26bca1d12fb2519be)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29547/head" && git reset --hard 19c70fd6
git fetch origin master
git merge --no-edit 4f056bfedf536e66065c3783e694e6aa0b38261a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2
RUN opam reinstall dune.3.22.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.3.22.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 lablgl.1.05; \
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" != 'lablgl.1.05' && 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 lablgl.1.05) || true
RUN opam reinstall --with-test --verbose lablgl.1.05; \
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" != 'lablgl.1.05' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-16 19:17.35: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-dune.3.22.0~alpha2-lablgl.1.05-19c70fd6a788b154ec5e9fe26bca1d12fb2519be"
2026-03-16 19:17.35: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.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.3.22.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 lablgl.1.05;\
\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\" != 'lablgl.1.05' && 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 lablgl.1.05) || true"))
(run (shell "opam reinstall --with-test --verbose lablgl.1.05;\
\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\" != 'lablgl.1.05' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-16 19:17.35: Waiting for resource in pool OCluster
2026-03-17 04:44.58: Waiting for worker…
2026-03-17 04:47.46: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 4f056bfedf Merge pull request #29543 from Zaneham/add-olint-0.1.0
Updating 4f056bfedf..19c70fd6a7
Fast-forward
.../chrome-trace/chrome-trace.3.22.0~alpha2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.0~alpha2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.0~alpha2/opam | 39 +++++++++++
.../dune-build-info.3.22.0~alpha2/opam | 45 +++++++++++++
.../dune-configurator.3.22.0~alpha2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.0~alpha2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.0~alpha2/opam | 50 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.0~alpha2/opam | 37 +++++++++++
packages/dune/dune.3.22.0~alpha2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.0~alpha2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.0~alpha2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.0~alpha2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.0~alpha2/opam | 46 +++++++++++++
.../top-closure/top-closure.3.22.0~alpha2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.0~alpha2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.22.0~alpha2/opam
create mode 100644 packages/dune/dune.3.22.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.22.0~alpha2/opam
create mode 100644 packages/fs-io/fs-io.3.22.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.22.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.22.0~alpha2/opam
create mode 100644 packages/top-closure/top-closure.3.22.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.22.0~alpha2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-17 04:47.48 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 04:47.48 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 04:47.48 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-17 04:47.48 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-17 04:47.48 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 04:47.49 ---> using "bac94271bd2933048ab9ec083de7359406ae7b709f9e625d1aacde394e5b6b85" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 04:47.49 ---> using "1963dd823dac22306d550e5e9c9f971346ae5d465407ab924aff86b04a5120b3" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 1s (11.2 MB/s)
- Reading package lists...
-
2026-03-17 04:47.49 ---> using "2bbae9754f2da55382df5a713573b4f2579b518f80eaef97920d7868fdc429fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2"))
dune is now pinned to version 3.22.0~alpha2
2026-03-17 04:47.49 ---> using "3b312e1ba2e2d3ce6c50234ba2e62c6d827f15439acf5c47c65286f0b2bce15a" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.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.3.22.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.3.22.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha2 (cached)
-> installed dune.3.22.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 04:47.49 ---> using "79a7862cc80cedc04a487927a5645f883e0c17c692a64a036ab827a7afe98a62" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lablgl.1.05;\
\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\" != 'lablgl.1.05' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lablgl.1.05 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install camlp4 4.14+1 [required by lablgl]
- install conf-freeglut 1 [required by lablgl]
- install conf-libgl 1 [required by lablgl]
- install conf-libglu 1 [required by lablgl]
- install conf-pkg-config 4 [required by conf-libglu]
- install lablgl 1.05
- install ocamlbuild 0.16.1 [required by camlp4]
The following system packages will first need to be installed:
freeglut3-dev libglu1-mesa-dev mesa-common-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" "freeglut3-dev" "libglu1-mesa-dev" "mesa-common-dev" "pkg-config"
- Selecting previously unselected package libglvnd0:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../00-libglvnd0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../01-libdrm-common_2.4.124-2_all.deb ...
- Unpacking libdrm-common (2.4.124-2) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../02-libdrm2_2.4.124-2_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libx11-xcb1:amd64.
- Preparing to unpack .../03-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 .../04-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-glx0:amd64.
- Preparing to unpack .../05-libxcb-glx0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-present0:amd64.
- Preparing to unpack .../06-libxcb-present0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-present0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../07-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-xfixes0:amd64.
- Preparing to unpack .../08-libxcb-xfixes0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxxf86vm1:amd64.
- Preparing to unpack .../09-libxxf86vm1_1%3a1.1.4-1+b4_amd64.deb ...
- Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../10-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 .../11-libpciaccess0_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../12-libdrm-intel1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libelf1t64:amd64.
- Preparing to unpack .../13-libelf1t64_0.192-4_amd64.deb ...
- Unpacking libelf1t64:amd64 (0.192-4) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../14-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 .../15-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 .../16-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 .../17-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 .../18-libsensors5_1%3a3.6.2-2_amd64.deb ...
- Unpacking libsensors5:amd64 (1:3.6.2-2) ...
- Selecting previously unselected package libxcb-randr0:amd64.
- Preparing to unpack .../19-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 .../20-libxcb-sync1_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxshmfence1:amd64.
- Preparing to unpack .../21-libxshmfence1_1.3.3-1_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3.3-1) ...
- Selecting previously unselected package mesa-libgallium:amd64.
- Preparing to unpack .../22-mesa-libgallium_25.0.7-2_amd64.deb ...
- Unpacking mesa-libgallium:amd64 (25.0.7-2) ...
- Selecting previously unselected package libwayland-server0:amd64.
- Preparing to unpack .../23-libwayland-server0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-server0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libgbm1:amd64.
- Preparing to unpack .../24-libgbm1_25.0.7-2_amd64.deb ...
- Unpacking libgbm1:amd64 (25.0.7-2) ...
- Selecting previously unselected package libvulkan1:amd64.
- Preparing to unpack .../25-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 .../26-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 .../27-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 .../28-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 .../29-libgl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libxi6:amd64.
- Preparing to unpack .../30-libxi6_2%3a1.8.2-1_amd64.deb ...
- Unpacking libxi6:amd64 (2:1.8.2-1) ...
- Selecting previously unselected package libglut3.12:amd64.
- Preparing to unpack .../31-libglut3.12_3.4.0-4_amd64.deb ...
- Unpacking libglut3.12:amd64 (3.4.0-4) ...
- Selecting previously unselected package libopengl0:amd64.
- Preparing to unpack .../32-libopengl0_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglu1-mesa:amd64.
- Preparing to unpack .../33-libglu1-mesa_9.0.2-1.1+b3_amd64.deb ...
- Unpacking libglu1-mesa:amd64 (9.0.2-1.1+b3) ...
- Selecting previously unselected package libglx-dev:amd64.
- Preparing to unpack .../34-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 .../35-libgl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libopengl-dev:amd64.
- Preparing to unpack .../36-libopengl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libopengl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglu1-mesa-dev:amd64.
- Preparing to unpack .../37-libglu1-mesa-dev_9.0.2-1.1+b3_amd64.deb ...
- Unpacking libglu1-mesa-dev:amd64 (9.0.2-1.1+b3) ...
- Selecting previously unselected package libxext-dev:amd64.
- Preparing to unpack .../38-libxext-dev_2%3a1.3.4-1+b3_amd64.deb ...
- Unpacking libxext-dev:amd64 (2:1.3.4-1+b3) ...
- Selecting previously unselected package x11-common.
- Preparing to unpack .../39-x11-common_1%3a7.7+24+deb13u1_all.deb ...
- Unpacking x11-common (1:7.7+24+deb13u1) ...
- Selecting previously unselected package libice6:amd64.
- Preparing to unpack .../40-libice6_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice6:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package libsm6:amd64.
- Preparing to unpack .../41-libsm6_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm6:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxt6t64:amd64.
- Preparing to unpack .../42-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...
- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Selecting previously unselected package libice-dev:amd64.
- Preparing to unpack .../43-libice-dev_2%3a1.1.1-1_amd64.deb ...
- Unpacking libice-dev:amd64 (2:1.1.1-1) ...
- Selecting previously unselected package uuid-dev:amd64.
- Preparing to unpack .../44-uuid-dev_2.41-5_amd64.deb ...
- Unpacking uuid-dev:amd64 (2.41-5) ...
- Selecting previously unselected package libsm-dev:amd64.
- Preparing to unpack .../45-libsm-dev_2%3a1.2.6-1_amd64.deb ...
- Unpacking libsm-dev:amd64 (2:1.2.6-1) ...
- Selecting previously unselected package libxt-dev:amd64.
- Preparing to unpack .../46-libxt-dev_1%3a1.2.1-1.2+b2_amd64.deb ...
- Unpacking libxt-dev:amd64 (1:1.2.1-1.2+b2) ...
- Selecting previously unselected package libglut-dev:amd64.
- Preparing to unpack .../47-libglut-dev_3.4.0-4_amd64.deb ...
- Unpacking libglut-dev:amd64 (3.4.0-4) ...
- Selecting previously unselected package freeglut3-dev:amd64.
- Preparing to unpack .../48-freeglut3-dev_3.4.0-4_amd64.deb ...
- Unpacking freeglut3-dev:amd64 (3.4.0-4) ...
- Selecting previously unselected package libdrm-radeon1:amd64.
- Preparing to unpack .../49-libdrm-radeon1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-radeon1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-nouveau2:amd64.
- Preparing to unpack .../50-libdrm-nouveau2_2.4.124-2_amd64.deb ...
- Unpacking libdrm-nouveau2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libpciaccess-dev:amd64.
- Preparing to unpack .../51-libpciaccess-dev_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess-dev:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-dev:amd64.
- Preparing to unpack .../52-libdrm-dev_2.4.124-2_amd64.deb ...
- Unpacking libdrm-dev:amd64 (2.4.124-2) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../53-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../54-libwayland-client0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.23.1-3) ...
- Selecting previously unselected package mesa-common-dev:amd64.
- Preparing to unpack .../55-mesa-common-dev_25.0.7-2_amd64.deb ...
- Unpacking mesa-common-dev:amd64 (25.0.7-2) ...
- Selecting previously unselected package mesa-vulkan-drivers:amd64.
- Preparing to unpack .../56-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 .../57-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../58-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../59-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 libpciaccess-dev:amd64 (0.17-3+b3) ...
- Setting up libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Setting up libxi6:amd64 (2:1.8.2-1) ...
- Setting up libglvnd0:amd64 (1.7.0-1+b2) ...
- Setting up libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Setting up x11-common (1:7.7+24+deb13u1) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up libsensors-config (1:3.6.2-2) ...
- Setting up 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 libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Setting up uuid-dev:amd64 (2.41-5) ...
- 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 libglu1-mesa:amd64 (9.0.2-1.1+b3) ...
- Setting up libopengl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libdrm-common (2.4.124-2) ...
- 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 libice6:amd64 (2:1.1.1-1) ...
- Setting up libice-dev:amd64 (2:1.1.1-1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libdrm2:amd64 (2.4.124-2) ...
- Setting up libsm6:amd64 (2:1.2.6-1) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Setting up mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Setting up libdrm-nouveau2:amd64 (2.4.124-2) ...
- Setting up libsm-dev:amd64 (2:1.2.6-1) ...
- Setting up libdrm-radeon1:amd64 (2.4.124-2) ...
- Setting up libdrm-intel1:amd64 (2.4.124-2) ...
- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...
- Setting up mesa-libgallium:amd64 (25.0.7-2) ...
- Setting up libdrm-dev:amd64 (2.4.124-2) ...
- Setting up libgbm1:amd64 (25.0.7-2) ...
- Setting up libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Setting up libxt-dev:amd64 (1:1.2.1-1.2+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 libglut3.12:amd64 (3.4.0-4) ...
- Setting up libglx-dev:amd64 (1.7.0-1+b2) ...
- Setting up libgl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libglu1-mesa-dev:amd64 (9.0.2-1.1+b3) ...
- Setting up mesa-common-dev:amd64 (25.0.7-2) ...
- Setting up libglut-dev:amd64 (3.4.0-4) ...
- Setting up freeglut3-dev:amd64 (3.4.0-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlp4.4.14+1 (cached)
-> installed conf-freeglut.1
-> installed conf-libgl.1
-> retrieved lablgl.1.05 (cached)
-> installed conf-pkg-config.4
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed conf-libglu.1
-> installed ocamlbuild.0.16.1
-> installed camlp4.4.14+1
-> installed lablgl.1.05
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 04:49.32 ---> saved as "c0a98c8a75058f679db8ec3bbf247a164f15d41205ab025346ab19152e5f6b2a"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lablgl.1.05) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile lablgl 1.05
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved lablgl.1.05 (https://opam.ocaml.org/cache)
-> removed lablgl.1.05
-> installed lablgl.1.05
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 04:49.39 ---> saved as "211eb17cfcb7d5e1817939fd7e9a18fa1aec7a831aa5c7c080e0e4adf62a8e9c"
/home/opam: (run (shell "opam reinstall --with-test --verbose lablgl.1.05;\
\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\" != 'lablgl.1.05' && 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 lablgl 1.05
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [lablgl.1.05: extract]
-> retrieved lablgl.1.05 (cached)
Processing 2/4: [lablgl: cp Makefile.config.ex]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "cp" "Makefile.config.ex" "Makefile.config" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05)
Processing 2/4: [lablgl: mkdir]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "mkdir" "-p" "/home/opam/.opam/4.14/bin" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05)
Processing 2/4: [lablgl: make glut]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "INSTALLDIR=/home/opam/.opam/4.14/lib/lablgl" "glut" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05)
- cd src && make all LIBDIR="`ocamlc -where`"
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
- ocamlc -pp camlp4o var2def.ml -o var2def
- File "var2def.ml", line 19, characters 5-11:
- 19 | open Genlex
- ^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "var2def.ml", line 24, characters 17-34:
- 24 | let s = lexer (Stream.of_channel stdin) in
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2def.ml", lines 26-42, characters 20-32:
- 26 | ....................match s with parser
- 27 | [< ' Ident tag >] ->
- 28 | print_string "#define MLTAG_";
- 29 | print_string tag;
- 30 | print_string "\tVal_int(";
- ...
- 39 | print_string ")\n"
- 40 | | [< ' Kwd "->"; ' Ident _ >] -> ()
- 41 | | [< ' Kwd "$$" >] -> ()
- 42 | | [< >] -> raise End_of_file
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2def.ml", lines 26-42, characters 20-32:
- 26 | ....................match s with parser
- 27 | [< ' Ident tag >] ->
- 28 | print_string "#define MLTAG_";
- 29 | print_string tag;
- 30 | print_string "\tVal_int(";
- ...
- 39 | print_string ")\n"
- 40 | | [< ' Kwd "->"; ' Ident _ >] -> ()
- 41 | | [< ' Kwd "$$" >] -> ()
- 42 | | [< >] -> raise End_of_file
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2def.ml", line 27, characters 9-20:
- 27 | [< ' Ident tag >] ->
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2def.ml", line 40, characters 9-19:
- 40 | | [< ' Kwd "->"; ' Ident _ >] -> ()
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2def.ml", line 40, characters 21-30:
- 40 | | [< ' Kwd "->"; ' Ident _ >] -> ()
- ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2def.ml", line 40, characters 21-30:
- 40 | | [< ' Kwd "->"; ' Ident _ >] -> ()
- ^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2def.ml", line 40, characters 9-19:
- 40 | | [< ' Kwd "->"; ' Ident _ >] -> ()
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2def.ml", line 41, characters 9-19:
- 41 | | [< ' Kwd "$$" >] -> ()
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- ocamlc -pp camlp4o var2switch.ml -o var2switch
- File "var2switch.ml", line 5, characters 5-11:
- 5 | open Genlex
- ^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "var2switch.ml", line 15, characters 17-34:
- 15 | let s = lexer (Stream.of_channel stdin) in
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", lines 16-29, characters 20-32:
- 16 | ....................match s with parser
- 17 | [< ' Ident tag >] ->
- 18 | incr tag_number;
- 19 | print_string (if !table then " {MLTAG_" else " case MLTAG_");
- 20 | print_string tag;
- ...
- 26 | in print_string name;
- 27 | print_string (if !table then "},\n" else ";\n")
- 28 | | [< ' Kwd "$$" >] -> raise End_of_file
- 29 | | [< >] -> raise End_of_file
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", lines 16-29, characters 20-32:
- 16 | ....................match s with parser
- 17 | [< ' Ident tag >] ->
- 18 | incr tag_number;
- 19 | print_string (if !table then " {MLTAG_" else " case MLTAG_");
- 20 | print_string tag;
- ...
- 26 | in print_string name;
- 27 | print_string (if !table then "},\n" else ";\n")
- 28 | | [< ' Kwd "$$" >] -> raise End_of_file
- 29 | | [< >] -> raise End_of_file
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", line 17, characters 9-20:
- 17 | [< ' Ident tag >] ->
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", lines 23-25, characters 3-46:
- 23 | ...match s with parser
- 24 | [< ' Kwd "->" ; ' Ident name >] -> name
- 25 | | [< >] -> !prefix ^ String.uppercase tag
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", lines 23-25, characters 3-46:
- 23 | ...match s with parser
- 24 | [< ' Kwd "->" ; ' Ident name >] -> name
- 25 | | [< >] -> !prefix ^ String.uppercase tag
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", line 24, characters 10-20:
- 24 | [< ' Kwd "->" ; ' Ident name >] -> name
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", line 24, characters 23-35:
- 24 | [< ' Kwd "->" ; ' Ident name >] -> name
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", line 24, characters 23-35:
- 24 | [< ' Kwd "->" ; ' Ident name >] -> name
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", line 24, characters 10-20:
- 24 | [< ' Kwd "->" ; ' Ident name >] -> name
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "var2switch.ml", line 25, characters 26-42:
- 25 | | [< >] -> !prefix ^ String.uppercase tag
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uppercase
- Use String.uppercase_ascii/StringLabels.uppercase_ascii instead.
- File "var2switch.ml", line 28, characters 9-19:
- 28 | | [< ' Kwd "$$" >] -> raise End_of_file
- ^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- make lablgl.cma
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
- ocamlrun ../src/var2def < gl_tags.var > gl_tags.h
- ocamlrun ../src/var2switch -table GL_ < gl_tags.var > gl_tags.c
- ocamlc -c -w s -ccopt "-c -O -I/usr/X11R6/include" ml_gl.c
- ml_gl.c: In function 'ml_raise_gl':
- ml_gl.c:36:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 36 | gl_exn = caml_named_value("glerror");
- | ^
- ml_gl.c:37:13: warning: "raise_with_string" is deprecated: use "caml_raise_with_string" instead
- 37 | raise_with_string(*gl_exn, (char*)errmsg);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gl.c: In function 'lablgl_copy_string_check':
- ml_gl.c:43:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 43 | return copy_string ((char*) str);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gl.c: In function 'ml_gl_make_table':
- ml_gl.c:64:13: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 64 | tag_table = stat_alloc (TABLE_SIZE * sizeof(struct record));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gl.c: In function 'ml_glLight':
- ml_gl.c:271:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 271 | if (Int_val(n) >= GL_MAX_LIGHTS) invalid_argument ("Gl.light");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_gl.c: In function 'ml_glCallLists':
- ml_gl.c:717:20: warning: "string_length" is deprecated: use "caml_string_length" instead
- 717 | glCallLists (string_length(Field(indexes,1)),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlrun ../src/var2def < glu_tags.var > glu_tags.h
- ocamlrun ../src/var2switch GLU_ < glu_tags.var > glu_tags.c
- ocamlc -c -w s -ccopt "-c -O -I/usr/X11R6/include" ml_glu.c
- ml_glu.c: In function 'ml_gluNewNurbsRenderer':
- ml_glu.c:105:13: warning: "alloc_final" is deprecated: use "caml_alloc_final" instead
- 105 | value struc = alloc_final (2, ml_gluDeleteNurbsRenderer, 1, 32);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glu.c: In function 'ml_gluNewQuadric':
- ml_glu.c:112:13: warning: "alloc_final" is deprecated: use "caml_alloc_final" instead
- 112 | value struc = alloc_final (2, ml_gluDeleteQuadric, 1, 32);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glu.c: In function 'ml_gluProject':
- ml_glu.c:244:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 244 | win0 = copy_double(winX);
- | ^~~~~~~~~~~~~~~~~
- ml_glu.c:245:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 245 | win1 = copy_double(winY);
- | ^~~~~~~~~~~~~~~~~
- ml_glu.c:246:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 246 | win2 = copy_double(winZ);
- | ^~~~~~~~~~~~~~~~~
- ml_glu.c:247:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 247 | win = alloc_small(3, 0);
- | ^~~~~~~~~~~~~~~~
- ml_glu.c: In function 'ml_gluUnProject':
- ml_glu.c:299:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 299 | obj0 = copy_double(objX);
- | ^~~~~~~~~~~~~~~~~
- ml_glu.c:300:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 300 | obj1 = copy_double(objY);
- | ^~~~~~~~~~~~~~~~~
- ml_glu.c:301:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 301 | obj2 = copy_double(objZ);
- | ^~~~~~~~~~~~~~~~~
- ml_glu.c:302:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 302 | obj = alloc_small (3, 0);
- | ^~~~~~~~~~~~~~~~~
- ocamlrun ../src/var2def < raw_tags.var > raw_tags.h
- ocamlc -c -w s -ccopt "-c -O -I/usr/X11R6/include" ml_raw.c
- ml_raw.c:19:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 19 | extern void invalid_argument (char *) Noreturn;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:20:13: warning: "raise_out_of_memory" is deprecated: use "caml_raise_out_of_memory" instead
- 20 | extern void raise_out_of_memory (void) Noreturn;
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c: In function 'check_size':
- ml_raw.c:55:20: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 55 | invalid_argument (msg);
- | ^~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_read':
- ml_raw.c:92:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 92 | if (l<0 || s<0) invalid_argument("Raw.read");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:93:13: warning: "alloc_shr" is deprecated: use "caml_alloc_shr" instead
- 93 | ret = alloc_shr (l, 0);
- | ^~~~~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_read_string':
- ml_raw.c:164:20: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 164 | invalid_argument("Raw.read_string");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:165:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 165 | ret = alloc_string (l);
- | ^~~~~~~~~~~~~~~
- In file included from ml_raw.c:5:
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:166:13: note: in expansion of macro 'String_val'
- 166 | memcpy (String_val(ret), Bp_val(Addr_raw(raw))+s, l);
- | ^~~~~~~~~~
- In file included from ml_raw.c:3:
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- ml_raw.c: In function 'ml_raw_write_string':
- ml_raw.c:173:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 173 | int l = string_length(data);
- | ^~~~~~~~~~~~~~~~~~~~
- ml_raw.c:176:20: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 176 | invalid_argument("Raw.write_string");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_write':
- ml_raw.c:218:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 218 | if (s<0) invalid_argument("Raw.write");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_get_float':
- ml_raw.c:276:20: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 276 | return copy_double ((double) Float_raw(raw)[i]);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:278:20: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 278 | return copy_double (Double_raw(raw)[i]);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_read_float':
- ml_raw.c:288:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 288 | if (l<0 || s<0) invalid_argument("Raw.read_float");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:289:13: warning: "alloc_shr" is deprecated: use "caml_alloc_shr" instead
- 289 | ret = alloc_shr (l*sizeof(double)/sizeof(value), Double_array_tag);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_write_float':
- ml_raw.c:320:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 320 | if (s<0) invalid_argument("Raw.write_float");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_get_long':
- ml_raw.c:431:13: warning: "copy_nativeint" is deprecated: use "caml_copy_nativeint" instead
- 431 | return copy_nativeint (Int_raw(raw)[i]);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:434:13: warning: "copy_nativeint" is deprecated: use "caml_copy_nativeint" instead
- 434 | return copy_nativeint (Long_raw(raw)[i]);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_alloc':
- ml_raw.c:466:20: warning: "alloc_shr" is deprecated: use "caml_alloc_shr" instead
- 466 | data = alloc_shr ((size-1)/sizeof(value)+2, Abstract_tag);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:468:13: warning: "alloc_shr" is deprecated: use "caml_alloc_shr" instead
- 468 | } else data = alloc_shr ((size-1)/sizeof(value)+1, Abstract_tag);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:469:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 469 | raw = alloc_small (SIZE_RAW,0);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_alloc_static':
- ml_raw.c:486:20: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 486 | data = stat_alloc (size+sizeof(long));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:488:13: warning: "stat_alloc" is deprecated: use "caml_stat_alloc" instead
- 488 | } else data = stat_alloc (size);
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:489:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
- 489 | raw = alloc_small (SIZE_RAW, 0);
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c: In function 'ml_raw_free_static':
- ml_raw.c:500:13: warning: "invalid_argument" is deprecated: use "caml_invalid_argument" instead
- 500 | if (Static_raw(raw) != Val_int(1)) invalid_argument ("Raw.free_static");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_raw.c:501:13: warning: "stat_free" is deprecated: use "caml_stat_free" instead
- 501 | stat_free (Void_raw(raw));
- | ^~~~~~~~~~~~~~~~~~
- ocamlc -c -w s -ccopt "-c -O -I/usr/X11R6/include" ml_glarray.c
- ocamlc -c -w s -ccopt "-c -O -I/usr/X11R6/include" ml_glutess.c
- ml_glutess.c: In function 'push_vert':
- ml_glutess.c:98:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 98 | xx = copy_double(x); yy = copy_double(y); zz = copy_double(z);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ml_glutess.c:98:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- ml_glutess.c:98:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- ml_glutess.c:99:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 99 | vert = alloc_tuple(3);
- | ^~~~~~~~~~~~
- ml_glutess.c:103:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 103 | cons = alloc_tuple(2);
- | ^~~~~~~~~~~~
- ml_glutess.c:106:13: warning: "modify" is deprecated: use "caml_modify" instead
- 106 | modify(&Field(root,0), cons);
- | ^~~~~~~~~~~~~~~~~~~
- ml_glutess.c: In function 'push_list':
- ml_glutess.c:112:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 112 | value cons = alloc_tuple(2);
- | ^~~~~~~~~~~~~~~~~~
- ml_glutess.c:115:13: warning: "modify" is deprecated: use "caml_modify" instead
- 115 | modify(&Field(*prim,kind), cons);
- | ^~~~~~~~~~~~~~~~~~~~~~~
- ml_glutess.c: In function 'ml_gluTesselateAndReturn':
- ml_glutess.c:198:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 198 | res = alloc_tuple(3);
- | ^~~~~~~~~~~
- ocamlc -c -w s -ccopt "-c -O -I/usr/X11R6/include" ml_shader.c
- In file included from ml_shader.c:19:
- ml_shader.c: In function 'ml_glgetshaderinfolog':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 4 of 'glGetShaderInfoLog' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ml_shader.c:1217:85: note: in expansion of macro 'String_val'
- 1217 | glGetShaderInfoLog(Shader_object_val(shader), infologLength, &charsWritten, String_val(infoLog));
- | ^~~~~~~~~~
- In file included from /usr/include/GL/gl.h:2050,
- from ml_shader.c:14:
- /usr/include/GL/glext.h:747:98: note: expected 'GLchar *' {aka 'char *'} but argument is of type 'const char *'
- 747 | GLAPI void APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
- | ~~~~~~~~^~~~~~~
- ml_shader.c: In function 'ml_glgetprograminfolog':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 4 of 'glGetProgramInfoLog' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ml_shader.c:1241:88: note: in expansion of macro 'String_val'
- 1241 | glGetProgramInfoLog(Shader_program_val(program), infologLength, &charsWritten, String_val(infoLog));
- | ^~~~~~~~~~
- /usr/include/GL/glext.h:745:100: note: expected 'GLchar *' {aka 'char *'} but argument is of type 'const char *'
- 745 | GLAPI void APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
- | ~~~~~~~~^~~~~~~
- ocamlc -c -w s -I +labltk raw.mli
- ocamlc -c -w s -I +labltk raw.ml
- File "raw.ml", line 24, characters 13-15:
- 24 | if pos < 0 or (pos+len) * size > raw.size then invalid_arg "Raw.sub";
- ^^
- Alert deprecated: Stdlib.or
- Use (||) instead.
- ocamlc -c -w s -I +labltk gl.mli
- ocamlc -c -w s -I +labltk gl.ml
- ocamlc -c -w s -I +labltk glLight.mli
- ocamlc -c -w s -I +labltk glLight.ml
- ocamlc -c -w s -I +labltk glList.mli
- ocamlc -c -w s -I +labltk glList.ml
- ocamlc -c -w s -I +labltk glMap.mli
- ocamlc -c -w s -I +labltk glMap.ml
- ocamlc -c -w s -I +labltk glMat.mli
- ocamlc -c -w s -I +labltk glMat.ml
- File "glMat.ml", line 73, characters 10-22:
- 73 | let m = Array.create 4 [||] in
- ^^^^^^^^^^^^
- Alert deprecated: Stdlib.Array.create
- Use Array.make/ArrayLabels.make instead.
- ocamlc -c -w s -I +labltk glMisc.mli
- ocamlc -c -w s -I +labltk glMisc.ml
- File "glMisc.ml", line 26, characters 15-17:
- 26 | if plane < 0 or plane > 5 then invalid_arg "Gl.clip_plane";
- ^^
- Alert deprecated: Stdlib.or
- Use (||) instead.
- ocamlc -c -w s -I +labltk glPix.mli
- ocamlc -c -w s -I +labltk glPix.ml
- ocamlc -c -w s -I +labltk glClear.mli
- ocamlc -c -w s -I +labltk glClear.ml
- ocamlc -c -w s -I +labltk glTex.mli
- ocamlc -c -w s -I +labltk glTex.ml
- File "glTex.ml", line 111, characters 12-24:
- 111 | let arr = Array.create len Nativeint.zero in
- ^^^^^^^^^^^^
- Alert deprecated: Stdlib.Array.create
- Use Array.make/ArrayLabels.make instead.
- File "glTex.ml", line 116, characters 23-35:
- 116 | let gen_texture () = (gen_textures 1).(0)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label len was omitted in the application of this function.
- ocamlc -c -w s -I +labltk glDraw.mli
- ocamlc -c -w s -I +labltk glDraw.ml
- File "glDraw.ml", line 30, characters 28-30:
- 30 | if GlPix.height img <> 32 or GlPix.width img <> 32
- ^^
- Alert deprecated: Stdlib.or
- Use (||) instead.
- ocamlc -c -w s -I +labltk glFunc.mli
- ocamlc -c -w s -I +labltk glFunc.ml
- ocamlc -c -w s -I +labltk gluMisc.mli
- ocamlc -c -w s -I +labltk gluMisc.ml
- ocamlc -c -w s -I +labltk gluNurbs.mli
- ocamlc -c -w s -I +labltk gluNurbs.ml
- File "gluNurbs.ml", line 57, characters 23-25:
- 57 | if tl <> cl + torder or (sl - sorder) * target_size target <> tstride
- ^^
- Alert deprecated: Stdlib.or
- Use (||) instead.
- ocamlc -c -w s -I +labltk gluQuadric.mli
- ocamlc -c -w s -I +labltk gluQuadric.ml
- ocamlc -c -w s -I +labltk gluTess.mli
- ocamlc -c -w s -I +labltk gluTess.ml
- ocamlc -c -w s -I +labltk gluMat.mli
- ocamlc -c -w s -I +labltk gluMat.ml
- ocamlc -c -w s -I +labltk glArray.mli
- ocamlc -c -w s -I +labltk glArray.ml
- ocamlc -c -w s -I +labltk glShader.mli
- ocamlc -c -w s -I +labltk glShader.ml
- ocamlmklib -o lablgl ml_gl.o ml_glu.o ml_raw.o ml_glarray.o ml_glutess.o ml_shader.o raw.cmo gl.cmo glLight.cmo glList.cmo glMap.cmo glMat.cmo glMisc.cmo glPix.cmo glClear.cmo glTex.cmo glDraw.cmo glFunc.cmo gluMisc.cmo gluNurbs.cmo gluQuadric.cmo gluTess.cmo gluMat.cmo glArray.cmo glShader.cmo -lGL -lGLU
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
- cd LablGlut/src && make
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- ocamlc -c -w s -ccopt "-c -O -I/usr/X11R6/include -I../../src" wrap_glut.c
- wrap_glut.c: In function 'ml_glutMainLoop':
- wrap_glut.c:38:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 38 | enter_blocking_section ();
- | ^~~~~~~~~~~~~~~~
- wrap_glut.c:40:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 40 | leave_blocking_section ();
- | ^~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'ml_glutGetColor':
- wrap_glut.c:82:13: warning: "copy_double" is deprecated: use "caml_copy_double" instead
- 82 | ML_2_(glutGetColor, Int_val, Int_val, copy_double)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutDisplayFunc_cb':
- wrap_glut.c:292:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 292 | CB_0(glutDisplayFunc)
- | ^~~~~~~~~
- wrap_glut.c:292:13: warning: "callback" is deprecated: use "caml_callback" instead
- 292 | CB_0(glutDisplayFunc)
- | ^~~~~~~~~
- wrap_glut.c:292:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 292 | CB_0(glutDisplayFunc)
- | ^~~~~~~~~
- wrap_glut.c: In function 'glutVisibilityFunc_cb':
- wrap_glut.c:293:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 293 | CB_1(glutVisibilityFunc, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:293:13: warning: "callback" is deprecated: use "caml_callback" instead
- 293 | CB_1(glutVisibilityFunc, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:293:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 293 | CB_1(glutVisibilityFunc, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutCreateMenu_cb':
- wrap_glut.c:294:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 294 | CB_1_(glutCreateMenu,int, Val_int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:294:13: warning: "callback" is deprecated: use "caml_callback" instead
- 294 | CB_1_(glutCreateMenu,int, Val_int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:294:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 294 | CB_1_(glutCreateMenu,int, Val_int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutReshapeFunc_cb':
- wrap_glut.c:295:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 295 | CB_2(glutReshapeFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:295:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 295 | CB_2(glutReshapeFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:295:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 295 | CB_2(glutReshapeFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutKeyboardFunc_cb':
- wrap_glut.c:296:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 296 | CB_3(glutKeyboardFunc, unsigned char, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:296:13: warning: "callback3" is deprecated: use "caml_callback3" instead
- 296 | CB_3(glutKeyboardFunc, unsigned char, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:296:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 296 | CB_3(glutKeyboardFunc, unsigned char, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutMotionFunc_cb':
- wrap_glut.c:297:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 297 | CB_2(glutMotionFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:297:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 297 | CB_2(glutMotionFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:297:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 297 | CB_2(glutMotionFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutSpecialFunc_cb':
- wrap_glut.c:298:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 298 | CB_3(glutSpecialFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:298:13: warning: "callback3" is deprecated: use "caml_callback3" instead
- 298 | CB_3(glutSpecialFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:298:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 298 | CB_3(glutSpecialFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutPassiveMotionFunc_cb':
- wrap_glut.c:299:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 299 | CB_2(glutPassiveMotionFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:299:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 299 | CB_2(glutPassiveMotionFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:299:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 299 | CB_2(glutPassiveMotionFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutEntryFunc_cb':
- wrap_glut.c:300:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 300 | CB_1(glutEntryFunc, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:300:13: warning: "callback" is deprecated: use "caml_callback" instead
- 300 | CB_1(glutEntryFunc, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:300:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 300 | CB_1(glutEntryFunc, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutSpaceballMotionFunc_cb':
- wrap_glut.c:301:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 301 | CB_3(glutSpaceballMotionFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:301:13: warning: "callback3" is deprecated: use "caml_callback3" instead
- 301 | CB_3(glutSpaceballMotionFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:301:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 301 | CB_3(glutSpaceballMotionFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutSpaceballRotateFunc_cb':
- wrap_glut.c:302:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 302 | CB_3(glutSpaceballRotateFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:302:13: warning: "callback3" is deprecated: use "caml_callback3" instead
- 302 | CB_3(glutSpaceballRotateFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:302:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 302 | CB_3(glutSpaceballRotateFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutSpaceballButtonFunc_cb':
- wrap_glut.c:303:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 303 | CB_2(glutSpaceballButtonFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:303:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 303 | CB_2(glutSpaceballButtonFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:303:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 303 | CB_2(glutSpaceballButtonFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutButtonBoxFunc_cb':
- wrap_glut.c:304:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 304 | CB_2(glutButtonBoxFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:304:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 304 | CB_2(glutButtonBoxFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:304:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 304 | CB_2(glutButtonBoxFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutDialsFunc_cb':
- wrap_glut.c:305:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 305 | CB_2(glutDialsFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:305:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 305 | CB_2(glutDialsFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:305:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 305 | CB_2(glutDialsFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutTabletMotionFunc_cb':
- wrap_glut.c:306:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 306 | CB_2(glutTabletMotionFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:306:13: warning: "callback2" is deprecated: use "caml_callback2" instead
- 306 | CB_2(glutTabletMotionFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:306:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 306 | CB_2(glutTabletMotionFunc, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutTabletButtonFunc_cb':
- wrap_glut.c:307:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 307 | CB_4(glutTabletButtonFunc, int, Val_int, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:307:13: warning: "callbackN" is deprecated: use "caml_callbackN" instead
- 307 | CB_4(glutTabletButtonFunc, int, Val_int, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:307:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 307 | CB_4(glutTabletButtonFunc, int, Val_int, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutMenuStatusFunc_cb':
- wrap_glut.c:308:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 308 | CB_3(glutMenuStatusFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:308:13: warning: "callback3" is deprecated: use "caml_callback3" instead
- 308 | CB_3(glutMenuStatusFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:308:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 308 | CB_3(glutMenuStatusFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutOverlayDisplayFunc_cb':
- wrap_glut.c:309:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 309 | CB_0(glutOverlayDisplayFunc)
- | ^~~~~~~~~~~~~~~~
- wrap_glut.c:309:13: warning: "callback" is deprecated: use "caml_callback" instead
- 309 | CB_0(glutOverlayDisplayFunc)
- | ^~~~~~~~~~~~~~~~
- wrap_glut.c:309:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 309 | CB_0(glutOverlayDisplayFunc)
- | ^~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutMouseFunc_cb':
- wrap_glut.c:310:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 310 | CB_4(glutMouseFunc, int, Val_int, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:310:13: warning: "callbackN" is deprecated: use "caml_callbackN" instead
- 310 | CB_4(glutMouseFunc, int, Val_int, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:310:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 310 | CB_4(glutMouseFunc, int, Val_int, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutIdleFunc_cb':
- wrap_glut.c:311:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 311 | CB_0(glutIdleFunc)
- | ^~~~~~
- wrap_glut.c:311:13: warning: "callback" is deprecated: use "caml_callback" instead
- 311 | CB_0(glutIdleFunc)
- | ^~~~~~
- wrap_glut.c:311:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 311 | CB_0(glutIdleFunc)
- | ^~~~~~
- wrap_glut.c: In function 'glutTimerFunc_cb':
- wrap_glut.c:333:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 333 | leave_blocking_section ();
- | ^~~~~~~~~~~~~~~~
- wrap_glut.c:334:13: warning: "callback" is deprecated: use "caml_callback" instead
- 334 | callback (caml_glutTimerFunc_cb, (value) val);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:335:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 335 | enter_blocking_section ();
- | ^~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutWindowStatusFunc_cb':
- wrap_glut.c:402:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 402 | CB_1(glutWindowStatusFunc, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:402:13: warning: "callback" is deprecated: use "caml_callback" instead
- 402 | CB_1(glutWindowStatusFunc, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:402:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 402 | CB_1(glutWindowStatusFunc, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutKeyboardUpFunc_cb':
- wrap_glut.c:407:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 407 | CB_3(glutKeyboardUpFunc, unsigned char, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:407:13: warning: "callback3" is deprecated: use "caml_callback3" instead
- 407 | CB_3(glutKeyboardUpFunc, unsigned char, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:407:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 407 | CB_3(glutKeyboardUpFunc, unsigned char, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutSpecialUpFunc_cb':
- wrap_glut.c:408:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 408 | CB_3(glutSpecialUpFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:408:13: warning: "callback3" is deprecated: use "caml_callback3" instead
- 408 | CB_3(glutSpecialUpFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:408:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 408 | CB_3(glutSpecialUpFunc, int, Val_int, int, Val_int, int, Val_int)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c: In function 'glutJoystickFunc_cb':
- wrap_glut.c:411:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 411 | CB__4(glutJoystickFunc, unsigned int, Val_int, int, Val_int, int, Val_int, int, Val_int, Int_val)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:411:13: warning: "callbackN" is deprecated: use "caml_callbackN" instead
- 411 | CB__4(glutJoystickFunc, unsigned int, Val_int, int, Val_int, int, Val_int, int, Val_int, Int_val)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- wrap_glut.c:411:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 411 | CB__4(glutJoystickFunc, unsigned int, Val_int, int, Val_int, int, Val_int, int, Val_int, Int_val)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ocamlc -c -w s glut.mli
- ocamlc -c -w s glut.ml
- File "glut.ml", line 275, characters 4-24:
- 275 | _glutInitDisplayMode
- ^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels double_buffer, index, accum, alpha, depth, stencil, multisample, stereo, luminance were omitted in the application of this function.
- File "glut.ml", line 372, characters 7-17:
- 372 | in _setCursor ic
- ^^^^^^^^^^
- Warning 6 [labels-omitted]: label c was omitted in the application of this function.
- File "glut.ml", line 415, characters 25-36:
- 415 | let attachMenu ~button = _attachMenu (b2i button);;
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label button was omitted in the application of this function.
- File "glut.ml", line 418, characters 25-36:
- 418 | let detachMenu ~button = _detachMenu (b2i button);;
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label button was omitted in the application of this function.
- File "glut.ml", line 507, characters 6-8:
- 507 | cb value);
- ^^
- Warning 6 [labels-omitted]: label value was omitted in the application of this function.
- File "glut.ml", line 624, characters 7-11:
- 624 | in _get igtype ;;
- ^^^^
- Warning 6 [labels-omitted]: label igtype was omitted in the application of this function.
- File "glut.ml", line 626, characters 21-25:
- 626 | let getBool ~gtype = _get (match gtype with DISPLAY_MODE_POSSIBLE -> 400) <> 0
- ^^^^
- Warning 6 [labels-omitted]: label igtype was omitted in the application of this function.
- File "glut.ml", line 648, characters 7-17:
- 648 | in _deviceGet idgtype;;
- ^^^^^^^^^^
- Warning 6 [labels-omitted]: label idgtype was omitted in the application of this function.
- File "glut.ml", line 712, characters 31-47:
- 712 | let bitmapCharacter ~font ~c = _bitmapCharacter (f2i font) c;;
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, c were omitted in the application of this function.
- File "glut.ml", line 715, characters 27-39:
- 715 | let bitmapWidth ~font ~c = _bitmapWidth (f2i font) c;;
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, c were omitted in the application of this function.
- File "glut.ml", line 718, characters 31-47:
- 718 | let strokeCharacter ~font ~c = _strokeCharacter (f2i font) c;;
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, c were omitted in the application of this function.
- File "glut.ml", line 721, characters 27-39:
- 721 | let strokeWidth ~font ~c = _strokeWidth (f2i font) c;;
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, c were omitted in the application of this function.
- File "glut.ml", line 766, characters 30-43:
- 766 | let bitmapLength ~font ~str = _bitmapLength (f2i font) str;;
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, str were omitted in the application of this function.
- File "glut.ml", line 769, characters 30-43:
- 769 | let strokeLength ~font ~str = _strokeLength (f2i font) str;;
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, str were omitted in the application of this function.
- File "glut.ml", line 797, characters 30-46:
- 797 | let ignoreKeyRepeat ~ignore = _ignoreKeyRepeat (if ignore = true then 1 else 0)
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label ignore was omitted in the application of this function.
- File "glut.ml", line 801, characters 2-15:
- 801 | _setKeyRepeat (match mode with
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label mode was omitted in the application of this function.
- File "glut.ml", line 859, characters 4-16:
- 859 | _gameModeGet imode;;
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label mode was omitted in the application of this function.
- ocamlmklib -o lablglut wrap_glut.o glut.cmo -lglut -lGL -lGLU
- ocamlmktop -I . -I ../../src -o lablgluttop \
- lablglut.cma lablgl.cma
- make INSTALLDIR="/home/opam/.opam/4.14/lib/lablgl" real-lablglut
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- generate lablglut
- echo "#!/bin/sh" > lablglut
- echo "# toplevel with lablGL and LablGlut" >> lablglut
- if test -f dlllablglut.so; then \
- echo 'exec ocaml -I "/home/opam/.opam/4.14/lib/lablgl" lablgl.cma lablglut.cma $*' >> lablglut; \
- else echo 'exec "/home/opam/.opam/4.14/lib/lablgl/lablgluttop" -I "/home/opam/.opam/4.14/lib/lablgl" $*' >> lablglut; fi
- chmod 755 lablglut
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
Processing 2/4: [lablgl: make glutopt]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "glutopt" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05)
- cd src && make opt
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
- ocamlopt -c -I +labltk raw.ml
- File "raw.ml", line 24, characters 13-15:
- 24 | if pos < 0 or (pos+len) * size > raw.size then invalid_arg "Raw.sub";
- ^^
- Alert deprecated: Stdlib.or
- Use (||) instead.
- ocamlopt -c -I +labltk gl.ml
- ocamlopt -c -I +labltk glLight.ml
- ocamlopt -c -I +labltk glList.ml
- ocamlopt -c -I +labltk glMap.ml
- ocamlopt -c -I +labltk glMat.ml
- File "glMat.ml", line 73, characters 10-22:
- 73 | let m = Array.create 4 [||] in
- ^^^^^^^^^^^^
- Alert deprecated: Stdlib.Array.create
- Use Array.make/ArrayLabels.make instead.
- ocamlopt -c -I +labltk glMisc.ml
- File "glMisc.ml", line 26, characters 15-17:
- 26 | if plane < 0 or plane > 5 then invalid_arg "Gl.clip_plane";
- ^^
- Alert deprecated: Stdlib.or
- Use (||) instead.
- ocamlopt -c -I +labltk glPix.ml
- ocamlopt -c -I +labltk glClear.ml
- ocamlopt -c -I +labltk glTex.ml
- File "glTex.ml", line 111, characters 12-24:
- 111 | let arr = Array.create len Nativeint.zero in
- ^^^^^^^^^^^^
- Alert deprecated: Stdlib.Array.create
- Use Array.make/ArrayLabels.make instead.
- File "glTex.ml", line 116, characters 23-35:
- 116 | let gen_texture () = (gen_textures 1).(0)
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label len was omitted in the application of this function.
- ocamlopt -c -I +labltk glDraw.ml
- File "glDraw.ml", line 30, characters 28-30:
- 30 | if GlPix.height img <> 32 or GlPix.width img <> 32
- ^^
- Alert deprecated: Stdlib.or
- Use (||) instead.
- ocamlopt -c -I +labltk glFunc.ml
- ocamlopt -c -I +labltk gluMisc.ml
- ocamlopt -c -I +labltk gluNurbs.ml
- File "gluNurbs.ml", line 57, characters 23-25:
- 57 | if tl <> cl + torder or (sl - sorder) * target_size target <> tstride
- ^^
- Alert deprecated: Stdlib.or
- Use (||) instead.
- ocamlopt -c -I +labltk gluQuadric.ml
- ocamlopt -c -I +labltk gluTess.ml
- ocamlopt -c -I +labltk gluMat.ml
- ocamlopt -c -I +labltk glArray.ml
- ocamlopt -c -I +labltk glShader.ml
- ocamlmklib -o lablgl ml_gl.o ml_glu.o ml_raw.o ml_glarray.o ml_glutess.o ml_shader.o raw.cmx gl.cmx glLight.cmx glList.cmx glMap.cmx glMat.cmx glMisc.cmx glPix.cmx glClear.cmx glTex.cmx glDraw.cmx glFunc.cmx gluMisc.cmx gluNurbs.cmx gluQuadric.cmx gluTess.cmx gluMat.cmx glArray.cmx glShader.cmx -lGL -lGLU
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
- cd LablGlut/src && make opt
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- ocamlopt -c glut.ml
- File "glut.ml", line 275, characters 4-24:
- 275 | _glutInitDisplayMode
- ^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels double_buffer, index, accum, alpha, depth, stencil, multisample, stereo, luminance were omitted in the application of this function.
- File "glut.ml", line 372, characters 7-17:
- 372 | in _setCursor ic
- ^^^^^^^^^^
- Warning 6 [labels-omitted]: label c was omitted in the application of this function.
- File "glut.ml", line 415, characters 25-36:
- 415 | let attachMenu ~button = _attachMenu (b2i button);;
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label button was omitted in the application of this function.
- File "glut.ml", line 418, characters 25-36:
- 418 | let detachMenu ~button = _detachMenu (b2i button);;
- ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label button was omitted in the application of this function.
- File "glut.ml", line 507, characters 6-8:
- 507 | cb value);
- ^^
- Warning 6 [labels-omitted]: label value was omitted in the application of this function.
- File "glut.ml", line 624, characters 7-11:
- 624 | in _get igtype ;;
- ^^^^
- Warning 6 [labels-omitted]: label igtype was omitted in the application of this function.
- File "glut.ml", line 626, characters 21-25:
- 626 | let getBool ~gtype = _get (match gtype with DISPLAY_MODE_POSSIBLE -> 400) <> 0
- ^^^^
- Warning 6 [labels-omitted]: label igtype was omitted in the application of this function.
- File "glut.ml", line 648, characters 7-17:
- 648 | in _deviceGet idgtype;;
- ^^^^^^^^^^
- Warning 6 [labels-omitted]: label idgtype was omitted in the application of this function.
- File "glut.ml", line 712, characters 31-47:
- 712 | let bitmapCharacter ~font ~c = _bitmapCharacter (f2i font) c;;
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, c were omitted in the application of this function.
- File "glut.ml", line 715, characters 27-39:
- 715 | let bitmapWidth ~font ~c = _bitmapWidth (f2i font) c;;
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, c were omitted in the application of this function.
- File "glut.ml", line 718, characters 31-47:
- 718 | let strokeCharacter ~font ~c = _strokeCharacter (f2i font) c;;
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, c were omitted in the application of this function.
- File "glut.ml", line 721, characters 27-39:
- 721 | let strokeWidth ~font ~c = _strokeWidth (f2i font) c;;
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, c were omitted in the application of this function.
- File "glut.ml", line 766, characters 30-43:
- 766 | let bitmapLength ~font ~str = _bitmapLength (f2i font) str;;
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, str were omitted in the application of this function.
- File "glut.ml", line 769, characters 30-43:
- 769 | let strokeLength ~font ~str = _strokeLength (f2i font) str;;
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels font, str were omitted in the application of this function.
- File "glut.ml", line 797, characters 30-46:
- 797 | let ignoreKeyRepeat ~ignore = _ignoreKeyRepeat (if ignore = true then 1 else 0)
- ^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label ignore was omitted in the application of this function.
- File "glut.ml", line 801, characters 2-15:
- 801 | _setKeyRepeat (match mode with
- ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label mode was omitted in the application of this function.
- File "glut.ml", line 859, characters 4-16:
- 859 | _gameModeGet imode;;
- ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label mode was omitted in the application of this function.
- ocamlmklib -o lablglut wrap_glut.o glut.cmx -lglut -lGL -lGLU
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
-> compiled lablgl.1.05
Processing 3/4: [lablgl: rm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "-rf" "/home/opam/.opam/4.14/lib/lablgl" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/lablgl.1.05)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "-f" "/home/opam/.opam/4.14/bin/lablglut" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/lablgl.1.05)
-> removed lablgl.1.05
Processing 4/4: [lablgl: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" "-C" "src" "BINDIR=/home/opam/.opam/4.14/bin" "INSTALLDIR=/home/opam/.opam/4.14/lib/lablgl" "DLLDIR=/home/opam/.opam/4.14/lib/stublibs" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
- sed -e "s|@LABLGL_MLS@|raw gl glLight glList glMap glMat glMisc glPix glClear glTex glDraw glFunc gluMisc gluNurbs gluQuadric gluTess gluMat glArray glShader|" \
- -e "s|@TOGL_MLS@|togl|" \
- -e "s|@GLUT_MLS@|glut|" \
- -e "s|@GLLIBS@||" \
- -e "s|@TKLIBS@||" \
- -e "s|@GLUTLIBS@||" < build.ml.in > build.ml
- if test -d "/home/opam/.opam/4.14/lib/lablgl"; then : ; else mkdir -p "/home/opam/.opam/4.14/lib/lablgl"; fi
- cp build.ml raw.ml gl.ml glLight.ml glList.ml glMap.ml glMat.ml glMisc.ml glPix.ml glClear.ml glTex.ml glDraw.ml glFunc.ml gluMisc.ml gluNurbs.ml gluQuadric.ml gluTess.ml gluMat.ml glArray.ml glShader.ml raw.mli gl.mli glLight.mli glList.mli glMap.mli glMat.mli glMisc.mli glPix.mli glClear.mli glTex.mli glDraw.mli glFunc.mli gluMisc.mli gluNurbs.mli gluQuadric.mli gluTess.mli gluMat.mli glArray.mli glShader.mli "/home/opam/.opam/4.14/lib/lablgl"
- cp liblablgl.a "/home/opam/.opam/4.14/lib/lablgl"
- cd "/home/opam/.opam/4.14/lib/lablgl" && : liblablgl.a
- if test -f dlllablgl.so; then cp dlllablgl.so "/home/opam/.opam/4.14/lib/stublibs"; fi
- cp raw.cmi gl.cmi glLight.cmi glList.cmi glMap.cmi glMat.cmi glMisc.cmi glPix.cmi glClear.cmi glTex.cmi glDraw.cmi glFunc.cmi gluMisc.cmi gluNurbs.cmi gluQuadric.cmi gluTess.cmi gluMat.cmi glArray.cmi glShader.cmi lablgl.cma "/home/opam/.opam/4.14/lib/lablgl"
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
- cp lablgl.cmxa lablgl.a raw.cmx gl.cmx glLight.cmx glList.cmx glMap.cmx glMat.cmx glMisc.cmx glPix.cmx glClear.cmx glTex.cmx glDraw.cmx glFunc.cmx gluMisc.cmx gluNurbs.cmx gluQuadric.cmx gluTess.cmx gluMat.cmx glArray.cmx glShader.cmx "/home/opam/.opam/4.14/lib/lablgl"
- cd "/home/opam/.opam/4.14/lib/lablgl" && : lablgl.a
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/src'
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" "-C" "LablGlut/src" "BINDIR=/home/opam/.opam/4.14/bin" "INSTALLDIR=/home/opam/.opam/4.14/lib/lablgl" "DLLDIR=/home/opam/.opam/4.14/lib/stublibs" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05)
- make: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- if test -d "/home/opam/.opam/4.14/lib/lablgl"; then : ; else mkdir -p "/home/opam/.opam/4.14/lib/lablgl"; fi
- cp glut.ml glut.mli "/home/opam/.opam/4.14/lib/lablgl"
- cp liblablglut.a "/home/opam/.opam/4.14/lib/lablgl"
- cd "/home/opam/.opam/4.14/lib/lablgl" && : liblablglut.a
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- cp dlllablglut.so "/home/opam/.opam/4.14/lib/stublibs"
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- cp lablglut "/home/opam/.opam/4.14/bin"
- cp glut.cmi lablglut.cma "/home/opam/.opam/4.14/lib/lablgl"
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- cp lablglut.cmxa lablglut.a glut.cmx "/home/opam/.opam/4.14/lib/lablgl"
- cd "/home/opam/.opam/4.14/lib/lablgl" && : lablglut.a
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
- make: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/lablgl.1.05/LablGlut/src'
-> installed lablgl.1.05
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 04:49.47 ---> saved as "2a1ff4f016db53adccae3ad6c7d38468a9b57318e42868951a3b22fa70182466"
Job succeeded
2026-03-17 04:49.52: Job succeeded