(for PR #29582)
2026-03-25 13:14.44: New job: test mirage-crypto.0.8.0 with ocaml-compiler.5.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0 5.4.0
RUN opam reinstall --update-invariant ocaml-compiler.5.4.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" != 'ocaml-compiler.5.4.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall mirage-crypto.0.8.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" != 'mirage-crypto.0.8.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 mirage-crypto.0.8.0) || true
RUN opam reinstall --with-test --verbose mirage-crypto.0.8.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" != 'mirage-crypto.0.8.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-03-25 13:14.44: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-mirage-crypto.0.8.0-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.44: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
(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 ocaml-compiler.5.4.0 5.4.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.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\" != 'ocaml-compiler.5.4.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-crypto.0.8.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\" != 'mirage-crypto.0.8.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 mirage-crypto.0.8.0) || true"))
(run (shell "opam reinstall --with-test --verbose mirage-crypto.0.8.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\" != 'mirage-crypto.0.8.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-03-25 13:14.44: Waiting for resource in pool OCluster
2026-03-25 18:50.23: Waiting for worker…
2026-03-25 18:52.38: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files: 92% (17040/18520)
Updating files: 93% (17224/18520)
Updating files: 94% (17409/18520)
Updating files: 95% (17594/18520)
Updating files: 96% (17780/18520)
Updating files: 97% (17965/18520)
Updating files: 98% (18150/18520)
Updating files: 99% (18335/18520)
Updating files: 100% (18520/18520)
Updating files: 100% (18520/18520), done.
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.5/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.6/opam | 5 ++++-
packages/ocaml-option-llvm/ocaml-option-llvm.1/opam | 18 ++++++++++++++++++
.../ocaml-options-vanilla/ocaml-options-vanilla.1/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 2 ++
15 files changed, 69 insertions(+), 12 deletions(-)
create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6' locally
docker.io/ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
f6cbd774d654: Already exists
b40777a84cca: Already exists
7bb5edb9c889: Already exists
020670bcefab: Already exists
46df05d0db83: Already exists
45bde7b38933: Already exists
b4d63fa01ada: Already exists
Digest: sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
Status: Downloaded newer image for ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
2026-03-25 18:52.41 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 18:52.41 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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-03-25 18:52.41 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-25 18:52.41 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-25 18:52.41 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 18:52.42 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 18:52.42 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (6968 kB/s)
- Reading package lists...
-
2026-03-25 18:52.42 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
ocaml-compiler is now pinned to version 5.4.0
2026-03-25 18:52.42 ---> using "60e129f7398974b5fa5afc8f56ec09bd24a9182f5e9834464bfc959db1aa6b14" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.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\" != 'ocaml-compiler.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 8 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
- recompile ocaml-compiler 5.4.0 (pinned)
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0
-> installed ocaml-base-compiler.5.4.0
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 18:52.42 ---> using "efbc92fc0c607605c8bb33f9e4c8fe340a48c67e14d2f61592db8a4edc5c0b15" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-crypto.0.8.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\" != 'mirage-crypto.0.8.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mirage-crypto.0.8.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install bigarray-compat 1.1.0 [required by cstruct]
- install conf-pkg-config 4 [required by mirage-crypto]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.0.1 [required by mirage-crypto]
- install dune 3.22.0 [required by mirage-crypto]
- install dune-configurator 3.22.0 [required by mirage-crypto]
- install mirage-crypto 0.8.0
The following system packages will first need to be installed:
pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "pkg-config"
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.0.1 (cached)
-> installed conf-pkg-config.4
-> retrieved dune.3.22.0, dune-configurator.3.22.0 (cached)
-> retrieved mirage-crypto.0.8.0 (cached)
-> installed dune.3.22.0
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed cstruct.6.0.1
-> installed dune-configurator.3.22.0
-> installed mirage-crypto.0.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 18:53.55 ---> saved as "ca5121bbb0a730d7a3eecef23f6682679e64dcfb48c6841bbd06afca3e64eef7"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test mirage-crypto.0.8.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile mirage-crypto 0.8.0
=== install 5 packages
- install ocamlfind 1.9.8 [required by ounit]
- install ounit 2.2.7 [required by mirage-crypto]
- install ounit2 2.2.7 [required by ounit]
- install seq base [required by ounit2]
- install stdlib-shims 0.3.0 [required by ounit2]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved mirage-crypto.0.8.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved ounit.2.2.7, ounit2.2.2.7 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ounit2.2.2.7
-> removed mirage-crypto.0.8.0
-> installed ocamlfind.1.9.8
-> installed ounit.2.2.7
-> installed mirage-crypto.0.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 18:54.14 ---> saved as "22f575dd8fc73a506838a4aad8a48cdd79ee2fc0b4cde261e23e46cdd83fea36"
/home/opam: (run (shell "opam reinstall --with-test --verbose mirage-crypto.0.8.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\" != 'mirage-crypto.0.8.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile mirage-crypto 0.8.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [mirage-crypto.0.8.0: extract]
-> retrieved mirage-crypto.0.8.0 (cached)
Processing 2/4: [mirage-crypto: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-crypto" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mirage-crypto.0.8.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/byte/mirage_crypto__Uncommon.cmo -c -impl src/uncommon.ml)
- File "src/uncommon.ml", line 33, characters 17-20:
- 33 | if n > imin (len src) (len dst) then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 33, characters 27-30:
- 33 | if n > imin (len src) (len dst) then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 38, characters 20-23:
- 38 | let len = imin (len cs1) (len cs2) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 38, characters 30-33:
- 38 | let len = imin (len cs1) (len cs2) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 46, characters 14-17:
- 46 | let n = len cs in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 57, characters 44-47:
- 57 | (sub cs 0 l1, sub cs l1 l2, sub cs l12 (len cs - l12))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 60, characters 12-15:
- 60 | let l = len cs and cs' = Cstruct.create_unsafe size in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 67, characters 12-15:
- 67 | let l = len cs and cs' = Cstruct.create_unsafe size in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/byte/mirage_crypto__Cipher_stream.cmo -c -impl src/cipher_stream.ml)
- File "src/cipher_stream.ml", line 18, characters 14-25:
- 18 | let len = Cstruct.len cs in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/cipher_stream.ml", line 35, characters 14-25:
- 35 | and len = Cstruct.len cs in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/byte/mirage_crypto__Ccm.cmo -c -impl src/ccm.ml)
- File "src/ccm.ml", line 30, characters 10-21:
- 30 | let n = Cstruct.len nonce in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 34, characters 14-25:
- 34 | let b6 = if Cstruct.len adata = 0 then 0 else 1 in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 44, characters 13-24:
- 44 | let size = Cstruct.len b in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 49, characters 10-21:
- 49 | match Cstruct.len a with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 66, characters 10-21:
- 66 | let n = Cstruct.len nonce in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 76, characters 15-26:
- 76 | let ada = if Cstruct.len adata = 0 then Cstruct.empty else gen_adata adata in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 82, characters 16-27:
- 82 | let datalen = Cstruct.len data in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 100, characters 12-23:
- 100 | match Cstruct.len block with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 116, characters 10-21:
- 116 | match Cstruct.len src with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 142, characters 21-32:
- 142 | Cs.xor_into ctr t (Cstruct.len t)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 145, characters 14-25:
- 145 | let nsize = Cstruct.len nonce in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 157, characters 5-16:
- 157 | if Cstruct.len data < maclen then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 160, characters 16-27:
- 160 | let pclen = Cstruct.len data - maclen in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/byte/mirage_crypto__Hash.cmo -c -impl src/hash.ml)
- File "src/hash.ml", line 85, characters 19-30:
- 85 | match compare (Cstruct.len key) block_size with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/native -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -cmi-file src/.mirage_crypto.objs/byte/mirage_crypto__Uncommon.cmi -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/native/mirage_crypto__Uncommon.cmx -c -impl src/uncommon.ml)
- File "src/uncommon.ml", line 33, characters 17-20:
- 33 | if n > imin (len src) (len dst) then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 33, characters 27-30:
- 33 | if n > imin (len src) (len dst) then
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 38, characters 20-23:
- 38 | let len = imin (len cs1) (len cs2) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 38, characters 30-33:
- 38 | let len = imin (len cs1) (len cs2) in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 46, characters 14-17:
- 46 | let n = len cs in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 57, characters 44-47:
- 57 | (sub cs 0 l1, sub cs l1 l2, sub cs l12 (len cs - l12))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 60, characters 12-15:
- 60 | let l = len cs and cs' = Cstruct.create_unsafe size in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/uncommon.ml", line 67, characters 12-15:
- 67 | let l = len cs and cs' = Cstruct.create_unsafe size in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/native -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -cmi-file src/.mirage_crypto.objs/byte/mirage_crypto__Cipher_stream.cmi -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/native/mirage_crypto__Cipher_stream.cmx -c -impl src/cipher_stream.ml)
- File "src/cipher_stream.ml", line 18, characters 14-25:
- 18 | let len = Cstruct.len cs in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/cipher_stream.ml", line 35, characters 14-25:
- 35 | and len = Cstruct.len cs in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/native -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -cmi-file src/.mirage_crypto.objs/byte/mirage_crypto__Ccm.cmi -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/native/mirage_crypto__Ccm.cmx -c -impl src/ccm.ml)
- File "src/ccm.ml", line 30, characters 10-21:
- 30 | let n = Cstruct.len nonce in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 34, characters 14-25:
- 34 | let b6 = if Cstruct.len adata = 0 then 0 else 1 in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 44, characters 13-24:
- 44 | let size = Cstruct.len b in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 49, characters 10-21:
- 49 | match Cstruct.len a with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 66, characters 10-21:
- 66 | let n = Cstruct.len nonce in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 76, characters 15-26:
- 76 | let ada = if Cstruct.len adata = 0 then Cstruct.empty else gen_adata adata in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 82, characters 16-27:
- 82 | let datalen = Cstruct.len data in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 100, characters 12-23:
- 100 | match Cstruct.len block with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 116, characters 10-21:
- 116 | match Cstruct.len src with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 142, characters 21-32:
- 142 | Cs.xor_into ctr t (Cstruct.len t)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 145, characters 14-25:
- 145 | let nsize = Cstruct.len nonce in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 157, characters 5-16:
- 157 | if Cstruct.len data < maclen then
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/ccm.ml", line 160, characters 16-27:
- 160 | let pclen = Cstruct.len data - maclen in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/byte/mirage_crypto__Cipher_block.cmo -c -impl src/cipher_block.ml)
- File "src/cipher_block.ml", line 337, characters 34-37:
- 337 | let bits64 cs = Int64.of_int (len cs * 8)
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/cipher_block.ml", line 341, characters 33-36:
- 341 | let counter ~hkey iv = match len iv with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/native -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -cmi-file src/.mirage_crypto.objs/byte/mirage_crypto__Hash.cmi -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/native/mirage_crypto__Hash.cmx -c -impl src/hash.ml)
- File "src/hash.ml", line 85, characters 19-30:
- 85 | match compare (Cstruct.len key) block_size with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/native -I src/.mirage_crypto.objs/public_cmi -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -cmi-file src/.mirage_crypto.objs/byte/mirage_crypto__Cipher_block.cmi -no-alias-deps -open Mirage_crypto__ -o src/.mirage_crypto.objs/native/mirage_crypto__Cipher_block.cmx -c -impl src/cipher_block.ml)
- File "src/cipher_block.ml", line 337, characters 34-37:
- 337 | let bits64 cs = Int64.of_int (len cs * 8)
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "src/cipher_block.ml", line 341, characters 33-36:
- 341 | let counter ~hkey iv = match len iv with
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o detect_cpu_features.o -c native/detect_cpu_features.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/detect_cpu_features.c:1:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o ghash_ctmul.o -c native/ghash_ctmul.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/ghash_ctmul.c:39:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o misc_sse.o -c native/misc_sse.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/misc_sse.c:1:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o entropy_cpu_stubs.o -c native/entropy_cpu_stubs.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/entropy_cpu_stubs.c:5:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o hash_stubs.o -c native/hash_stubs.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/hash_stubs.c:1:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o misc.o -c native/misc.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/misc.c:1:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o ghash_generic.o -c native/ghash_generic.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/ghash_generic.c:4:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o des_generic.o -c native/des_generic.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/des_generic.c:18:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- native/des_generic.c:404:31: warning: argument 1 of type 'unsigned char[16]' with mismatched bound [-Warray-parameter=]
- 404 | void mc_des2key(unsigned char hexkey[16], short mode) /* stomps on Kn3 too */
- | ~~~~~~~~~~~~~~^~~~~~~~~~
- In file included from native/des_generic.c:19:
- native/des_generic.h:67:24: note: previously declared as 'unsigned char *'
- 67 | extern void mc_des2key(unsigned char *, short);
- | ^~~~~~~~~~~~~~~
- native/des_generic.c:536:31: warning: argument 1 of type 'unsigned char[24]' with mismatched bound [-Warray-parameter=]
- 536 | void mc_des3key(unsigned char hexkey[24], short mode)
- | ~~~~~~~~~~~~~~^~~~~~~~~~
- native/des_generic.h:126:24: note: previously declared as 'unsigned char *'
- 126 | extern void mc_des3key(unsigned char *, short);
- | ^~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o aes_aesni.o -c native/aes_aesni.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/aes_aesni.c:11:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o ghash_pclmul.o -c native/ghash_pclmul.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/ghash_pclmul.c:23:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/src && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread --std=c99 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -o aes_generic.o -c native/aes_generic.c)
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:20,
- from native/mirage_crypto.h:7,
- from native/aes_generic.c:7:
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:88:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 88 | typedef _Atomic uintnat atomic_uintnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:89:9: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 89 | typedef _Atomic intnat atomic_intnat;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:304:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 304 | extern _Atomic caml_timing_hook caml_major_slice_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:305:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 305 | extern _Atomic caml_timing_hook caml_major_slice_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:306:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 306 | extern _Atomic caml_timing_hook caml_minor_gc_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:307:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 307 | extern _Atomic caml_timing_hook caml_minor_gc_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:308:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 308 | extern _Atomic caml_timing_hook caml_finalise_begin_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:309:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 309 | extern _Atomic caml_timing_hook caml_finalise_end_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:310:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 310 | extern _Atomic caml_timing_hook caml_domain_terminated_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:371:30: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 371 | CAMLnoret Caml_inline void caml_abort(void) {
- | ^~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:436:8: warning: ISO C99 does not support the '_Atomic' qualifier [-Wpedantic]
- 436 | extern _Atomic fatal_error_hook caml_fatal_error_hook;
- | ^~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:439:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 439 | CAMLnoret CAMLextern void caml_fatal_error (const char *, ...)
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:17:1: note: in expansion of macro 'DOMAIN_STATE'
- 17 | DOMAIN_STATE(atomic_uintnat, young_limit)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:28:1: note: in expansion of macro 'DOMAIN_STATE'
- 28 | DOMAIN_STATE(value*, young_ptr)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:31:1: note: in expansion of macro 'DOMAIN_STATE'
- 31 | DOMAIN_STATE(value*, young_start)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:34:1: note: in expansion of macro 'DOMAIN_STATE'
- 34 | DOMAIN_STATE(value*, young_end)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:37:1: note: in expansion of macro 'DOMAIN_STATE'
- 37 | DOMAIN_STATE(value*, young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:40:1: note: in expansion of macro 'DOMAIN_STATE'
- 40 | DOMAIN_STATE(struct stack_info*, current_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:43:1: note: in expansion of macro 'DOMAIN_STATE'
- 43 | DOMAIN_STATE(void*, exn_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:46:1: note: in expansion of macro 'DOMAIN_STATE'
- 46 | DOMAIN_STATE(intnat, action_pending)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:50:1: note: in expansion of macro 'DOMAIN_STATE'
- 50 | DOMAIN_STATE(struct c_stack_link*, c_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:54:1: note: in expansion of macro 'DOMAIN_STATE'
- 54 | DOMAIN_STATE(struct stack_info**, stack_cache)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:57:1: note: in expansion of macro 'DOMAIN_STATE'
- 57 | DOMAIN_STATE(value*, gc_regs_buckets)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:61:1: note: in expansion of macro 'DOMAIN_STATE'
- 61 | DOMAIN_STATE(value*, gc_regs)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:65:1: note: in expansion of macro 'DOMAIN_STATE'
- 65 | DOMAIN_STATE(struct caml_minor_tables*, minor_tables)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:67:1: note: in expansion of macro 'DOMAIN_STATE'
- 67 | DOMAIN_STATE(struct mark_stack*, mark_stack)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:70:1: note: in expansion of macro 'DOMAIN_STATE'
- 70 | DOMAIN_STATE(uintnat, marking_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:73:1: note: in expansion of macro 'DOMAIN_STATE'
- 73 | DOMAIN_STATE(uintnat, sweeping_done)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:76:1: note: in expansion of macro 'DOMAIN_STATE'
- 76 | DOMAIN_STATE(uintnat, allocated_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:80:1: note: in expansion of macro 'DOMAIN_STATE'
- 80 | DOMAIN_STATE(uintnat, allocated_words_direct)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:84:1: note: in expansion of macro 'DOMAIN_STATE'
- 84 | DOMAIN_STATE(uintnat, allocated_words_suspended)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:91:1: note: in expansion of macro 'DOMAIN_STATE'
- 91 | DOMAIN_STATE(uintnat, allocated_words_resumed)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:96:1: note: in expansion of macro 'DOMAIN_STATE'
- 96 | DOMAIN_STATE(intnat, current_ramp_up_allocated_words_diff)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:114:1: note: in expansion of macro 'DOMAIN_STATE'
- 114 | DOMAIN_STATE(uintnat, swept_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:116:1: note: in expansion of macro 'DOMAIN_STATE'
- 116 | DOMAIN_STATE(caml_gc_policy, gc_policy)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:119:1: note: in expansion of macro 'DOMAIN_STATE'
- 119 | DOMAIN_STATE(uintnat, major_slice_epoch)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:121:1: note: in expansion of macro 'DOMAIN_STATE'
- 121 | DOMAIN_STATE(struct caml__roots_block*, local_roots)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:123:1: note: in expansion of macro 'DOMAIN_STATE'
- 123 | DOMAIN_STATE(struct caml_ephe_info*, ephe_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:125:1: note: in expansion of macro 'DOMAIN_STATE'
- 125 | DOMAIN_STATE(struct caml_final_info*, final_info)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:127:1: note: in expansion of macro 'DOMAIN_STATE'
- 127 | DOMAIN_STATE(intnat, backtrace_pos)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:129:1: note: in expansion of macro 'DOMAIN_STATE'
- 129 | DOMAIN_STATE(intnat, backtrace_active)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:131:1: note: in expansion of macro 'DOMAIN_STATE'
- 131 | DOMAIN_STATE(backtrace_slot*, backtrace_buffer)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:133:1: note: in expansion of macro 'DOMAIN_STATE'
- 133 | DOMAIN_STATE(value, backtrace_last_exn)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:135:1: note: in expansion of macro 'DOMAIN_STATE'
- 135 | DOMAIN_STATE(intnat, compare_unordered)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:137:1: note: in expansion of macro 'DOMAIN_STATE'
- 137 | DOMAIN_STATE(uintnat, oo_next_id_local)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:139:1: note: in expansion of macro 'DOMAIN_STATE'
- 139 | DOMAIN_STATE(uintnat, requested_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:140:1: note: in expansion of macro 'DOMAIN_STATE'
- 140 | DOMAIN_STATE(uintnat, requested_global_major_slice)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:142:1: note: in expansion of macro 'DOMAIN_STATE'
- 142 | DOMAIN_STATE(uintnat, requested_minor_gc)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:144:1: note: in expansion of macro 'DOMAIN_STATE'
- 144 | DOMAIN_STATE(atomic_uintnat, requested_external_interrupt)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:146:1: note: in expansion of macro 'DOMAIN_STATE'
- 146 | DOMAIN_STATE(int, parser_trace)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:149:1: note: in expansion of macro 'DOMAIN_STATE'
- 149 | DOMAIN_STATE(asize_t, minor_heap_wsz)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:151:1: note: in expansion of macro 'DOMAIN_STATE'
- 151 | DOMAIN_STATE(struct caml_heap_state*, shared_heap)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:153:1: note: in expansion of macro 'DOMAIN_STATE'
- 153 | DOMAIN_STATE(int, id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:155:1: note: in expansion of macro 'DOMAIN_STATE'
- 155 | DOMAIN_STATE(int, unique_id)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:157:1: note: in expansion of macro 'DOMAIN_STATE'
- 157 | DOMAIN_STATE(value, dls_root)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:160:1: note: in expansion of macro 'DOMAIN_STATE'
- 160 | DOMAIN_STATE(double, extra_heap_resources)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:161:1: note: in expansion of macro 'DOMAIN_STATE'
- 161 | DOMAIN_STATE(double, extra_heap_resources_minor)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:163:1: note: in expansion of macro 'DOMAIN_STATE'
- 163 | DOMAIN_STATE(uintnat, dependent_size)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:164:1: note: in expansion of macro 'DOMAIN_STATE'
- 164 | DOMAIN_STATE(uintnat, dependent_allocated)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:167:1: note: in expansion of macro 'DOMAIN_STATE'
- 167 | DOMAIN_STATE(intnat, slice_target)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:170:1: note: in expansion of macro 'DOMAIN_STATE'
- 170 | DOMAIN_STATE(intnat, slice_budget)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:173:1: note: in expansion of macro 'DOMAIN_STATE'
- 173 | DOMAIN_STATE(intnat, major_work_done_between_slices)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:175:1: note: in expansion of macro 'DOMAIN_STATE'
- 175 | DOMAIN_STATE(struct caml_extern_state*, extern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:176:1: note: in expansion of macro 'DOMAIN_STATE'
- 176 | DOMAIN_STATE(struct caml_intern_state*, intern_state)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:184:1: note: in expansion of macro 'DOMAIN_STATE'
- 184 | DOMAIN_STATE(uintnat, stat_minor_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:185:1: note: in expansion of macro 'DOMAIN_STATE'
- 185 | DOMAIN_STATE(uintnat, stat_promoted_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:186:1: note: in expansion of macro 'DOMAIN_STATE'
- 186 | DOMAIN_STATE(uintnat, stat_major_words)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:187:1: note: in expansion of macro 'DOMAIN_STATE'
- 187 | DOMAIN_STATE(intnat, stat_forced_major_collections)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:188:1: note: in expansion of macro 'DOMAIN_STATE'
- 188 | DOMAIN_STATE(uintnat, stat_blocks_marked)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:192:1: note: in expansion of macro 'DOMAIN_STATE'
- 192 | DOMAIN_STATE(int, inside_stw_handler)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:197:1: note: in expansion of macro 'DOMAIN_STATE'
- 197 | DOMAIN_STATE(intnat, trap_sp_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:198:1: note: in expansion of macro 'DOMAIN_STATE'
- 198 | DOMAIN_STATE(intnat, trap_barrier_off)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:199:1: note: in expansion of macro 'DOMAIN_STATE'
- 199 | DOMAIN_STATE(int64_t, trap_barrier_block)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:200:1: note: in expansion of macro 'DOMAIN_STATE'
- 200 | DOMAIN_STATE(struct caml_exception_context*, external_raise)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:203:1: note: in expansion of macro 'DOMAIN_STATE'
- 203 | DOMAIN_STATE(struct memprof_domain_s *, memprof)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:204:1: note: in expansion of macro 'DOMAIN_STATE'
- 204 | DOMAIN_STATE(value *, memprof_young_trigger)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:165:22: warning: ISO C99 does not support '_Alignas' [-Wpedantic]
- 165 | #define CAMLalign(n) _Alignas(n)
- | ^~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:35:34: note: in expansion of macro 'CAMLalign'
- 35 | #define DOMAIN_STATE(type, name) CAMLalign(8) type name;
- | ^~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.tbl:206:1: note: in expansion of macro 'DOMAIN_STATE'
- 206 | DOMAIN_STATE(extra_params_area, extra_params)
- | ^~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/misc.h:174:26: warning: ISO C99 does not support '_Thread_local' [-Wpedantic]
- 174 | #define CAMLthread_local _Thread_local
- | ^~~~~~~~~~~~~
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:50:14: note: in expansion of macro 'CAMLthread_local'
- 50 | CAMLextern CAMLthread_local caml_domain_state* caml_state;
- | ^~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:71:
- /home/opam/.opam/5.4/lib/ocaml/caml/domain_state.h:62:27: warning: ISO C99 does not support '_Noreturn' [-Wpedantic]
- 62 | CAMLnoret CAMLextern void caml_bad_caml_state(void);
- | ^~~~~~~~~~~~~~~~~~~
Processing 2/4: [mirage-crypto: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mirage-crypto" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mirage-crypto.0.8.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I tests/.test_common.objs/byte -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/oUnit -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -H src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/public_cmi -no-alias-deps -o tests/.test_common.objs/byte/test_common.cmo -c -impl tests/test_common.ml)
- File "tests/test_common.ml", line 9, characters 5-8:
- 9 | if len cs <= n then [ cs ]
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I tests/.test_symmetric_runner.eobjs/byte -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/oUnit -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -H src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/public_cmi -I tests/.test_common.objs/byte -no-alias-deps -o tests/.test_symmetric_runner.eobjs/byte/test_cipher.cmo -c -impl tests/test_cipher.ml)
- File "tests/test_cipher.ml", line 95, characters 17-28:
- 95 | let blocks = Cstruct.len nist_sp_800_38a / block_size in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I tests/.test_common.objs/byte -I tests/.test_common.objs/native -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/oUnit -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -H src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/native -I src/.mirage_crypto.objs/public_cmi -cmi-file tests/.test_common.objs/byte/test_common.cmi -no-alias-deps -o tests/.test_common.objs/native/test_common.cmx -c -impl tests/test_common.ml)
- File "tests/test_common.ml", line 9, characters 5-8:
- 9 | if len cs <= n then [ cs ]
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I tests/.test_symmetric_runner.eobjs/byte -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/oUnit -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -H src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/public_cmi -I tests/.test_common.objs/byte -no-alias-deps -o tests/.test_symmetric_runner.eobjs/byte/test_hmac.cmo -c -impl tests/test_hmac.ml)
- File "tests/test_hmac.ml", line 108, characters 34-37:
- 108 | else Cstruct.(sub x 0 (min (len x) 16)))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "tests/test_hmac.ml", line 217, characters 52-55:
- 217 | assert_cs_equal result Cstruct.(sub computed 0 (len result))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I tests/.test_symmetric_runner.eobjs/byte -I tests/.test_symmetric_runner.eobjs/native -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/oUnit -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -H src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/native -I src/.mirage_crypto.objs/public_cmi -I tests/.test_common.objs/byte -I tests/.test_common.objs/native -cmi-file tests/.test_symmetric_runner.eobjs/byte/test_hmac.cmi -no-alias-deps -o tests/.test_symmetric_runner.eobjs/native/test_hmac.cmx -c -impl tests/test_hmac.ml)
- File "tests/test_hmac.ml", line 108, characters 34-37:
- 108 | else Cstruct.(sub x 0 (min (len x) 16)))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "tests/test_hmac.ml", line 217, characters 52-55:
- 217 | assert_cs_equal result Cstruct.(sub computed 0 (len result))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I tests/.test_symmetric_runner.eobjs/byte -I tests/.test_symmetric_runner.eobjs/native -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/oUnit -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ounit2 -I /home/opam/.opam/5.4/lib/ounit2/advanced -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/stdlib-shims -H src/.mirage_crypto.objs/byte -I src/.mirage_crypto.objs/native -I src/.mirage_crypto.objs/public_cmi -I tests/.test_common.objs/byte -I tests/.test_common.objs/native -cmi-file tests/.test_symmetric_runner.eobjs/byte/test_cipher.cmi -no-alias-deps -o tests/.test_symmetric_runner.eobjs/native/test_cipher.cmx -c -impl tests/test_cipher.ml)
- File "tests/test_cipher.ml", line 95, characters 17-28:
- 95 | let blocks = Cstruct.len nist_sp_800_38a / block_size in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default/tests && ./test_symmetric_runner.exe)
- accel: XOR AES GHASH
- ........................................................................................................................
- Ran: 120 tests in: 0.16 seconds.
- OK
-> compiled mirage-crypto.0.8.0
-> removed mirage-crypto.0.8.0
-> installed mirage-crypto.0.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 18:54.27 ---> saved as "7d14182ac63e456ce3562d0a7f26eedf6178cac7d9ee87d28051b82bf9dd6b52"
Job succeeded
2026-03-25 18:55.00: Job succeeded