- github
- ocaml
- opam-repository
- 3e0c39
- compilers,5.4,dune.3.22.2,revdeps,libbinaryen.111.0.0
(not at the head of any monitored branch or PR)
2026-04-13 14:42.18: New job: test libbinaryen.111.0.0 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit ba4685aeec7b28fde6af30c7b83004704c68c86a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4
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.2 3.22.2
RUN opam reinstall dune.3.22.2; \
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.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall libbinaryen.111.0.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'libbinaryen.111.0.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 libbinaryen.111.0.0) || true
RUN opam reinstall --with-test --verbose libbinaryen.111.0.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'libbinaryen.111.0.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-04-13 14:42.18: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4-dune.3.22.2-libbinaryen.111.0.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-13 14:42.18: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4)
(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.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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.2' && 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 libbinaryen.111.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'libbinaryen.111.0.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 libbinaryen.111.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose libbinaryen.111.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'libbinaryen.111.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-13 14:42.18: Waiting for resource in pool OCluster
2026-04-13 15:23.22: Waiting for worker…
2026-04-13 15:29.22: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
HEAD is now at ba4685aeec Merge pull request #29653 from yakobowski/camlidl
Merge made by the 'ort' strategy.
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4' locally
docker.io/ocaml/opam@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4: Pulling from ocaml/opam
8f6ad858d0a4: Already exists
9cb5e198c8cf: Pulling fs layer
2d346d36dcf2: Pulling fs layer
cdc35e289b8d: Pulling fs layer
aeb7244bb580: Pulling fs layer
fc1943254a0d: Pulling fs layer
84238c416f8e: Pulling fs layer
fbbfe75d3112: Pulling fs layer
221fdc5d9929: Pulling fs layer
1fec9149b52a: Pulling fs layer
9c6e52557f24: Pulling fs layer
aeb7244bb580: Waiting
8737f5036aae: Pulling fs layer
fc1943254a0d: Waiting
84238c416f8e: Waiting
d69c4074de14: Pulling fs layer
fbbfe75d3112: Waiting
1fec9149b52a: Waiting
8737f5036aae: Waiting
9c6e52557f24: Waiting
7237152a5f04: Pulling fs layer
fba4b414d8a0: Pulling fs layer
d69c4074de14: Waiting
7237152a5f04: Waiting
40d552afb3ef: Pulling fs layer
fba4b414d8a0: Waiting
077cc17dc8e4: Pulling fs layer
40d552afb3ef: Waiting
077cc17dc8e4: Waiting
169e1be36a55: Pulling fs layer
0a8a005097ab: Pulling fs layer
169e1be36a55: Waiting
caba3ec4b361: Pulling fs layer
0a8a005097ab: Waiting
6a364dc641f8: Pulling fs layer
4f4fb700ef54: Pulling fs layer
caba3ec4b361: Waiting
ab8052928cdc: Pulling fs layer
4f4fb700ef54: Waiting
6a364dc641f8: Waiting
f5717a28dd6a: Pulling fs layer
79233a9b9bed: Pulling fs layer
ab8052928cdc: Waiting
d832d53e7392: Pulling fs layer
f5717a28dd6a: Waiting
79233a9b9bed: Waiting
1872dad82243: Pulling fs layer
bfd849b08ba7: Pulling fs layer
d832d53e7392: Waiting
834a8024ef15: Pulling fs layer
98ccec79258b: Pulling fs layer
bfd849b08ba7: Waiting
834a8024ef15: Waiting
fb48f36a0542: Pulling fs layer
3688b13db8e7: Pulling fs layer
98ccec79258b: Waiting
a5c099f5f72c: Pulling fs layer
3688b13db8e7: Waiting
fb48f36a0542: Waiting
1ff1760de5b0: Pulling fs layer
a5c099f5f72c: Waiting
98eec6764aa5: Pulling fs layer
aa22ae69debd: Pulling fs layer
1ff1760de5b0: Waiting
98eec6764aa5: Waiting
12bfb7b962a2: Pulling fs layer
ec25ce9bb816: Pulling fs layer
beadd3cf7357: Pulling fs layer
aa22ae69debd: Waiting
ec25ce9bb816: Waiting
12bfb7b962a2: Waiting
d0d0c65a426d: Pulling fs layer
beadd3cf7357: Waiting
3574d8cdbcc5: Pulling fs layer
d0d0c65a426d: Waiting
b74552b4db71: Pulling fs layer
3574d8cdbcc5: Waiting
b74552b4db71: Waiting
27b1c047e252: Pulling fs layer
26897dca61f0: Pulling fs layer
27b1c047e252: Waiting
8cb12431740e: Pulling fs layer
0dec740ecd51: Pulling fs layer
26897dca61f0: Waiting
79518206bd07: Pulling fs layer
8cb12431740e: Waiting
0dec740ecd51: Waiting
79518206bd07: Waiting
9cb5e198c8cf: Download complete
9cb5e198c8cf: Pull complete
2d346d36dcf2: Download complete
2d346d36dcf2: Pull complete
aeb7244bb580: Verifying Checksum
aeb7244bb580: Download complete
cdc35e289b8d: Verifying Checksum
cdc35e289b8d: Download complete
84238c416f8e: Verifying Checksum
84238c416f8e: Download complete
fbbfe75d3112: Verifying Checksum
fbbfe75d3112: Download complete
cdc35e289b8d: Pull complete
aeb7244bb580: Pull complete
221fdc5d9929: Verifying Checksum
221fdc5d9929: Download complete
1fec9149b52a: Verifying Checksum
1fec9149b52a: Download complete
9c6e52557f24: Verifying Checksum
9c6e52557f24: Download complete
8737f5036aae: Verifying Checksum
8737f5036aae: Download complete
d69c4074de14: Verifying Checksum
d69c4074de14: Download complete
7237152a5f04: Verifying Checksum
7237152a5f04: Download complete
fba4b414d8a0: Verifying Checksum
fba4b414d8a0: Download complete
40d552afb3ef: Verifying Checksum
40d552afb3ef: Download complete
077cc17dc8e4: Verifying Checksum
077cc17dc8e4: Download complete
169e1be36a55: Verifying Checksum
169e1be36a55: Download complete
0a8a005097ab: Download complete
caba3ec4b361: Verifying Checksum
6a364dc641f8: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
ab8052928cdc: Verifying Checksum
ab8052928cdc: Download complete
f5717a28dd6a: Download complete
79233a9b9bed: Download complete
d832d53e7392: Verifying Checksum
d832d53e7392: Download complete
1872dad82243: Verifying Checksum
1872dad82243: Download complete
fc1943254a0d: Verifying Checksum
fc1943254a0d: Download complete
bfd849b08ba7: Download complete
834a8024ef15: Download complete
98ccec79258b: Verifying Checksum
98ccec79258b: Download complete
fb48f36a0542: Verifying Checksum
fb48f36a0542: Download complete
3688b13db8e7: Verifying Checksum
3688b13db8e7: Download complete
a5c099f5f72c: Verifying Checksum
a5c099f5f72c: Download complete
1ff1760de5b0: Download complete
aa22ae69debd: Download complete
ec25ce9bb816: Download complete
beadd3cf7357: Verifying Checksum
beadd3cf7357: Download complete
d0d0c65a426d: Download complete
3574d8cdbcc5: Verifying Checksum
3574d8cdbcc5: Download complete
b74552b4db71: Verifying Checksum
b74552b4db71: Download complete
27b1c047e252: Download complete
26897dca61f0: Verifying Checksum
26897dca61f0: Download complete
8cb12431740e: Verifying Checksum
8cb12431740e: Download complete
0dec740ecd51: Verifying Checksum
0dec740ecd51: Download complete
79518206bd07: Download complete
98eec6764aa5: Verifying Checksum
98eec6764aa5: Download complete
12bfb7b962a2: Verifying Checksum
12bfb7b962a2: Download complete
fc1943254a0d: Pull complete
84238c416f8e: Pull complete
fbbfe75d3112: Pull complete
221fdc5d9929: Pull complete
1fec9149b52a: Pull complete
9c6e52557f24: Pull complete
8737f5036aae: Pull complete
d69c4074de14: Pull complete
7237152a5f04: Pull complete
fba4b414d8a0: Pull complete
40d552afb3ef: Pull complete
077cc17dc8e4: Pull complete
169e1be36a55: Pull complete
0a8a005097ab: Pull complete
caba3ec4b361: Pull complete
6a364dc641f8: Pull complete
4f4fb700ef54: Pull complete
ab8052928cdc: Pull complete
f5717a28dd6a: Pull complete
79233a9b9bed: Pull complete
d832d53e7392: Pull complete
1872dad82243: Pull complete
bfd849b08ba7: Pull complete
834a8024ef15: Pull complete
98ccec79258b: Pull complete
fb48f36a0542: Pull complete
3688b13db8e7: Pull complete
a5c099f5f72c: Pull complete
1ff1760de5b0: Pull complete
98eec6764aa5: Pull complete
aa22ae69debd: Pull complete
12bfb7b962a2: Pull complete
ec25ce9bb816: Pull complete
beadd3cf7357: Pull complete
d0d0c65a426d: Pull complete
3574d8cdbcc5: Pull complete
b74552b4db71: Pull complete
27b1c047e252: Pull complete
26897dca61f0: Pull complete
8cb12431740e: Pull complete
0dec740ecd51: Pull complete
79518206bd07: Pull complete
Digest: sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4
Status: Downloaded newer image for ocaml/opam@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4
2026-04-13 15:29.29 ---> using "650db199dd47c38a0926a758262f0be95fb78e2d9a79cbdc2809fa2b15683d52" 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-04-13 15:29.29 ---> using "1d82b13dae11ba0e4ae4c53498d44d66e368b802cfcb77b29900c3af7e2a1562" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-13 15:29.29 ---> using "8fc56361284f52a58bad5297203dc12518b6d67d540112c1ecc4d982140daeca" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-13 15:29.29 ---> using "fe9db6e6aedfe8a888a2521b45017dcd4b4a70e85e324e4a3527adef84a23afd" 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-04-13 15:29.29 ---> using "3a79be73bc2436b5aae3b84f3727fd2fe0209a9b7334e20aac2d10fcd0f26769" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-13 15:29.30 ---> using "306e2765f803e9ac22f1023f023e8bba6e1f5296fc47a318acebb969ba1b1204" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-13 15:29.30 ---> using "9e9b4bad2baa72b9fad539bf23d04eb0f2a72097c5685706fe162459f8a36f61" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [122 kB]
- Fetched 213 kB in 1s (202 kB/s)
- Reading package lists...
-
2026-04-13 15:29.30 ---> using "2fb1ac5ca6037947ba1884eb3a92b9454761e371e0b3c1955630d8faadedabed" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-13 15:29.30 ---> using "44c7d7d7595c4a41e6aab53eb1a771058e5fb0ec8e90350b08cc9f23cb3d5ed9" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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.2' && 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.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-13 15:29.30 ---> using "7aefc73d6425e27bc34bfbdb99d4d7e80ada815df45ed1df4e5c28f9ea60f0d6" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall libbinaryen.111.0.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'libbinaryen.111.0.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
libbinaryen.111.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
- install conf-cmake 1 [required by libbinaryen]
- install csexp 1.5.2 [required by dune-configurator]
- install dune-configurator 3.22.2 [required by libbinaryen]
- install libbinaryen 111.0.0
The following system packages will first need to be installed:
cmake
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "cmake"
- Selecting previously unselected package cmake-data.
- (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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-cmake-data_3.31.6-2_all.deb ...
- Unpacking cmake-data (3.31.6-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../1-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libarchive13t64:amd64.
- Preparing to unpack .../2-libarchive13t64_3.7.4-4_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-4) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../3-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../4-librhash1_1.4.5-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../5-libuv1t64_1.50.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../6-cmake_3.31.6-2_amd64.deb ...
- Unpacking cmake (3.31.6-2) ...
- Setting up libuv1t64:amd64 (1.50.0-2) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- Setting up cmake-data (3.31.6-2) ...
- Setting up librhash1:amd64 (1.4.5-1) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libarchive13t64:amd64 (3.7.4-4) ...
- Setting up cmake (3.31.6-2) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-cmake.1 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-cmake.1
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.2 (cached)
-> retrieved libbinaryen.111.0.0 (https://opam.ocaml.org/cache)
-> installed dune-configurator.3.22.2
[ERROR] The compilation of libbinaryen.111.0.0 failed at "dune build -p libbinaryen -j 71".
#=== ERROR while compiling libbinaryen.111.0.0 ================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.1 | file:///home/opam/opam-repository
# path ~/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p libbinaryen -j 71
# exit-code 1
# env-file ~/.opam/log/libbinaryen-7-893a72.env
# output-file ~/.opam/log/libbinaryen-7-893a72.out
### output ###
# (cd _build/default && /usr/bin/cmake -S binaryen -B binaryen -G 'Unix Makefiles' -DCMAKE_CXX_FLAGS=-Wno-unused-variable -DBUILD_TESTS=OFF -DBUILD_TOOLS=OFF -DBUILD_STATIC_LIB=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=binaryen)
# -- The C compiler identification is GNU 14.2.0
# -- The CXX compiler identification is GNU 14.2.0
# -- Detecting C compiler ABI info
# -- Detecting C compiler ABI info - done
# -- Check for working C compiler: /usr/bin/cc - skipped
# -- Detecting C compile features
# -- Detecting C compile features - done
# -- Detecting CXX compiler ABI info
# -- Detecting CXX compiler ABI info - done
# -- Check for working CXX compiler: /usr/bin/c++ - skipped
# -- Detecting CXX compile features
# -- Detecting CXX compile features - done
# -- Building with -DBUILD_LLVM_DWARF
# -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
# -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
# -- Found Threads: TRUE
# -- Building with -Wall
# -- Building with -Werror
# -- Building with -Wextra
# -- Building with -Wno-unused-parameter
# -- Building with -fno-omit-frame-pointer
# -- Building with -fno-rtti
# -- Building with -Wno-implicit-int-float-conversion
# -- Building with -Wno-unknown-warning-option
# -- Building with -Wswitch
# -- Building with -Wimplicit-fallthrough
# -- Building with -Wnon-virtual-dtor
# -- Building with -fPIC
# -- Building with -O2
# -- Building with -UNDEBUG
# -- Building libbinaryen as shared library.
# -- Configuring done (1.4s)
# -- Generating done (0.1s)
# -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen
# File "dune", lines 80-108, characters 0-652:
# 80 | (rule
# 81 | (target dllbinaryen.so)
# 82 | (locks binaryen)
# .....
# 106 | -DCMAKE_INSTALL_PREFIX=binaryen)
# 107 | (run cmake --build binaryen --config Release -- -j4)
# 108 | (copy binaryen/lib/libbinaryen.so dllbinaryen.so)))))
# (cd _build/default && /usr/bin/cmake --build binaryen --config Release -- -j4)
# [ 0%] Building CXX object src/ir/CMakeFiles/ir.dir/ExpressionAnalyzer.cpp.o
# [ 0%] Building CXX object src/cfg/CMakeFiles/cfg.dir/Relooper.cpp.o
# [ 0%] Building CXX object src/asmjs/CMakeFiles/asmjs.dir/asm_v_wasm.cpp.o
# [ 1%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Binary.cpp.o
# [ 1%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ConvertUTF.cpp.o
# [ 1%] Building CXX object src/asmjs/CMakeFiles/asmjs.dir/asmangle.cpp.o
# [ 2%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DataExtractor.cpp.o
# [ 3%] Building CXX object src/asmjs/CMakeFiles/asmjs.dir/shared-constants.cpp.o
# [ 3%] Built target asmjs
# [ 4%] Building CXX object src/emscripten-optimizer/CMakeFiles/emscripten-optimizer.dir/optimizer-shared.cpp.o
# [ 4%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Debug.cpp.o
# [ 5%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DJB.cpp.o
# [ 5%] Building CXX object src/emscripten-optimizer/CMakeFiles/emscripten-optimizer.dir/parser.cpp.o
# [ 5%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Dwarf.cpp.o
# [ 6%] Building CXX object src/ir/CMakeFiles/ir.dir/ExpressionManipulator.cpp.o
# [ 7%] Building CXX object src/emscripten-optimizer/CMakeFiles/emscripten-optimizer.dir/simple_ast.cpp.o
# [ 8%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/dwarf2yaml.cpp.o
# [ 8%] Built target emscripten-optimizer
# [ 8%] Building CXX object src/passes/CMakeFiles/passes.dir/param-utils.cpp.o
# [ 8%] Built target cfg
# [ 9%] Building CXX object src/passes/CMakeFiles/passes.dir/pass.cpp.o
# [ 9%] Building CXX object src/ir/CMakeFiles/ir.dir/drop.cpp.o
# [ 9%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFAbbreviationDeclaration.cpp.o
# [ 9%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFAcceleratorTable.cpp.o
# [ 10%] Building CXX object src/ir/CMakeFiles/ir.dir/eh-utils.cpp.o
# [ 10%] Building CXX object src/support/CMakeFiles/support.dir/archive.cpp.o
# [ 10%] Building CXX object src/passes/CMakeFiles/passes.dir/test_passes.cpp.o
# [ 11%] Building CXX object src/support/CMakeFiles/support.dir/bits.cpp.o
# [ 11%] Building CXX object src/support/CMakeFiles/support.dir/colors.cpp.o
# [ 12%] Building CXX object src/support/CMakeFiles/support.dir/command-line.cpp.o
# [ 13%] Building CXX object src/passes/CMakeFiles/passes.dir/AlignmentLowering.cpp.o
# [ 13%] Building CXX object src/support/CMakeFiles/support.dir/debug.cpp.o
# [ 14%] Building CXX object src/support/CMakeFiles/support.dir/file.cpp.o
# [ 15%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFAddressRange.cpp.o
# [ 15%] Building CXX object src/ir/CMakeFiles/ir.dir/intrinsics.cpp.o
# [ 15%] Building CXX object src/support/CMakeFiles/support.dir/istring.cpp.o
# [ 15%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFCompileUnit.cpp.o
# [ 16%] Building CXX object src/ir/CMakeFiles/ir.dir/lubs.cpp.o
# [ 16%] Building CXX object src/support/CMakeFiles/support.dir/path.cpp.o
# [ 16%] Building CXX object src/passes/CMakeFiles/passes.dir/Asyncify.cpp.o
# [ 17%] Building CXX object src/support/CMakeFiles/support.dir/safe_integer.cpp.o
# [ 17%] Building CXX object src/support/CMakeFiles/support.dir/threads.cpp.o
# [ 18%] Building CXX object src/support/CMakeFiles/support.dir/utilities.cpp.o
# [ 19%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFContext.cpp.o
# [ 19%] Built target support
# [ 19%] Building CXX object src/wasm/CMakeFiles/wasm.dir/literal.cpp.o
# [ 19%] Building CXX object src/ir/CMakeFiles/ir.dir/memory-utils.cpp.o
# [ 20%] Building CXX object src/wasm/CMakeFiles/wasm.dir/parsing.cpp.o
# [ 20%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDataExtractor.cpp.o
# [ 21%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugAbbrev.cpp.o
# [ 21%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugAddr.cpp.o
# [ 21%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm.cpp.o
# [ 22%] Building CXX object src/ir/CMakeFiles/ir.dir/module-utils.cpp.o
# [ 23%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugAranges.cpp.o
# [ 23%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugArangeSet.cpp.o
# [ 24%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugFrame.cpp.o
# [ 25%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm-binary.cpp.o
# [ 25%] Building CXX object src/ir/CMakeFiles/ir.dir/names.cpp.o
# [ 25%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugInfoEntry.cpp.o
# [ 25%] Building CXX object src/ir/CMakeFiles/ir.dir/possible-contents.cpp.o
# [ 26%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugLine.cpp.o
# [ 27%] Building CXX object src/passes/CMakeFiles/passes.dir/AvoidReinterprets.cpp.o
# [ 27%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugLoc.cpp.o
# [ 27%] Building CXX object src/passes/CMakeFiles/passes.dir/CoalesceLocals.cpp.o
# [ 28%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugMacro.cpp.o
# [ 29%] Building CXX object src/ir/CMakeFiles/ir.dir/properties.cpp.o
# [ 29%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugPubTable.cpp.o
# [ 30%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugRangeList.cpp.o
# [ 30%] Building CXX object src/ir/CMakeFiles/ir.dir/LocalGraph.cpp.o
# [ 30%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugRnglists.cpp.o
# [ 31%] Building CXX object src/passes/CMakeFiles/passes.dir/CodePushing.cpp.o
# [ 31%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm-debug.cpp.o
# [ 32%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDie.cpp.o
# [ 33%] Building CXX object src/ir/CMakeFiles/ir.dir/LocalStructuralDominance.cpp.o
# [ 33%] Building CXX object src/ir/CMakeFiles/ir.dir/ReFinalize.cpp.o
# [ 33%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFEmitter.cpp.o
# [ 33%] Building CXX object src/passes/CMakeFiles/passes.dir/CodeFolding.cpp.o
# [ 33%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFExpression.cpp.o
# [ 34%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm-emscripten.cpp.o
# [ 35%] Building CXX object src/ir/CMakeFiles/ir.dir/stack-utils.cpp.o
# [ 36%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFFormValue.cpp.o
# [ 36%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm-interpreter.cpp.o
# [ 36%] Building CXX object src/ir/CMakeFiles/ir.dir/table-utils.cpp.o
# [ 36%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFGdbIndex.cpp.o
# [ 37%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm-io.cpp.o
# [ 38%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFListTable.cpp.o
# [ 38%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFTypeUnit.cpp.o
# [ 39%] Building CXX object src/ir/CMakeFiles/ir.dir/type-updating.cpp.o
# [ 39%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm-s-parser.cpp.o
# [ 40%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFUnit.cpp.o
# [ 41%] Building CXX object src/passes/CMakeFiles/passes.dir/ConstantFieldPropagation.cpp.o
# [ 41%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFUnitIndex.cpp.o
# [ 42%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFVerifier.cpp.o
# [ 42%] Building CXX object src/ir/CMakeFiles/ir.dir/module-splitting.cpp.o
# [ 42%] Building CXX object src/passes/CMakeFiles/passes.dir/ConstHoisting.cpp.o
# [ 42%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFVisitor.cpp.o
# [ 43%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm-stack.cpp.o
# [ 44%] Building CXX object src/passes/CMakeFiles/passes.dir/DataFlowOpts.cpp.o
# [ 45%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFYAML.cpp.o
# [ 45%] Built target ir
# [ 45%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm-type.cpp.o
# [ 45%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Error.cpp.o
# [ 46%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ErrorHandling.cpp.o
# [ 47%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wasm-validator.cpp.o
# [ 47%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/FormatVariadic.cpp.o
# [ 47%] Building CXX object src/passes/CMakeFiles/passes.dir/DeadArgumentElimination.cpp.o
# [ 48%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Hashing.cpp.o
# [ 48%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/LEB128.cpp.o
# [ 49%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/LineIterator.cpp.o
# [ 49%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wat-lexer.cpp.o
# [ 49%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/MCRegisterInfo.cpp.o
# [ 49%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/MD5.cpp.o
# [ 50%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/MemoryBuffer.cpp.o
# [ 50%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/NativeFormatting.cpp.o
# [ 51%] Building CXX object src/passes/CMakeFiles/passes.dir/DeadCodeElimination.cpp.o
# [ 52%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ObjectFile.cpp.o
# [ 52%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/obj2yaml_Error.cpp.o
# [ 52%] Building CXX object src/passes/CMakeFiles/passes.dir/DeAlign.cpp.o
# [ 53%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Optional.cpp.o
# [ 53%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Path.cpp.o
# [ 54%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/raw_ostream.cpp.o
# [ 54%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ScopedPrinter.cpp.o
# [ 55%] Building CXX object src/passes/CMakeFiles/passes.dir/DeNaN.cpp.o
# [ 55%] Building CXX object src/passes/CMakeFiles/passes.dir/Directize.cpp.o
# [ 56%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/SmallVector.cpp.o
# [ 56%] Building CXX object src/passes/CMakeFiles/passes.dir/DuplicateImportElimination.cpp.o
# [ 56%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/SourceMgr.cpp.o
# [ 57%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/StringMap.cpp.o
# [ 58%] Building CXX object src/passes/CMakeFiles/passes.dir/DuplicateFunctionElimination.cpp.o
# [ 58%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/StringRef.cpp.o
# [ 58%] Building CXX object src/passes/CMakeFiles/passes.dir/DWARF.cpp.o
# [ 59%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/SymbolicFile.cpp.o
# [ 60%] Building CXX object src/passes/CMakeFiles/passes.dir/ExtractFunction.cpp.o
# [ 60%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Twine.cpp.o
# [ 61%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/UnicodeCaseFold.cpp.o
# [ 61%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/WithColor.cpp.o
# [ 61%] Building CXX object src/passes/CMakeFiles/passes.dir/Flatten.cpp.o
# [ 61%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/YAMLParser.cpp.o
# [ 62%] Building CXX object src/passes/CMakeFiles/passes.dir/FuncCastEmulation.cpp.o
# [ 63%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/YAMLTraits.cpp.o
# [ 63%] Building CXX object src/passes/CMakeFiles/passes.dir/GenerateDynCalls.cpp.o
# [ 63%] Built target llvm_dwarf
# [ 64%] Building CXX object src/passes/CMakeFiles/passes.dir/GlobalEffects.cpp.o
# [ 64%] Building CXX object src/passes/CMakeFiles/passes.dir/GlobalRefining.cpp.o
# [ 65%] Building CXX object src/passes/CMakeFiles/passes.dir/GlobalStructInference.cpp.o
# [ 65%] Building CXX object src/passes/CMakeFiles/passes.dir/GlobalTypeOptimization.cpp.o
# [ 66%] Building CXX object src/passes/CMakeFiles/passes.dir/GUFA.cpp.o
# [ 66%] Building CXX object src/passes/CMakeFiles/passes.dir/Heap2Local.cpp.o
# [ 67%] Building CXX object src/passes/CMakeFiles/passes.dir/I64ToI32Lowering.cpp.o
# [ 67%] Building CXX object src/passes/CMakeFiles/passes.dir/Inlining.cpp.o
# [ 68%] Building CXX object src/passes/CMakeFiles/passes.dir/InstrumentLocals.cpp.o
# [ 68%] Building CXX object src/passes/CMakeFiles/passes.dir/InstrumentMemory.cpp.o
# [ 68%] Building CXX object src/passes/CMakeFiles/passes.dir/Intrinsics.cpp.o
# [ 69%] Building CXX object src/passes/CMakeFiles/passes.dir/JSPI.cpp.o
# [ 69%] Building CXX object src/passes/CMakeFiles/passes.dir/LegalizeJSInterface.cpp.o
# [ 70%] Building CXX object src/passes/CMakeFiles/passes.dir/LimitSegments.cpp.o
# [ 70%] Building CXX object src/passes/CMakeFiles/passes.dir/LocalCSE.cpp.o
# [ 71%] Building CXX object src/passes/CMakeFiles/passes.dir/LocalSubtyping.cpp.o
# [ 71%] Building CXX object src/passes/CMakeFiles/passes.dir/LogExecution.cpp.o
# [ 72%] Building CXX object src/passes/CMakeFiles/passes.dir/LoopInvariantCodeMotion.cpp.o
# [ 72%] Building CXX object src/passes/CMakeFiles/passes.dir/Memory64Lowering.cpp.o
# [ 73%] Building CXX object src/passes/CMakeFiles/passes.dir/MemoryPacking.cpp.o
# [ 73%] Building CXX object src/passes/CMakeFiles/passes.dir/MergeBlocks.cpp.o
# [ 74%] Building CXX object src/passes/CMakeFiles/passes.dir/MergeSimilarFunctions.cpp.o
# [ 74%] Building CXX object src/passes/CMakeFiles/passes.dir/MergeLocals.cpp.o
# [ 75%] Building CXX object src/passes/CMakeFiles/passes.dir/Metrics.cpp.o
# [ 75%] Building CXX object src/passes/CMakeFiles/passes.dir/MinifyImportsAndExports.cpp.o
# [ 76%] Building CXX object src/passes/CMakeFiles/passes.dir/Monomorphize.cpp.o
# [ 76%] Building CXX object src/passes/CMakeFiles/passes.dir/MultiMemoryLowering.cpp.o
# [ 76%] Building CXX object src/passes/CMakeFiles/passes.dir/NameList.cpp.o
# [ 77%] Building CXX object src/passes/CMakeFiles/passes.dir/NameTypes.cpp.o
# [ 77%] Building CXX object src/passes/CMakeFiles/passes.dir/OnceReduction.cpp.o
# [ 78%] Building CXX object src/passes/CMakeFiles/passes.dir/OptimizeAddedConstants.cpp.o
# [ 78%] Building CXX object src/passes/CMakeFiles/passes.dir/OptimizeCasts.cpp.o
# [ 79%] Building CXX object src/passes/CMakeFiles/passes.dir/OptimizeInstructions.cpp.o
# [ 79%] Building CXX object src/passes/CMakeFiles/passes.dir/OptimizeForJS.cpp.o
# [ 80%] Building CXX object src/passes/CMakeFiles/passes.dir/PickLoadSigns.cpp.o
# [ 80%] Building CXX object src/passes/CMakeFiles/passes.dir/Poppify.cpp.o
# [ 81%] Building CXX object src/passes/CMakeFiles/passes.dir/PostEmscripten.cpp.o
# [ 81%] Building CXX object src/passes/CMakeFiles/passes.dir/Precompute.cpp.o
# [ 82%] Building CXX object src/passes/CMakeFiles/passes.dir/Print.cpp.o
# [ 82%] Building CXX object src/passes/CMakeFiles/passes.dir/PrintCallGraph.cpp.o
# [ 83%] Building CXX object src/passes/CMakeFiles/passes.dir/PrintFeatures.cpp.o
# [ 83%] Building CXX object src/passes/CMakeFiles/passes.dir/PrintFunctionMap.cpp.o
# [ 84%] Building CXX object src/passes/CMakeFiles/passes.dir/RoundTrip.cpp.o
# [ 84%] Building CXX object src/passes/CMakeFiles/passes.dir/SetGlobals.cpp.o
# [ 85%] Building CXX object src/passes/CMakeFiles/passes.dir/StackIR.cpp.o
# [ 85%] Building CXX object src/passes/CMakeFiles/passes.dir/SignaturePruning.cpp.o
# [ 85%] Building CXX object src/passes/CMakeFiles/passes.dir/SignatureRefining.cpp.o
# [ 86%] Building CXX object src/passes/CMakeFiles/passes.dir/SignExtLowering.cpp.o
# [ 86%] Building CXX object src/passes/CMakeFiles/passes.dir/Strip.cpp.o
# [ 87%] Building CXX object src/passes/CMakeFiles/passes.dir/StripTargetFeatures.cpp.o
# [ 87%] Building CXX object src/passes/CMakeFiles/passes.dir/RedundantSetElimination.cpp.o
# [ 88%] Building CXX object src/passes/CMakeFiles/passes.dir/RemoveImports.cpp.o
# [ 88%] Building CXX object src/passes/CMakeFiles/passes.dir/RemoveMemory.cpp.o
# [ 89%] Building CXX object src/passes/CMakeFiles/passes.dir/RemoveNonJSOps.cpp.o
# [ 89%] Building CXX object src/passes/CMakeFiles/passes.dir/RemoveUnusedBrs.cpp.o
# [ 90%] Building CXX object src/passes/CMakeFiles/passes.dir/RemoveUnusedNames.cpp.o
# [ 90%] Building CXX object src/passes/CMakeFiles/passes.dir/RemoveUnusedModuleElements.cpp.o
# [ 91%] Building CXX object src/passes/CMakeFiles/passes.dir/ReorderFunctions.cpp.o
# [ 91%] Building CXX object src/passes/CMakeFiles/passes.dir/ReorderGlobals.cpp.o
# [ 92%] Building CXX object src/passes/CMakeFiles/passes.dir/ReorderLocals.cpp.o
# [ 92%] Building CXX object src/passes/CMakeFiles/passes.dir/ReReloop.cpp.o
# [ 93%] Building CXX object src/passes/CMakeFiles/passes.dir/TrapMode.cpp.o
# [ 93%] Building CXX object src/passes/CMakeFiles/passes.dir/TypeRefining.cpp.o
# [ 93%] Building CXX object src/passes/CMakeFiles/passes.dir/SafeHeap.cpp.o
# [ 94%] Building CXX object src/passes/CMakeFiles/passes.dir/SimplifyGlobals.cpp.o
# [ 94%] Building CXX object src/passes/CMakeFiles/passes.dir/SimplifyLocals.cpp.o
# [ 95%] Building CXX object src/passes/CMakeFiles/passes.dir/Souperify.cpp.o
# [ 95%] Building CXX object src/passes/CMakeFiles/passes.dir/SpillPointers.cpp.o
# [ 96%] Building CXX object src/passes/CMakeFiles/passes.dir/StackCheck.cpp.o
# [ 96%] Building CXX object src/passes/CMakeFiles/passes.dir/SSAify.cpp.o
# [ 97%] Building CXX object src/passes/CMakeFiles/passes.dir/Untee.cpp.o
# [ 97%] Building CXX object src/passes/CMakeFiles/passes.dir/Vacuum.cpp.o
# [ 98%] Building CXX object src/passes/CMakeFiles/passes.dir/WasmIntrinsics.cpp.o
# [ 98%] Built target passes
# In file included from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:25:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:62:3: error: 'uint64_t' does not name a type
# 62 | uint64_t n;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:20:1: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# 19 | #include <iterator>
# +++ |+#include <cstdint>
# 20 | #include <optional>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:17: error: 'uint64_t' was not declared in this scope
# 75 | std::optional<uint64_t> nanPayload;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:25: error: template argument 1 is invalid
# 75 | std::optional<uint64_t> nanPayload;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:17: error: 'uint64_t' was not declared in this scope
# 127 | std::optional<uint64_t> getU64() const;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:25: error: template argument 1 is invalid
# 127 | std::optional<uint64_t> getU64() const;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:17: error: 'uint64_t' was not declared in this scope
# 129 | std::optional<uint64_t> getI64() const;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:25: error: template argument 1 is invalid
# 129 | std::optional<uint64_t> getI64() const;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:17: error: 'uint32_t' was not declared in this scope
# 130 | std::optional<uint32_t> getU32() const;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:17: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:25: error: template argument 1 is invalid
# 130 | std::optional<uint32_t> getU32() const;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:17: error: 'uint32_t' was not declared in this scope
# 132 | std::optional<uint32_t> getI32() const;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:17: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:25: error: template argument 1 is invalid
# 132 | std::optional<uint32_t> getI32() const;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:66:3: error: 'uint8_t' does not name a type
# 66 | uint8_t peek() const { return next()[0]; }
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:26:1: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# 25 | #include "wat-lexer.h"
# +++ |+#include <cstdint>
# 26 |
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:125:3: error: 'uint64_t' does not name a type
# 125 | uint64_t n;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:125:3: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:135:3: error: 'uint64_t' does not name a type
# 135 | uint64_t n = 0;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:135:3: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<wasm::WATParser::{anonymous}::LexIntResult> wasm::WATParser::{anonymous}::LexIntCtx::lexedRaw()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:145:44: error: too many initializers for 'wasm::WATParser::{anonymous}::LexIntResult'
# 145 | return LexIntResult{*basic, 0, NoSign};
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<wasm::WATParser::{anonymous}::LexIntResult> wasm::WATParser::{anonymous}::LexIntCtx::lexed()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:155:50: error: 'n' was not declared in this scope; did you mean 'yn'?
# 155 | return LexIntResult{*basic, sign == Neg ? -n : n, sign};
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'bool wasm::WATParser::{anonymous}::LexIntCtx::takeDigit()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:172:29: error: 'peek' was not declared in this scope
# 172 | if (auto d = getDigit(peek())) {
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:174:9: error: 'uint64_t' was not declared in this scope
# 174 | uint64_t newN = n * 10 + *d;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:174:9: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:175:13: error: 'newN' was not declared in this scope
# 175 | if (newN < n) {
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:175:20: error: 'n' was not declared in this scope; did you mean 'yn'?
# 175 | if (newN < n) {
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:178:9: error: 'n' was not declared in this scope; did you mean 'yn'?
# 178 | n = newN;
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:178:13: error: 'newN' was not declared in this scope
# 178 | n = newN;
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'bool wasm::WATParser::{anonymous}::LexIntCtx::takeHexdigit()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:187:32: error: 'peek' was not declared in this scope
# 187 | if (auto h = getHexDigit(peek())) {
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:189:9: error: 'uint64_t' was not declared in this scope
# 189 | uint64_t newN = n * 16 + *h;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:189:9: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:190:13: error: 'newN' was not declared in this scope
# 190 | if (newN < n) {
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:190:20: error: 'n' was not declared in this scope; did you mean 'yn'?
# 190 | if (newN < n) {
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:193:9: error: 'n' was not declared in this scope; did you mean 'yn'?
# 193 | n = newN;
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:193:13: error: 'newN' was not declared in this scope
# 193 | n = newN;
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'void wasm::WATParser::{anonymous}::LexIntCtx::take(const wasm::WATParser::{anonymous}::LexIntResult&)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:202:5: error: 'n' was not declared in this scope; did you mean 'yn'?
# 202 | n = res.n;
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:202:13: error: 'const struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 202 | n = res.n;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:17: error: 'uint64_t' was not declared in this scope
# 212 | std::optional<uint64_t> nanPayload;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:25: error: template argument 1 is invalid
# 212 | std::optional<uint64_t> nanPayload;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:17: error: 'uint64_t' was not declared in this scope
# 217 | std::optional<uint64_t> nanPayload;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:25: error: template argument 1 is invalid
# 217 | std::optional<uint64_t> nanPayload;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:301:22: error: 'uint64_t' has not been declared
# 301 | bool appendUnicode(uint64_t u) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'void wasm::WATParser::{anonymous}::LexStrCtx::takeChar()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:285:25: error: 'peek' was not declared in this scope
# 285 | *escapeBuilder << peek();
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'bool wasm::WATParser::{anonymous}::LexStrCtx::appendUnicode(int)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:307:25: error: 'uint8_t' was not declared in this scope
# 307 | *escapeBuilder << uint8_t(u);
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:307:25: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:310:25: error: 'uint8_t' was not declared in this scope
# 310 | *escapeBuilder << uint8_t(0b11000000 | ((u >> 6) & 0b00011111));
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:310:25: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:314:25: error: 'uint8_t' was not declared in this scope
# 314 | *escapeBuilder << uint8_t(0b11100000 | ((u >> 12) & 0b00001111));
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:314:25: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:319:25: error: 'uint8_t' was not declared in this scope
# 319 | *escapeBuilder << uint8_t(0b11110000 | ((u >> 18) & 0b00000111));
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:319:25: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::optional<wasm::WATParser::{anonymous}::LexFloatResult> wasm::WATParser::{anonymous}::float_(std::string_view)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:582:33: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 582 | ctx.nanPayload = lexed->n;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::optional<wasm::WATParser::{anonymous}::LexResult> wasm::WATParser::{anonymous}::idchar(std::string_view)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:611:3: error: 'uint8_t' was not declared in this scope
# 611 | uint8_t c = ctx.peek();
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:611:3: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:612:15: error: 'c' was not declared in this scope
# 612 | if (('0' <= c && c <= '9') || ('A' <= c && c <= 'Z') ||
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::optional<wasm::WATParser::{anonymous}::LexStrResult> wasm::WATParser::{anonymous}::str(std::string_view)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:713:39: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 713 | if (!ctx.appendUnicode(lexed->n)) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:725:38: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 725 | ctx.appendEscaped(char(lexed.n));
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:11: error: 'uint8_t' was not declared in this scope
# 729 | if (uint8_t c = ctx.peek(); c >= 0x20 && c != 0x7F) {
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:11: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:35: error: 'c' was not declared in this scope
# 729 | if (uint8_t c = ctx.peek(); c >= 0x20 && c != 0x7F) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::optional<wasm::WATParser::{anonymous}::LexResult> wasm::WATParser::{anonymous}::keyword(std::string_view)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:752:3: error: 'uint8_t' was not declared in this scope
# 752 | uint8_t start = ctx.peek();
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:752:3: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:753:14: error: 'start' was not declared in this scope; did you mean 'str'?
# 753 | if ('a' <= start && start <= 'z') {
# | ^~~~~
# | str
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:15: error: 'uint64_t' was not declared in this scope
# 766 | std::optional<uint64_t> Token::getU64() const {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:15: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:23: error: template argument 1 is invalid
# 766 | std::optional<uint64_t> Token::getU64() const {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'int wasm::WATParser::Token::getU64() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:769:19: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 769 | return tok->n;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<long int> wasm::WATParser::Token::getS64() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:20: error: 'INT64_MIN' was not declared in this scope
# 778 | if (uint64_t(INT64_MIN) <= tok->n || tok->n == 0) {
# | ^~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:11: error: 'uint64_t' was not declared in this scope
# 778 | if (uint64_t(INT64_MIN) <= tok->n || tok->n == 0) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:11: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:39: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 778 | if (uint64_t(INT64_MIN) <= tok->n || tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:49: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 778 | if (uint64_t(INT64_MIN) <= tok->n || tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:779:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 779 | return int64_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 783 | if (tok->n <= uint64_t(INT64_MAX)) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:30: error: 'INT64_MAX' was not declared in this scope
# 783 | if (tok->n <= uint64_t(INT64_MAX)) {
# | ^~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:30: note: 'INT64_MAX' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:21: error: 'uint64_t' was not declared in this scope
# 783 | if (tok->n <= uint64_t(INT64_MAX)) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:21: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:784:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 784 | return int64_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:15: error: 'uint64_t' was not declared in this scope
# 792 | std::optional<uint64_t> Token::getI64() const {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:15: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:23: error: template argument 1 is invalid
# 792 | std::optional<uint64_t> Token::getI64() const {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'int wasm::WATParser::Token::getI64() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:794:12: error: invalid type argument of unary '*' (have 'int')
# 794 | return *n;
# | ^~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:15: error: 'uint32_t' was not declared in this scope
# 802 | std::optional<uint32_t> Token::getU32() const {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:15: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:23: error: template argument 1 is invalid
# 802 | std::optional<uint32_t> Token::getU32() const {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'int wasm::WATParser::Token::getU32() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:37: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 804 | if (tok->sign == NoSign && tok->n <= UINT32_MAX) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:42: error: 'UINT32_MAX' was not declared in this scope
# 804 | if (tok->sign == NoSign && tok->n <= UINT32_MAX) {
# | ^~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:42: note: 'UINT32_MAX' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:805:27: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 805 | return int32_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<int> wasm::WATParser::Token::getS32() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:20: error: 'INT32_MIN' was not declared in this scope
# 815 | if (uint64_t(INT32_MIN) <= tok->n || tok->n == 0) {
# | ^~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:11: error: 'uint64_t' was not declared in this scope
# 815 | if (uint64_t(INT32_MIN) <= tok->n || tok->n == 0) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:11: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:39: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 815 | if (uint64_t(INT32_MIN) <= tok->n || tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:49: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 815 | if (uint64_t(INT32_MIN) <= tok->n || tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:816:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 816 | return int32_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 819 | if (tok->n <= uint64_t(INT32_MAX)) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:30: error: 'INT32_MAX' was not declared in this scope
# 819 | if (tok->n <= uint64_t(INT32_MAX)) {
# | ^~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:30: note: 'INT32_MAX' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:21: error: 'uint64_t' was not declared in this scope
# 819 | if (tok->n <= uint64_t(INT32_MAX)) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:21: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:820:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 820 | return int32_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:15: error: 'uint32_t' was not declared in this scope
# 827 | std::optional<uint32_t> Token::getI32() const {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:15: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:23: error: template argument 1 is invalid
# 827 | std::optional<uint32_t> Token::getI32() const {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'int wasm::WATParser::Token::getI32() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:829:12: error: invalid type argument of unary '*' (have 'int')
# 829 | return *n;
# | ^~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:832:12: error: 'uint32_t' was not declared in this scope
# 832 | return uint32_t(*n);
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:832:12: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<double> wasm::WATParser::Token::getF64() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:839:13: error: 'uint64_t' does not name a type
# 839 | constexpr uint64_t payloadMask = (1ull << signif) - 1;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:839:13: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:840:13: error: 'uint64_t' does not name a type
# 840 | constexpr uint64_t nanDefault = 1ull << (signif - 1);
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:840:13: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:845:7: error: 'uint64_t' was not declared in this scope
# 845 | uint64_t payload = tok->nanPayload ? *tok->nanPayload : nanDefault;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:845:7: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:846:11: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
# 846 | if (payload == 0 || payload > payloadMask) {
# | ^~~~~~~
# | setpayload
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:846:37: error: 'payloadMask' was not declared in this scope
# 846 | if (payload == 0 || payload > payloadMask) {
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:850:15: error: expected ';' before 'bits'
# 850 | uint64_t bits;
# | ^~~~~
# | ;
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:851:28: error: 'bits' was not declared in this scope
# 851 | static_assert(sizeof(bits) == sizeof(d));
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:853:23: error: 'payloadMask' was not declared in this scope
# 853 | bits = (bits & ~payloadMask) | payload;
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:853:38: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
# 853 | bits = (bits & ~payloadMask) | payload;
# | ^~~~~~~
# | setpayload
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:860:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 860 | if (tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:863:34: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 863 | return double(int64_t(tok->n));
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:865:24: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 865 | return double(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<float> wasm::WATParser::Token::getF32() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:872:13: error: 'uint32_t' does not name a type
# 872 | constexpr uint32_t payloadMask = (1u << signif) - 1;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:872:13: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:873:13: error: 'uint64_t' does not name a type
# 873 | constexpr uint64_t nanDefault = 1ull << (signif - 1);
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:873:13: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:878:7: error: 'uint64_t' was not declared in this scope
# 878 | uint64_t payload = tok->nanPayload ? *tok->nanPayload : nanDefault;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:878:7: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:879:11: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
# 879 | if (payload == 0 || payload > payloadMask) {
# | ^~~~~~~
# | setpayload
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:879:37: error: 'payloadMask' was not declared in this scope
# 879 | if (payload == 0 || payload > payloadMask) {
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:883:7: error: 'uint32_t' was not declared in this scope
# 883 | uint32_t bits;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:883:7: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:884:28: error: 'bits' was not declared in this scope
# 884 | static_assert(sizeof(bits) == sizeof(f));
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:886:23: error: 'payloadMask' was not declared in this scope
# 886 | bits = (bits & ~payloadMask) | payload;
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:886:38: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
# 886 | bits = (bits & ~payloadMask) | payload;
# | ^~~~~~~
# | setpayload
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:893:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 893 | if (tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:896:33: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 896 | return float(int64_t(tok->n));
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:898:23: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 898 | return float(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'void wasm::WATParser::Lexer::lexToken()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:929:36: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 929 | tok = Token{t->span, IntTok{t->n, t->sign}};
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'bool wasm::WATParser::IntTok::operator==(const wasm::WATParser::IntTok&) const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:964:10: error: 'n' was not declared in this scope; did you mean 'yn'?
# 964 | return n == other.n && sign == other.sign;
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:964:21: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 964 | return n == other.n && sign == other.sign;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::ostream& wasm::WATParser::operator<<(std::ostream&, const IntTok&)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:1002:76: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 1002 | return os << (tok.sign == Pos ? "+" : tok.sign == Neg ? "-" : "") << tok.n;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::ostream& wasm::WATParser::operator<<(std::ostream&, const FloatTok&)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:1009:44: error: invalid type argument of unary '*' (have 'int')
# 1009 | return os << "nan:0x" << std::hex << *tok.nanPayload << std::dec;
# | ^~~~~~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:110:20: error: 'std::optional<int> wasm::WATParser::{anonymous}::getHexDigit(char)' defined but not used [-Werror=unused-function]
# 110 | std::optional<int> getHexDigit(char c) {
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:103:20: error: 'std::optional<int> wasm::WATParser::{anonymous}::getDigit(char)' defined but not used [-Werror=unused-function]
# 103 | std::optional<int> getDigit(char c) {
# | ^~~~~~~~
# cc1plus: note: unrecognized command-line option '-Wno-unknown-warning-option' may have been intended to silence earlier diagnostics
# cc1plus: note: unrecognized command-line option '-Wno-implicit-int-float-conversion' may have been intended to silence earlier diagnostics
# cc1plus: all warnings being treated as errors
# gmake[2]: *** [src/wasm/CMakeFiles/wasm.dir/build.make:247: src/wasm/CMakeFiles/wasm.dir/wat-lexer.cpp.o] Error 1
# gmake[2]: *** Waiting for unfinished jobs....
# gmake[1]: *** [CMakeFiles/Makefile2:543: src/wasm/CMakeFiles/wasm.dir/all] Error 2
# gmake[1]: *** Waiting for unfinished jobs....
# gmake: *** [Makefile:136: all] Error 2
# (cd _build/default && /usr/bin/cmake -S binaryen -B binaryen -G 'Unix Makefiles' -DCMAKE_CXX_FLAGS=-Wno-unused-variable -DBUILD_TESTS=OFF -DBUILD_TOOLS=OFF -DBUILD_STATIC_LIB=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=binaryen)
# -- Building with -DBUILD_LLVM_DWARF
# -- Building with -Wall
# -- Building with -Werror
# -- Building with -Wextra
# -- Building with -Wno-unused-parameter
# -- Building with -fno-omit-frame-pointer
# -- Building with -fno-rtti
# -- Building with -Wno-implicit-int-float-conversion
# -- Building with -Wno-unknown-warning-option
# -- Building with -Wswitch
# -- Building with -Wimplicit-fallthrough
# -- Building with -Wnon-virtual-dtor
# -- Building with -fPIC
# -- Building with -O2
# -- Building with -UNDEBUG
# -- Building libbinaryen as statically linked library.
# -- Configuring done (0.4s)
# -- Generating done (0.1s)
# -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen
# File "dune", lines 26-50, characters 0-576:
# 26 | (rule
# 27 | (targets libbinaryen.a)
# 28 | (locks binaryen)
# ....
# 48 | -DCMAKE_INSTALL_PREFIX=binaryen)
# 49 | (run cmake --build binaryen --config Release -- -j4)
# 50 | (copy binaryen/lib/libbinaryen.a libbinaryen.a)))))
# (cd _build/default && /usr/bin/cmake --build binaryen --config Release -- -j4)
# [ 0%] Built target cfg
# [ 1%] Built target asmjs
# [ 9%] Built target ir
# [ 11%] Built target emscripten-optimizer
# [ 16%] Built target support
# [ 17%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wat-parser.cpp.o
# [ 17%] Building CXX object src/wasm/CMakeFiles/wasm.dir/wat-lexer.cpp.o
# [ 47%] Built target llvm_dwarf
# [ 93%] Built target passes
# In file included from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:25:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:62:3: error: 'uint64_t' does not name a type
# 62 | uint64_t n;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:20:1: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# 19 | #include <iterator>
# +++ |+#include <cstdint>
# 20 | #include <optional>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:17: error: 'uint64_t' was not declared in this scope
# 75 | std::optional<uint64_t> nanPayload;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:25: error: template argument 1 is invalid
# 75 | std::optional<uint64_t> nanPayload;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:17: error: 'uint64_t' was not declared in this scope
# 127 | std::optional<uint64_t> getU64() const;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:25: error: template argument 1 is invalid
# 127 | std::optional<uint64_t> getU64() const;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:17: error: 'uint64_t' was not declared in this scope
# 129 | std::optional<uint64_t> getI64() const;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:25: error: template argument 1 is invalid
# 129 | std::optional<uint64_t> getI64() const;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:17: error: 'uint32_t' was not declared in this scope
# 130 | std::optional<uint32_t> getU32() const;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:17: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:25: error: template argument 1 is invalid
# 130 | std::optional<uint32_t> getU32() const;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:17: error: 'uint32_t' was not declared in this scope
# 132 | std::optional<uint32_t> getI32() const;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:17: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:25: error: template argument 1 is invalid
# 132 | std::optional<uint32_t> getI32() const;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:66:3: error: 'uint8_t' does not name a type
# 66 | uint8_t peek() const { return next()[0]; }
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:26:1: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# 25 | #include "wat-lexer.h"
# +++ |+#include <cstdint>
# 26 |
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:125:3: error: 'uint64_t' does not name a type
# 125 | uint64_t n;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:125:3: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:135:3: error: 'uint64_t' does not name a type
# 135 | uint64_t n = 0;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:135:3: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<wasm::WATParser::{anonymous}::LexIntResult> wasm::WATParser::{anonymous}::LexIntCtx::lexedRaw()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:145:44: error: too many initializers for 'wasm::WATParser::{anonymous}::LexIntResult'
# 145 | return LexIntResult{*basic, 0, NoSign};
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<wasm::WATParser::{anonymous}::LexIntResult> wasm::WATParser::{anonymous}::LexIntCtx::lexed()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:155:50: error: 'n' was not declared in this scope; did you mean 'yn'?
# 155 | return LexIntResult{*basic, sign == Neg ? -n : n, sign};
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'bool wasm::WATParser::{anonymous}::LexIntCtx::takeDigit()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:172:29: error: 'peek' was not declared in this scope
# 172 | if (auto d = getDigit(peek())) {
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:174:9: error: 'uint64_t' was not declared in this scope
# 174 | uint64_t newN = n * 10 + *d;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:174:9: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:175:13: error: 'newN' was not declared in this scope
# 175 | if (newN < n) {
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:175:20: error: 'n' was not declared in this scope; did you mean 'yn'?
# 175 | if (newN < n) {
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:178:9: error: 'n' was not declared in this scope; did you mean 'yn'?
# 178 | n = newN;
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:178:13: error: 'newN' was not declared in this scope
# 178 | n = newN;
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'bool wasm::WATParser::{anonymous}::LexIntCtx::takeHexdigit()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:187:32: error: 'peek' was not declared in this scope
# 187 | if (auto h = getHexDigit(peek())) {
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:189:9: error: 'uint64_t' was not declared in this scope
# 189 | uint64_t newN = n * 16 + *h;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:189:9: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:190:13: error: 'newN' was not declared in this scope
# 190 | if (newN < n) {
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:190:20: error: 'n' was not declared in this scope; did you mean 'yn'?
# 190 | if (newN < n) {
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:193:9: error: 'n' was not declared in this scope; did you mean 'yn'?
# 193 | n = newN;
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:193:13: error: 'newN' was not declared in this scope
# 193 | n = newN;
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'void wasm::WATParser::{anonymous}::LexIntCtx::take(const wasm::WATParser::{anonymous}::LexIntResult&)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:202:5: error: 'n' was not declared in this scope; did you mean 'yn'?
# 202 | n = res.n;
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:202:13: error: 'const struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 202 | n = res.n;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:17: error: 'uint64_t' was not declared in this scope
# 212 | std::optional<uint64_t> nanPayload;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:25: error: template argument 1 is invalid
# 212 | std::optional<uint64_t> nanPayload;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:17: error: 'uint64_t' was not declared in this scope
# 217 | std::optional<uint64_t> nanPayload;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:17: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:25: error: template argument 1 is invalid
# 217 | std::optional<uint64_t> nanPayload;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:301:22: error: 'uint64_t' has not been declared
# 301 | bool appendUnicode(uint64_t u) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'void wasm::WATParser::{anonymous}::LexStrCtx::takeChar()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:285:25: error: 'peek' was not declared in this scope
# 285 | *escapeBuilder << peek();
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'bool wasm::WATParser::{anonymous}::LexStrCtx::appendUnicode(int)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:307:25: error: 'uint8_t' was not declared in this scope
# 307 | *escapeBuilder << uint8_t(u);
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:307:25: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:310:25: error: 'uint8_t' was not declared in this scope
# 310 | *escapeBuilder << uint8_t(0b11000000 | ((u >> 6) & 0b00011111));
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:310:25: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:314:25: error: 'uint8_t' was not declared in this scope
# 314 | *escapeBuilder << uint8_t(0b11100000 | ((u >> 12) & 0b00001111));
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:314:25: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:319:25: error: 'uint8_t' was not declared in this scope
# 319 | *escapeBuilder << uint8_t(0b11110000 | ((u >> 18) & 0b00000111));
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:319:25: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::optional<wasm::WATParser::{anonymous}::LexFloatResult> wasm::WATParser::{anonymous}::float_(std::string_view)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:582:33: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 582 | ctx.nanPayload = lexed->n;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::optional<wasm::WATParser::{anonymous}::LexResult> wasm::WATParser::{anonymous}::idchar(std::string_view)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:611:3: error: 'uint8_t' was not declared in this scope
# 611 | uint8_t c = ctx.peek();
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:611:3: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:612:15: error: 'c' was not declared in this scope
# 612 | if (('0' <= c && c <= '9') || ('A' <= c && c <= 'Z') ||
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::optional<wasm::WATParser::{anonymous}::LexStrResult> wasm::WATParser::{anonymous}::str(std::string_view)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:713:39: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 713 | if (!ctx.appendUnicode(lexed->n)) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:725:38: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 725 | ctx.appendEscaped(char(lexed.n));
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:11: error: 'uint8_t' was not declared in this scope
# 729 | if (uint8_t c = ctx.peek(); c >= 0x20 && c != 0x7F) {
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:11: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:35: error: 'c' was not declared in this scope
# 729 | if (uint8_t c = ctx.peek(); c >= 0x20 && c != 0x7F) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::optional<wasm::WATParser::{anonymous}::LexResult> wasm::WATParser::{anonymous}::keyword(std::string_view)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:752:3: error: 'uint8_t' was not declared in this scope
# 752 | uint8_t start = ctx.peek();
# | ^~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:752:3: note: 'uint8_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:753:14: error: 'start' was not declared in this scope; did you mean 'str'?
# 753 | if ('a' <= start && start <= 'z') {
# | ^~~~~
# | str
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:15: error: 'uint64_t' was not declared in this scope
# 766 | std::optional<uint64_t> Token::getU64() const {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:15: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:23: error: template argument 1 is invalid
# 766 | std::optional<uint64_t> Token::getU64() const {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'int wasm::WATParser::Token::getU64() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:769:19: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 769 | return tok->n;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<long int> wasm::WATParser::Token::getS64() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:20: error: 'INT64_MIN' was not declared in this scope
# 778 | if (uint64_t(INT64_MIN) <= tok->n || tok->n == 0) {
# | ^~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:11: error: 'uint64_t' was not declared in this scope
# 778 | if (uint64_t(INT64_MIN) <= tok->n || tok->n == 0) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:11: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:39: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 778 | if (uint64_t(INT64_MIN) <= tok->n || tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:49: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 778 | if (uint64_t(INT64_MIN) <= tok->n || tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:779:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 779 | return int64_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 783 | if (tok->n <= uint64_t(INT64_MAX)) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:30: error: 'INT64_MAX' was not declared in this scope
# 783 | if (tok->n <= uint64_t(INT64_MAX)) {
# | ^~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:30: note: 'INT64_MAX' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:21: error: 'uint64_t' was not declared in this scope
# 783 | if (tok->n <= uint64_t(INT64_MAX)) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:21: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:784:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 784 | return int64_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:15: error: 'uint64_t' was not declared in this scope
# 792 | std::optional<uint64_t> Token::getI64() const {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:15: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:23: error: template argument 1 is invalid
# 792 | std::optional<uint64_t> Token::getI64() const {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'int wasm::WATParser::Token::getI64() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:794:12: error: invalid type argument of unary '*' (have 'int')
# 794 | return *n;
# | ^~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:15: error: 'uint32_t' was not declared in this scope
# 802 | std::optional<uint32_t> Token::getU32() const {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:15: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:23: error: template argument 1 is invalid
# 802 | std::optional<uint32_t> Token::getU32() const {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'int wasm::WATParser::Token::getU32() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:37: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 804 | if (tok->sign == NoSign && tok->n <= UINT32_MAX) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:42: error: 'UINT32_MAX' was not declared in this scope
# 804 | if (tok->sign == NoSign && tok->n <= UINT32_MAX) {
# | ^~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:42: note: 'UINT32_MAX' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:805:27: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 805 | return int32_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<int> wasm::WATParser::Token::getS32() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:20: error: 'INT32_MIN' was not declared in this scope
# 815 | if (uint64_t(INT32_MIN) <= tok->n || tok->n == 0) {
# | ^~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:11: error: 'uint64_t' was not declared in this scope
# 815 | if (uint64_t(INT32_MIN) <= tok->n || tok->n == 0) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:11: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:39: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 815 | if (uint64_t(INT32_MIN) <= tok->n || tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:49: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 815 | if (uint64_t(INT32_MIN) <= tok->n || tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:816:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 816 | return int32_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 819 | if (tok->n <= uint64_t(INT32_MAX)) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:30: error: 'INT32_MAX' was not declared in this scope
# 819 | if (tok->n <= uint64_t(INT32_MAX)) {
# | ^~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:30: note: 'INT32_MAX' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:21: error: 'uint64_t' was not declared in this scope
# 819 | if (tok->n <= uint64_t(INT32_MAX)) {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:21: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:820:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 820 | return int32_t(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:15: error: 'uint32_t' was not declared in this scope
# 827 | std::optional<uint32_t> Token::getI32() const {
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:15: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:23: error: template argument 1 is invalid
# 827 | std::optional<uint32_t> Token::getI32() const {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'int wasm::WATParser::Token::getI32() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:829:12: error: invalid type argument of unary '*' (have 'int')
# 829 | return *n;
# | ^~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:832:12: error: 'uint32_t' was not declared in this scope
# 832 | return uint32_t(*n);
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:832:12: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<double> wasm::WATParser::Token::getF64() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:839:13: error: 'uint64_t' does not name a type
# 839 | constexpr uint64_t payloadMask = (1ull << signif) - 1;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:839:13: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:840:13: error: 'uint64_t' does not name a type
# 840 | constexpr uint64_t nanDefault = 1ull << (signif - 1);
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:840:13: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:845:7: error: 'uint64_t' was not declared in this scope
# 845 | uint64_t payload = tok->nanPayload ? *tok->nanPayload : nanDefault;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:845:7: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:846:11: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
# 846 | if (payload == 0 || payload > payloadMask) {
# | ^~~~~~~
# | setpayload
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:846:37: error: 'payloadMask' was not declared in this scope
# 846 | if (payload == 0 || payload > payloadMask) {
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:850:15: error: expected ';' before 'bits'
# 850 | uint64_t bits;
# | ^~~~~
# | ;
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:851:28: error: 'bits' was not declared in this scope
# 851 | static_assert(sizeof(bits) == sizeof(d));
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:853:23: error: 'payloadMask' was not declared in this scope
# 853 | bits = (bits & ~payloadMask) | payload;
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:853:38: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
# 853 | bits = (bits & ~payloadMask) | payload;
# | ^~~~~~~
# | setpayload
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:860:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 860 | if (tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:863:34: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 863 | return double(int64_t(tok->n));
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:865:24: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 865 | return double(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'std::optional<float> wasm::WATParser::Token::getF32() const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:872:13: error: 'uint32_t' does not name a type
# 872 | constexpr uint32_t payloadMask = (1u << signif) - 1;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:872:13: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:873:13: error: 'uint64_t' does not name a type
# 873 | constexpr uint64_t nanDefault = 1ull << (signif - 1);
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:873:13: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:878:7: error: 'uint64_t' was not declared in this scope
# 878 | uint64_t payload = tok->nanPayload ? *tok->nanPayload : nanDefault;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:878:7: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:879:11: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
# 879 | if (payload == 0 || payload > payloadMask) {
# | ^~~~~~~
# | setpayload
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:879:37: error: 'payloadMask' was not declared in this scope
# 879 | if (payload == 0 || payload > payloadMask) {
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:883:7: error: 'uint32_t' was not declared in this scope
# 883 | uint32_t bits;
# | ^~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:883:7: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:884:28: error: 'bits' was not declared in this scope
# 884 | static_assert(sizeof(bits) == sizeof(f));
# | ^~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:886:23: error: 'payloadMask' was not declared in this scope
# 886 | bits = (bits & ~payloadMask) | payload;
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:886:38: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
# 886 | bits = (bits & ~payloadMask) | payload;
# | ^~~~~~~
# | setpayload
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:893:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 893 | if (tok->n == 0) {
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:896:33: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 896 | return float(int64_t(tok->n));
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:898:23: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 898 | return float(tok->n);
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'void wasm::WATParser::Lexer::lexToken()':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:929:36: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
# 929 | tok = Token{t->span, IntTok{t->n, t->sign}};
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In member function 'bool wasm::WATParser::IntTok::operator==(const wasm::WATParser::IntTok&) const':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:964:10: error: 'n' was not declared in this scope; did you mean 'yn'?
# 964 | return n == other.n && sign == other.sign;
# | ^
# | yn
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:964:21: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 964 | return n == other.n && sign == other.sign;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::ostream& wasm::WATParser::operator<<(std::ostream&, const IntTok&)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:1002:76: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
# 1002 | return os << (tok.sign == Pos ? "+" : tok.sign == Neg ? "-" : "") << tok.n;
# | ^
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: In function 'std::ostream& wasm::WATParser::operator<<(std::ostream&, const FloatTok&)':
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:1009:44: error: invalid type argument of unary '*' (have 'int')
# 1009 | return os << "nan:0x" << std::hex << *tok.nanPayload << std::dec;
# | ^~~~~~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp: At global scope:
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:110:20: error: 'std::optional<int> wasm::WATParser::{anonymous}::getHexDigit(char)' defined but not used [-Werror=unused-function]
# 110 | std::optional<int> getHexDigit(char c) {
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:103:20: error: 'std::optional<int> wasm::WATParser::{anonymous}::getDigit(char)' defined but not used [-Werror=unused-function]
# 103 | std::optional<int> getDigit(char c) {
# | ^~~~~~~~
# cc1plus: note: unrecognized command-line option '-Wno-unknown-warning-option' may have been intended to silence earlier diagnostics
# cc1plus: note: unrecognized command-line option '-Wno-implicit-int-float-conversion' may have been intended to silence earlier diagnostics
# cc1plus: all warnings being treated as errors
# gmake[2]: *** [src/wasm/CMakeFiles/wasm.dir/build.make:247: src/wasm/CMakeFiles/wasm.dir/wat-lexer.cpp.o] Error 1
# gmake[2]: *** Waiting for unfinished jobs....
# gmake[1]: *** [CMakeFiles/Makefile2:543: src/wasm/CMakeFiles/wasm.dir/all] Error 2
# gmake: *** [Makefile:136: all] Error 2
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build libbinaryen 111.0.0
+-
+- The following changes have been performed
| - install conf-cmake 1
| - install csexp 1.5.2
| - install dune-configurator 3.22.2
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20260413152931.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall libbinaryen.111.0.0;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'libbinaryen.111.0.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-04-13 15:38.45: Job failed: Failed: Build failed
2026-04-13 15:38.45: Log analysis:
2026-04-13 15:38.45: >>>
[ERROR] The compilation of libbinaryen.111.0.0 failed at "dune build -p libbinaryen -j 71".
(score = 20)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:62:3: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:17: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:17: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:66:3: error: 'uint8_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:125:3: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:135:3: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:145:44: error: too many initializers for 'wasm::WATParser::{anonymous}::LexIntResult'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:155:50: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:172:29: error: 'peek' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:174:9: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:175:13: error: 'newN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:175:20: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:178:9: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:178:13: error: 'newN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:187:32: error: 'peek' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:189:9: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:190:13: error: 'newN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:190:20: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:193:9: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:193:13: error: 'newN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:202:5: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:202:13: error: 'const struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:301:22: error: 'uint64_t' has not been declared
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:285:25: error: 'peek' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:307:25: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:310:25: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:314:25: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:319:25: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:582:33: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:611:3: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:612:15: error: 'c' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:713:39: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:725:38: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:11: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:35: error: 'c' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:752:3: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:753:14: error: 'start' was not declared in this scope; did you mean 'str'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:15: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:23: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:769:19: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:20: error: 'INT64_MIN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:11: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:39: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:49: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:779:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:30: error: 'INT64_MAX' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:21: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:784:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:15: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:23: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:794:12: error: invalid type argument of unary '*' (have 'int')
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:15: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:23: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:37: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:42: error: 'UINT32_MAX' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:805:27: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:20: error: 'INT32_MIN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:11: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:39: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:49: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:816:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:30: error: 'INT32_MAX' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:21: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:820:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:15: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:23: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:829:12: error: invalid type argument of unary '*' (have 'int')
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:832:12: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:839:13: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:840:13: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:845:7: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:846:11: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:846:37: error: 'payloadMask' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:850:15: error: expected ';' before 'bits'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:851:28: error: 'bits' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:853:23: error: 'payloadMask' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:853:38: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:860:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:863:34: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:865:24: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:872:13: error: 'uint32_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:873:13: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:878:7: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:879:11: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:879:37: error: 'payloadMask' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:883:7: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:884:28: error: 'bits' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:886:23: error: 'payloadMask' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:886:38: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:893:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:896:33: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:898:23: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:929:36: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:964:10: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:964:21: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:1002:76: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:1009:44: error: invalid type argument of unary '*' (have 'int')
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:110:20: error: 'std::optional<int> wasm::WATParser::{anonymous}::getHexDigit(char)' defined but not used [-Werror=unused-function]
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:103:20: error: 'std::optional<int> wasm::WATParser::{anonymous}::getDigit(char)' defined but not used [-Werror=unused-function]
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:62:3: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:75:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:127:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:129:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:17: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:130:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:17: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wat-lexer.h:132:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:66:3: error: 'uint8_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:125:3: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:135:3: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:145:44: error: too many initializers for 'wasm::WATParser::{anonymous}::LexIntResult'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:155:50: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:172:29: error: 'peek' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:174:9: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:175:13: error: 'newN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:175:20: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:178:9: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:178:13: error: 'newN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:187:32: error: 'peek' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:189:9: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:190:13: error: 'newN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:190:20: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:193:9: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:193:13: error: 'newN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:202:5: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:202:13: error: 'const struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:212:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:17: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:217:25: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:301:22: error: 'uint64_t' has not been declared
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:285:25: error: 'peek' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:307:25: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:310:25: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:314:25: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:319:25: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:582:33: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:611:3: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:612:15: error: 'c' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:713:39: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:725:38: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:11: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:729:35: error: 'c' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:752:3: error: 'uint8_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:753:14: error: 'start' was not declared in this scope; did you mean 'str'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:15: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:766:23: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:769:19: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:20: error: 'INT64_MIN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:11: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:39: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:778:49: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:779:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:30: error: 'INT64_MAX' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:783:21: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:784:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:15: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:792:23: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:794:12: error: invalid type argument of unary '*' (have 'int')
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:15: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:802:23: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:37: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:804:42: error: 'UINT32_MAX' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:805:27: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:20: error: 'INT32_MIN' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:11: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:39: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:815:49: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:816:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:30: error: 'INT32_MAX' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:819:21: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:820:29: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:15: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:827:23: error: template argument 1 is invalid
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:829:12: error: invalid type argument of unary '*' (have 'int')
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:832:12: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:839:13: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:840:13: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:845:7: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:846:11: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:846:37: error: 'payloadMask' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:850:15: error: expected ';' before 'bits'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:851:28: error: 'bits' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:853:23: error: 'payloadMask' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:853:38: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:860:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:863:34: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:865:24: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:872:13: error: 'uint32_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:873:13: error: 'uint64_t' does not name a type
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:878:7: error: 'uint64_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:879:11: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:879:37: error: 'payloadMask' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:883:7: error: 'uint32_t' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:884:28: error: 'bits' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:886:23: error: 'payloadMask' was not declared in this scope
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:886:38: error: 'payload' was not declared in this scope; did you mean 'setpayload'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:893:16: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:896:33: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:898:23: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:929:36: error: 'struct wasm::WATParser::{anonymous}::LexIntResult' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:964:10: error: 'n' was not declared in this scope; did you mean 'yn'?
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:964:21: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:1002:76: error: 'const struct wasm::WATParser::IntTok' has no member named 'n'
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:1009:44: error: invalid type argument of unary '*' (have 'int')
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:110:20: error: 'std::optional<int> wasm::WATParser::{anonymous}::getHexDigit(char)' defined but not used [-Werror=unused-function]
(score = 30)
2026-04-13 15:38.45: >>>
# /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.111.0.0/_build/default/binaryen/src/wasm/wat-lexer.cpp:103:20: error: 'std::optional<int> wasm::WATParser::{anonymous}::getDigit(char)' defined but not used [-Werror=unused-function]
(score = 30)
2026-04-13 15:38.45: 'uint64_t' does not name a type