(not at the head of any monitored branch or PR)
2026-03-28 23:54.08: New job: test libbinaryen.126.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29612/head (4c7f1e7d32763a5e30b6cdb4bab020cae874883c)
                              on debian-13-ocaml-5.4/arm32v7

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29612/head" && git reset --hard 4c7f1e7d
git fetch origin master
git merge --no-edit 603a60b422594a5504cf7434b7765fd5b39e978e
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:c95f25fc7bfaa76edc45bc23c42aceff342f8dc6089f36316509a8ee6536f83f
SHELL [ "/usr/bin/linux32", "/bin/sh", "-c" ]
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 libbinaryen.126.0.0 126.0.0
RUN opam reinstall libbinaryen.126.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'libbinaryen.126.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test libbinaryen.126.0.0) || true
RUN opam reinstall --with-test --verbose libbinaryen.126.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'libbinaryen.126.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-28 23:54.08: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:c95f25fc7bfaa76edc45bc23c42aceff342f8dc6089f36316509a8ee6536f83f-libbinaryen.126.0.0-4c7f1e7d32763a5e30b6cdb4bab020cae874883c"
2026-03-28 23:54.08: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:c95f25fc7bfaa76edc45bc23c42aceff342f8dc6089f36316509a8ee6536f83f)
 (shell /usr/bin/linux32 /bin/sh -c)
 (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 libbinaryen.126.0.0 126.0.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall libbinaryen.126.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'libbinaryen.126.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test libbinaryen.126.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose libbinaryen.126.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'libbinaryen.126.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-28 23:54.08: Waiting for resource in pool OCluster
2026-03-28 23:54.09: Waiting for worker…
2026-03-28 23:54.09: Got resource from pool OCluster
Building on molpadia.caelum.ci.dev
All commits already cached
Updating files:  81% (15094/18546)
Updating files:  82% (15208/18546)
Updating files:  83% (15394/18546)
Updating files:  84% (15579/18546)
Updating files:  85% (15765/18546)
Updating files:  86% (15950/18546)
Updating files:  87% (16136/18546)
Updating files:  88% (16321/18546)
Updating files:  89% (16506/18546)
Updating files:  90% (16692/18546)
Updating files:  91% (16877/18546)
Updating files:  92% (17063/18546)
Updating files:  93% (17248/18546)
Updating files:  94% (17434/18546)
Updating files:  95% (17619/18546)
Updating files:  96% (17805/18546)
Updating files:  97% (17990/18546)
Updating files:  98% (18176/18546)
Updating files:  99% (18361/18546)
Updating files: 100% (18546/18546)
Updating files: 100% (18546/18546), done.
HEAD is now at 603a60b422 Merge pull request #29604 from Octachron/release-utop-2.17.0
Updating 603a60b422..4c7f1e7d32
Fast-forward
 packages/libbinaryen/libbinaryen.126.0.0/opam | 29 +++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 packages/libbinaryen/libbinaryen.126.0.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:c95f25fc7bfaa76edc45bc23c42aceff342f8dc6089f36316509a8ee6536f83f)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:c95f25fc7bfaa76edc45bc23c42aceff342f8dc6089f36316509a8ee6536f83f' locally
docker.io/ocaml/opam@sha256:c95f25fc7bfaa76edc45bc23c42aceff342f8dc6089f36316509a8ee6536f83f: Pulling from ocaml/opam
e7e4c87ce695: Already exists
098244b1fe4f: Already exists
94a818ec2cdc: Already exists
29e77b813c7f: Already exists
b9dc986333a7: Already exists
023a3b8ea315: Already exists
2684ea5ea2fe: Already exists
93c319c970b2: Already exists
03f63d243d48: Already exists
237874024f5b: Already exists
954f264158bf: Already exists
85f6eb6723bd: Already exists
2882e9da3bb0: Already exists
4aabbd87a4c4: Already exists
4f386ee1e947: Already exists
76eac5355b1e: Already exists
7732af2249d2: Already exists
0864fc6233a3: Already exists
74a602ddff51: Already exists
eff8656d1a08: Already exists
480ead97e7de: Already exists
71d9c83b5938: Already exists
4f4fb700ef54: Already exists
46ffbb314b18: Already exists
9ad678cce639: Already exists
cee0ad8655f3: Already exists
d7a6444c98ec: Already exists
fb7ac70d48b8: Already exists
9e9d8c0fc63b: Already exists
4fd15bd8b00c: Already exists
cfb25ffd51ce: Already exists
a1d4a67b1423: Already exists
b5f05950c5d7: Already exists
ffaeb3c9d76d: Already exists
4c3b6722757e: Already exists
0f58a95c7a9b: Already exists
c3e40142c411: Already exists
7f8475cb6605: Already exists
05a50efaf303: Already exists
6b01dec062a8: Already exists
9fd1e9989233: Already exists
0dba846700e5: Pulling fs layer
bf52bc4812dd: Pulling fs layer
1b2b9281aa17: Pulling fs layer
bd50ec9d8592: Pulling fs layer
68e2e1973b70: Pulling fs layer
57cf45132733: Pulling fs layer
265accc134f8: Pulling fs layer
68e2e1973b70: Waiting
57cf45132733: Waiting
265accc134f8: Waiting
bd50ec9d8592: Waiting
bf52bc4812dd: Download complete
0dba846700e5: Download complete
1b2b9281aa17: Verifying Checksum
1b2b9281aa17: Download complete
0dba846700e5: Pull complete
bf52bc4812dd: Pull complete
1b2b9281aa17: Pull complete
68e2e1973b70: Verifying Checksum
68e2e1973b70: Download complete
265accc134f8: Download complete
bd50ec9d8592: Verifying Checksum
bd50ec9d8592: Download complete
bd50ec9d8592: Pull complete
68e2e1973b70: Pull complete
57cf45132733: Pull complete
265accc134f8: Pull complete
Digest: sha256:c95f25fc7bfaa76edc45bc23c42aceff342f8dc6089f36316509a8ee6536f83f
Status: Downloaded newer image for ocaml/opam@sha256:c95f25fc7bfaa76edc45bc23c42aceff342f8dc6089f36316509a8ee6536f83f
2026-03-28 23:54.16 ---> using "842f1388ec2987f766804552c28c55560fa02e4f2d5abda53e3e17755e9377f6" from cache

/: (shell /usr/bin/linux32 /bin/sh -c)

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-28 23:54.16 ---> using "ce33c090cee681486d95d74a367be59729600fac719653754f2174b3c9771c51" 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-28 23:54.16 ---> using "6c76db98d2847d185390e90ace0943bdfb6d6adba962f8dcd26c60bc2625937d" 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=arm32 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                 79
# 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-option-bytecode-only.1, ocaml-options-vanilla.1
# ocaml:native         false
# ocaml:native-tools   false
# ocaml:native-dynlink false
# 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+bytecode-only
2026-03-28 23:54.16 ---> using "9ed5cda145d4b3c88e63b67704995cdd356c06f9f9e273d5bada87220c40dd15" 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-28 23:54.16 ---> using "da8dd6faa512006558db46983f2d898758c4e5d6eeb28079d849c0dc2da4d351" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-28 23:54.21 ---> saved as "ea4d27dee11a20f474c8ebb6316f4f586e80e5d21b5b1ebdcebcb0bd6789f3ae"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-28 23:54.53 ---> saved as "ae5f5dc1407c06ae5b2d674326cd91bedb8bd32262badfa0c8a329cfa439c462"

/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 armhf Packages [9237 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main armhf Packages [109 kB]
- Fetched 9577 kB in 7s (1305 kB/s)
- Reading package lists...
- 
2026-03-28 23:55.02 ---> saved as "a4c9202f1efe18627c31371cfa9376296adfe5a21a2ecf653afc505a7ca8d66e"

/home/opam: (run (shell "opam pin add -k version -yn libbinaryen.126.0.0 126.0.0"))
libbinaryen is now pinned to version 126.0.0
2026-03-28 23:55.02 ---> saved as "684dd85470d2c513ac823f2e812198fd1a6abae51a2ea06d2247554dea24af3c"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall libbinaryen.126.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'libbinaryen.126.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
libbinaryen.126.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 5 packages
  - install conf-cmake        1                [required by libbinaryen]
  - install csexp             1.5.2            [required by dune-configurator]
  - install dune              3.22.0           [required by libbinaryen]
  - install dune-configurator 3.22.0           [required by libbinaryen]
  - install libbinaryen       126.0.0 (pinned)

The following system packages will first need to be installed:
    cmake

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "cmake"
- Selecting previously unselected package cmake-data.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20380 files and directories currently installed.)
- Preparing to unpack .../0-cmake-data_3.31.6-2_all.deb ...
- Unpacking cmake-data (3.31.6-2) ...
- Selecting previously unselected package libxml2:armhf.
- Preparing to unpack .../1-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_armhf.deb ...
- Unpacking libxml2:armhf (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libarchive13t64:armhf.
- Preparing to unpack .../2-libarchive13t64_3.7.4-4_armhf.deb ...
- Unpacking libarchive13t64:armhf (3.7.4-4) ...
- Selecting previously unselected package libjsoncpp26:armhf.
- Preparing to unpack .../3-libjsoncpp26_1.9.6-3_armhf.deb ...
- Unpacking libjsoncpp26:armhf (1.9.6-3) ...
- Selecting previously unselected package librhash1:armhf.
- Preparing to unpack .../4-librhash1_1.4.5-1_armhf.deb ...
- Unpacking librhash1:armhf (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:armhf.
- Preparing to unpack .../5-libuv1t64_1.50.0-2_armhf.deb ...
- Unpacking libuv1t64:armhf (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../6-cmake_3.31.6-2_armhf.deb ...
- Unpacking cmake (3.31.6-2) ...
- Setting up libuv1t64:armhf (1.50.0-2) ...
- Setting up libjsoncpp26:armhf (1.9.6-3) ...
- Setting up cmake-data (3.31.6-2) ...
- Setting up librhash1:armhf (1.4.5-1) ...
- Setting up libxml2:armhf (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libarchive13t64:armhf (3.7.4-4) ...
- Setting up cmake (3.31.6-2) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-cmake.1  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-cmake.1
-> retrieved dune.3.22.0, dune-configurator.3.22.0  (cached)
-> retrieved libbinaryen.126.0.0  (https://github.com/grain-lang/libbinaryen/releases/download/v126.0.0/libbinaryen-v126.0.0.tar.gz)
-> installed dune.3.22.0
-> installed csexp.1.5.2
-> installed dune-configurator.3.22.0
-> installed libbinaryen.126.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-29 00:08.27 ---> saved as "6049c5f95c364be7997166fd9d9d885afc7d21e7f45dd9ef6f4d6e63c8975ed7"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test libbinaryen.126.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile libbinaryen          126.0.0 (pinned)
=== install 16 packages
  - install   cmdliner             2.1.0            [required by js_of_ocaml-compiler]
  - install   gen                  1.1              [required by sedlex]
  - install   js_of_ocaml-compiler 6.3.2            [required by libbinaryen]
  - install   menhir               20260209         [required by js_of_ocaml-compiler]
  - install   menhirCST            20260209         [required by menhir]
  - install   menhirGLR            20260209         [required by menhir]
  - install   menhirLib            20260209         [required by js_of_ocaml-compiler]
  - install   menhirSdk            20260209         [required by js_of_ocaml-compiler]
  - install   ocaml-compiler-libs  v0.17.0          [required by js_of_ocaml-compiler]
  - install   ppx_derivers         1.2.1            [required by ppxlib]
  - install   ppxlib               0.38.0           [required by js_of_ocaml-compiler]
  - install   sedlex               3.7              [required by js_of_ocaml-compiler]
  - install   seq                  base             [required by gen]
  - install   sexplib0             v0.17.0          [required by ppxlib]
  - install   stdlib-shims         0.3.0            [required by ppxlib]
  - install   yojson               3.0.0            [required by js_of_ocaml-compiler]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved gen.1.1  (https://opam.ocaml.org/cache)
-> retrieved js_of_ocaml-compiler.6.3.2  (https://opam.ocaml.org/cache)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed menhirCST.20260209
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> installed menhirGLR.20260209
-> installed ppx_derivers.1.2.1
-> installed menhirLib.20260209
-> retrieved ppxlib.0.38.0  (https://opam.ocaml.org/cache)
-> retrieved sedlex.3.7  (https://opam.ocaml.org/cache)
-> installed menhirSdk.20260209
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved sexplib0.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed gen.1.1
-> installed yojson.3.0.0
-> removed   libbinaryen.126.0.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed menhir.20260209
-> installed ppxlib.0.38.0
-> installed sedlex.3.7
-> installed js_of_ocaml-compiler.6.3.2
-> installed libbinaryen.126.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-29 00:24.17 ---> saved as "e970e9c9cb5d2706fc019b405dd70b796a3c7e773aa9cec871ac8da55f63168e"

/home/opam: (run (shell  "opam reinstall --with-test --verbose libbinaryen.126.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'libbinaryen.126.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile libbinaryen 126.0.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [libbinaryen: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "libbinaryen" "-j" "79" (CWD=/home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0)
- (cd _build/default && /usr/bin/cmake -S binaryen -B binaryen -G 'Unix Makefiles' '-DCMAKE_CXX_FLAGS=-Wno-unused-variable -Wno-maybe-uninitialized' -DBUILD_TESTS=OFF -DBUILD_TOOLS=OFF -DBUILD_STATIC_LIB=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=binaryen)
- -- The C compiler identification is GNU 14.2.0
- -- The CXX compiler identification is GNU 14.2.0
- -- Detecting C compiler ABI info
- -- Detecting C compiler ABI info - done
- -- Check for working C compiler: /usr/bin/cc - skipped
- -- Detecting C compile features
- -- Detecting C compile features - done
- -- Detecting CXX compiler ABI info
- -- Detecting CXX compiler ABI info - done
- -- Check for working CXX compiler: /usr/bin/c++ - skipped
- -- Detecting CXX compile features
- -- Detecting CXX compile features - done
- -- Performing Test CMAKE_HAVE_LIBC_PTHREAD
- -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
- -- Found Threads: TRUE
- -- Building with -fno-omit-frame-pointer
- -- Building with -fno-rtti
- -- Building with -fPIC
- -- Building with -UNDEBUG
- -- Building with -DBUILD_LLVM_DWARF
- -- Building with -Wall
- -- Building with -Werror
- -- Building with -Wextra
- -- Building with -Wno-unused-parameter
- -- Building with -Wno-dangling-pointer
- -- Building with -Wno-implicit-int-float-conversion
- -- Building with -Wno-unknown-warning-option
- -- Building with -Wswitch
- -- Building with -Wimplicit-fallthrough
- -- Building with -Wnon-virtual-dtor
- -- Building libbinaryen as shared library.
- -- Linking with -Bsymbolic
- -- Configuring done (1.1s)
- -- Generating done (0.1s)
- -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen
- (cd _build/default && /usr/bin/cmake --build binaryen --config Release -- -j4)
- [  0%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Binary.cpp.o
- [  1%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ConvertUTF.cpp.o
- [  1%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DataExtractor.cpp.o
- [  1%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Debug.cpp.o
- [  2%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DJB.cpp.o
- [  2%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Dwarf.cpp.o
- [  3%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/dwarf2yaml.cpp.o
- [  3%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFAbbreviationDeclaration.cpp.o
- [  3%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFAcceleratorTable.cpp.o
- [  4%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFAddressRange.cpp.o
- [  4%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFCompileUnit.cpp.o
- [  4%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFContext.cpp.o
- [  5%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDataExtractor.cpp.o
- [  5%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugAbbrev.cpp.o
- [  6%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugAddr.cpp.o
- [  6%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugAranges.cpp.o
- [  6%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugArangeSet.cpp.o
- [  7%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugFrame.cpp.o
- [  7%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugInfoEntry.cpp.o
- [  7%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugLine.cpp.o
- [  8%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugLoc.cpp.o
- [  8%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugMacro.cpp.o
- [  9%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugPubTable.cpp.o
- [  9%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugRangeList.cpp.o
- [  9%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugRnglists.cpp.o
- [ 10%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDie.cpp.o
- [ 10%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFEmitter.cpp.o
- [ 10%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFExpression.cpp.o
- [ 11%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFFormValue.cpp.o
- [ 11%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFGdbIndex.cpp.o
- [ 12%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFListTable.cpp.o
- [ 12%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFTypeUnit.cpp.o
- [ 12%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFUnit.cpp.o
- [ 13%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFUnitIndex.cpp.o
- [ 13%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFVerifier.cpp.o
- [ 13%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFVisitor.cpp.o
- [ 14%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFYAML.cpp.o
- [ 14%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Error.cpp.o
- [ 15%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ErrorHandling.cpp.o
- [ 15%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/FormatVariadic.cpp.o
- [ 15%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Hashing.cpp.o
- [ 16%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/LEB128.cpp.o
- [ 16%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/LineIterator.cpp.o
- [ 16%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/MCRegisterInfo.cpp.o
- [ 17%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/MD5.cpp.o
- [ 17%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/MemoryBuffer.cpp.o
- [ 18%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/NativeFormatting.cpp.o
- [ 18%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ObjectFile.cpp.o
- [ 18%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/obj2yaml_Error.cpp.o
- [ 19%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Optional.cpp.o
- [ 19%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Path.cpp.o
- [ 19%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/raw_ostream.cpp.o
- [ 20%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ScopedPrinter.cpp.o
- [ 20%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/SmallVector.cpp.o
- [ 21%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/SourceMgr.cpp.o
- [ 21%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/StringMap.cpp.o
- [ 21%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/StringRef.cpp.o
- [ 22%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/SymbolicFile.cpp.o
- [ 22%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Twine.cpp.o
- [ 22%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/UnicodeCaseFold.cpp.o
- [ 23%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/WithColor.cpp.o
- [ 23%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/YAMLParser.cpp.o
- [ 24%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/YAMLTraits.cpp.o
- [ 24%] Built target llvm_dwarf
- [ 24%] Building CXX object CMakeFiles/binaryen.dir/src/ir/ExpressionManipulator.cpp.o
- [ 24%] Building CXX object CMakeFiles/binaryen.dir/src/ir/ExpressionAnalyzer.cpp.o
- [ 25%] Building CXX object CMakeFiles/binaryen.dir/src/ir/drop.cpp.o
- [ 25%] Building CXX object CMakeFiles/binaryen.dir/src/ir/effects.cpp.o
- [ 25%] Building CXX object CMakeFiles/binaryen.dir/src/ir/eh-utils.cpp.o
- [ 26%] Building CXX object CMakeFiles/binaryen.dir/src/ir/export-utils.cpp.o
- [ 26%] Building CXX object CMakeFiles/binaryen.dir/src/ir/intrinsics.cpp.o
- [ 26%] Building CXX object CMakeFiles/binaryen.dir/src/ir/lubs.cpp.o
- [ 27%] Building CXX object CMakeFiles/binaryen.dir/src/ir/memory-utils.cpp.o
- [ 27%] Building CXX object CMakeFiles/binaryen.dir/src/ir/metadata.cpp.o
- [ 28%] Building CXX object CMakeFiles/binaryen.dir/src/ir/module-utils.cpp.o
- [ 28%] Building CXX object CMakeFiles/binaryen.dir/src/ir/names.cpp.o
- [ 28%] Building CXX object CMakeFiles/binaryen.dir/src/ir/possible-contents.cpp.o
- [ 29%] Building CXX object CMakeFiles/binaryen.dir/src/ir/properties.cpp.o
- [ 29%] Building CXX object CMakeFiles/binaryen.dir/src/ir/LocalGraph.cpp.o
- [ 29%] Building CXX object CMakeFiles/binaryen.dir/src/ir/LocalStructuralDominance.cpp.o
- [ 30%] Building CXX object CMakeFiles/binaryen.dir/src/ir/principal-type.cpp.o
- [ 30%] Building CXX object CMakeFiles/binaryen.dir/src/ir/public-type-validator.cpp.o
- [ 31%] Building CXX object CMakeFiles/binaryen.dir/src/ir/ReFinalize.cpp.o
- [ 31%] Building CXX object CMakeFiles/binaryen.dir/src/ir/return-utils.cpp.o
- [ 31%] Building CXX object CMakeFiles/binaryen.dir/src/ir/runtime-table.cpp.o
- [ 32%] Building CXX object CMakeFiles/binaryen.dir/src/ir/stack-utils.cpp.o
- [ 32%] Building CXX object CMakeFiles/binaryen.dir/src/ir/table-utils.cpp.o
- [ 32%] Building CXX object CMakeFiles/binaryen.dir/src/ir/type-updating.cpp.o
- [ 33%] Building CXX object CMakeFiles/binaryen.dir/src/ir/module-splitting.cpp.o
- [ 33%] Building CXX object CMakeFiles/binaryen.dir/src/asmjs/asm_v_wasm.cpp.o
- [ 34%] Building CXX object CMakeFiles/binaryen.dir/src/asmjs/asmangle.cpp.o
- [ 34%] Building CXX object CMakeFiles/binaryen.dir/src/asmjs/shared-constants.cpp.o
- [ 34%] Building CXX object CMakeFiles/binaryen.dir/src/cfg/Relooper.cpp.o
- [ 35%] Building CXX object CMakeFiles/binaryen.dir/src/emscripten-optimizer/optimizer-shared.cpp.o
- [ 35%] Building CXX object CMakeFiles/binaryen.dir/src/emscripten-optimizer/parser.cpp.o
- [ 35%] Building CXX object CMakeFiles/binaryen.dir/src/emscripten-optimizer/simple_ast.cpp.o
- [ 36%] Building CXX object CMakeFiles/binaryen.dir/src/interpreter/expression-iterator.cpp.o
- [ 36%] Building CXX object CMakeFiles/binaryen.dir/src/interpreter/interpreter.cpp.o
- [ 37%] Building CXX object CMakeFiles/binaryen.dir/src/passes/param-utils.cpp.o
- [ 37%] Building CXX object CMakeFiles/binaryen.dir/src/passes/pass.cpp.o
- [ 37%] Building CXX object CMakeFiles/binaryen.dir/src/passes/string-utils.cpp.o
- [ 38%] Building CXX object CMakeFiles/binaryen.dir/src/passes/test_passes.cpp.o
- [ 38%] Building CXX object CMakeFiles/binaryen.dir/src/passes/AbstractTypeRefining.cpp.o
- [ 38%] Building CXX object CMakeFiles/binaryen.dir/src/passes/AlignmentLowering.cpp.o
- [ 39%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Asyncify.cpp.o
- [ 39%] Building CXX object CMakeFiles/binaryen.dir/src/passes/AvoidReinterprets.cpp.o
- [ 40%] Building CXX object CMakeFiles/binaryen.dir/src/passes/CoalesceLocals.cpp.o
- [ 40%] Building CXX object CMakeFiles/binaryen.dir/src/passes/CodePushing.cpp.o
- [ 40%] Building CXX object CMakeFiles/binaryen.dir/src/passes/CodeFolding.cpp.o
- [ 41%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ConstantFieldPropagation.cpp.o
- [ 41%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ConstHoisting.cpp.o
- [ 41%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DataFlowOpts.cpp.o
- [ 42%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DeadArgumentElimination.cpp.o
- [ 42%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DeadCodeElimination.cpp.o
- [ 43%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DeAlign.cpp.o
- [ 43%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DebugLocationPropagation.cpp.o
- [ 43%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DeNaN.cpp.o
- [ 44%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Directize.cpp.o
- [ 44%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DuplicateImportElimination.cpp.o
- [ 44%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DuplicateFunctionElimination.cpp.o
- [ 45%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DWARF.cpp.o
- [ 45%] Building CXX object CMakeFiles/binaryen.dir/src/passes/EncloseWorld.cpp.o
- [ 46%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ExtractFunction.cpp.o
- [ 46%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Flatten.cpp.o
- [ 46%] Building CXX object CMakeFiles/binaryen.dir/src/passes/FuncCastEmulation.cpp.o
- [ 47%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GenerateDynCalls.cpp.o
- [ 47%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GlobalEffects.cpp.o
- [ 47%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GlobalRefining.cpp.o
- [ 48%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GlobalStructInference.cpp.o
- [ 48%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GlobalTypeOptimization.cpp.o
- [ 49%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GUFA.cpp.o
- [ 49%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Outlining.cpp.o
- [ 49%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Heap2Local.cpp.o
- [ 50%] Building CXX object CMakeFiles/binaryen.dir/src/passes/HeapStoreOptimization.cpp.o
- [ 50%] Building CXX object CMakeFiles/binaryen.dir/src/passes/I64ToI32Lowering.cpp.o
- [ 50%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Inlining.cpp.o
- [ 51%] Building CXX object CMakeFiles/binaryen.dir/src/passes/InstrumentBranchHints.cpp.o
- [ 51%] Building CXX object CMakeFiles/binaryen.dir/src/passes/InstrumentLocals.cpp.o
- [ 51%] Building CXX object CMakeFiles/binaryen.dir/src/passes/InstrumentMemory.cpp.o
- [ 52%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Intrinsics.cpp.o
- [ 52%] Building CXX object CMakeFiles/binaryen.dir/src/passes/J2CLItableMerging.cpp.o
- [ 53%] Building CXX object CMakeFiles/binaryen.dir/src/passes/J2CLOpts.cpp.o
- [ 53%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LegalizeJSInterface.cpp.o
- [ 53%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LimitSegments.cpp.o
- [ 54%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LLVMMemoryCopyFillLowering.cpp.o
- [ 54%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LocalCSE.cpp.o
- [ 54%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LocalSubtyping.cpp.o
- [ 55%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LogExecution.cpp.o
- [ 55%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LoopInvariantCodeMotion.cpp.o
- [ 56%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Memory64Lowering.cpp.o
- [ 56%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MemoryPacking.cpp.o
- [ 56%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MergeBlocks.cpp.o
- [ 57%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MergeSimilarFunctions.cpp.o
- [ 57%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MergeLocals.cpp.o
- [ 57%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Metrics.cpp.o
- [ 58%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MinifyImportsAndExports.cpp.o
- [ 58%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MinimizeRecGroups.cpp.o
- [ 59%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Monomorphize.cpp.o
- [ 59%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MultiMemoryLowering.cpp.o
- [ 59%] Building CXX object CMakeFiles/binaryen.dir/src/passes/NameList.cpp.o
- [ 60%] Building CXX object CMakeFiles/binaryen.dir/src/passes/NameTypes.cpp.o
- [ 60%] Building CXX object CMakeFiles/binaryen.dir/src/passes/NoInline.cpp.o
- [ 60%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LLVMNontrappingFPToIntLowering.cpp.o
- [ 61%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OnceReduction.cpp.o
- [ 61%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OptimizeAddedConstants.cpp.o
- [ 62%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OptimizeCasts.cpp.o
- [ 62%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OptimizeInstructions.cpp.o
- [ 62%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OptimizeForJS.cpp.o
- [ 63%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PickLoadSigns.cpp.o
- [ 63%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Poppify.cpp.o
- [ 63%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PostEmscripten.cpp.o
- [ 64%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Precompute.cpp.o
- [ 64%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Print.cpp.o
- [ 65%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PrintCallGraph.cpp.o
- [ 65%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PrintFeatures.cpp.o
- [ 65%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PrintFunctionMap.cpp.o
- [ 66%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RoundTrip.cpp.o
- [ 66%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SetGlobals.cpp.o
- [ 66%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SignaturePruning.cpp.o
- [ 67%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SignatureRefining.cpp.o
- [ 67%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SignExtLowering.cpp.o
- [ 68%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StringLifting.cpp.o
- [ 68%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StringLowering.cpp.o
- [ 68%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Strip.cpp.o
- [ 69%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StripTargetFeatures.cpp.o
- [ 69%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StripToolchainAnnotations.cpp.o
- [ 69%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TraceCalls.cpp.o
- [ 70%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RandomizeBranchHints.cpp.o
- [ 70%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RedundantSetElimination.cpp.o
- [ 71%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveImports.cpp.o
- [ 71%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveMemoryInit.cpp.o
- [ 71%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveNonJSOps.cpp.o
- [ 72%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveRelaxedSIMD.cpp.o
- [ 72%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveUnusedBrs.cpp.o
- [ 72%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveUnusedNames.cpp.o
- [ 73%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveUnusedModuleElements.cpp.o
- [ 73%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveUnusedTypes.cpp.o
- [ 74%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReorderFunctions.cpp.o
- [ 74%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReorderGlobals.cpp.o
- [ 74%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReorderLocals.cpp.o
- [ 75%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReorderTypes.cpp.o
- [ 75%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReReloop.cpp.o
- [ 75%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TrapMode.cpp.o
- [ 76%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeGeneralizing.cpp.o
- [ 76%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeRefining.cpp.o
- [ 76%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeMerging.cpp.o
- [ 77%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeSSA.cpp.o
- [ 77%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SafeHeap.cpp.o
- [ 78%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SeparateDataSegments.cpp.o
- [ 78%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SimplifyGlobals.cpp.o
- [ 78%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SimplifyLocals.cpp.o
- [ 79%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Souperify.cpp.o
- [ 79%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SpillPointers.cpp.o
- [ 79%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StackCheck.cpp.o
- [ 80%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StripEH.cpp.o
- [ 80%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SSAify.cpp.o
- [ 81%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TupleOptimization.cpp.o
- [ 81%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TranslateEH.cpp.o
- [ 81%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeFinalizing.cpp.o
- [ 82%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Unsubtyping.cpp.o
- [ 82%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Untee.cpp.o
- [ 82%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Vacuum.cpp.o
- [ 83%] Building CXX object CMakeFiles/binaryen.dir/src/passes/WasmIntrinsics.cpp.o
- [ 83%] Building CXX object CMakeFiles/binaryen.dir/src/parser/context-decls.cpp.o
- [ 84%] Building CXX object CMakeFiles/binaryen.dir/src/parser/context-defs.cpp.o
- [ 84%] Building CXX object CMakeFiles/binaryen.dir/src/parser/lexer.cpp.o
- [ 84%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-1-decls.cpp.o
- [ 85%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-2-typedefs.cpp.o
- [ 85%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-3-implicit-types.cpp.o
- [ 85%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-4-module-types.cpp.o
- [ 86%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-5-defs.cpp.o
- [ 86%] Building CXX object CMakeFiles/binaryen.dir/src/parser/wast-parser.cpp.o
- [ 87%] Building CXX object CMakeFiles/binaryen.dir/src/parser/wat-parser.cpp.o
- [ 87%] Building CXX object CMakeFiles/binaryen.dir/src/support/suffix_tree.cpp.o
- [ 87%] Building CXX object CMakeFiles/binaryen.dir/src/support/suffix_tree_node.cpp.o
- [ 88%] Building CXX object CMakeFiles/binaryen.dir/src/support/archive.cpp.o
- [ 88%] Building CXX object CMakeFiles/binaryen.dir/src/support/bits.cpp.o
- [ 88%] Building CXX object CMakeFiles/binaryen.dir/src/support/colors.cpp.o
- [ 89%] Building CXX object CMakeFiles/binaryen.dir/src/support/command-line.cpp.o
- [ 89%] Building CXX object CMakeFiles/binaryen.dir/src/support/debug.cpp.o
- [ 90%] Building CXX object CMakeFiles/binaryen.dir/src/support/dfa_minimization.cpp.o
- [ 90%] Building CXX object CMakeFiles/binaryen.dir/src/support/file.cpp.o
- [ 90%] Building CXX object CMakeFiles/binaryen.dir/src/support/intervals.cpp.o
- [ 91%] Building CXX object CMakeFiles/binaryen.dir/src/support/istring.cpp.o
- [ 91%] Building CXX object CMakeFiles/binaryen.dir/src/support/json.cpp.o
- [ 91%] Building CXX object CMakeFiles/binaryen.dir/src/support/name.cpp.o
- [ 92%] Building CXX object CMakeFiles/binaryen.dir/src/support/path.cpp.o
- [ 92%] Building CXX object CMakeFiles/binaryen.dir/src/support/safe_integer.cpp.o
- [ 93%] Building CXX object CMakeFiles/binaryen.dir/src/support/string.cpp.o
- [ 93%] Building CXX object CMakeFiles/binaryen.dir/src/support/threads.cpp.o
- [ 93%] Building CXX object CMakeFiles/binaryen.dir/src/support/utilities.cpp.o
- [ 94%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/literal.cpp.o
- [ 94%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/parsing.cpp.o
- [ 94%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/source-map.cpp.o
- [ 95%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm.cpp.o
- [ 95%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-binary.cpp.o
- [ 96%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-debug.cpp.o
- [ 96%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-emscripten.cpp.o
- [ 96%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-interpreter.cpp.o
- [ 97%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-io.cpp.o
- [ 97%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-ir-builder.cpp.o
- [ 97%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-stack.cpp.o
- [ 98%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-stack-opts.cpp.o
- [ 98%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-type.cpp.o
- [ 99%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-type-shape.cpp.o
- [ 99%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-validator.cpp.o
- [ 99%] Building CXX object CMakeFiles/binaryen.dir/src/analysis/cfg.cpp.o
- [100%] Building CXX object CMakeFiles/binaryen.dir/src/binaryen-c.cpp.o
- [100%] Linking CXX shared library lib/libbinaryen.so
- [100%] Built target binaryen
- In file included from /usr/include/c++/14/memory:69,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/Optional.h:22,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:19,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/Support/Error.h:17,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/Error.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/dwarf2yaml.cpp:9:
- /usr/include/c++/14/bits/stl_uninitialized.h: In function '_ForwardIterator std::__do_uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = __gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, vector<llvm::DWARFAbbreviationDeclaration> >; _ForwardIterator = llvm::DWARFAbbreviationDeclaration*]':
- /usr/include/c++/14/bits/stl_uninitialized.h:113:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, std::vector<llvm::DWARFAbbreviationDeclaration> >' changed in GCC 7.1
-   113 |     __do_uninit_copy(_InputIterator __first, _InputIterator __last,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_uninitialized.h:113:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, std::vector<llvm::DWARFAbbreviationDeclaration> >' changed in GCC 7.1
- In static member function 'static _ForwardIterator std::__uninitialized_copy<_TrivialValueTypes>::__uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = __gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, std::vector<llvm::DWARFAbbreviationDeclaration> >; _ForwardIterator = llvm::DWARFAbbreviationDeclaration*; bool _TrivialValueTypes = false]',
-     inlined from '_ForwardIterator std::uninitialized_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = __gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, vector<llvm::DWARFAbbreviationDeclaration> >; _ForwardIterator = llvm::DWARFAbbreviationDeclaration*]' at /usr/include/c++/14/bits/stl_uninitialized.h:185:15,
-     inlined from '_ForwardIterator std::__uninitialized_copy_a(_InputIterator, _InputIterator, _ForwardIterator, allocator<_Tp>&) [with _InputIterator = __gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, vector<llvm::DWARFAbbreviationDeclaration> >; _ForwardIterator = llvm::DWARFAbbreviationDeclaration*; _Tp = llvm::DWARFAbbreviationDeclaration]' at /usr/include/c++/14/bits/stl_uninitialized.h:373:37,
-     inlined from 'std::vector<_Tp, _Alloc>::vector(const std::vector<_Tp, _Alloc>&) [with _Tp = llvm::DWARFAbbreviationDeclaration; _Alloc = std::allocator<llvm::DWARFAbbreviationDeclaration>]' at /usr/include/c++/14/bits/stl_vector.h:606:31,
-     inlined from 'llvm::DWARFAbbreviationDeclarationSet::DWARFAbbreviationDeclarationSet(const llvm::DWARFAbbreviationDeclarationSet&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h:22:7,
-     inlined from 'std::pair<_T1, _T2>::pair(const std::pair<_T1, _T2>&) [with _T1 = const long long unsigned int; _T2 = llvm::DWARFAbbreviationDeclarationSet]' at /usr/include/c++/14/bits/stl_pair.h:294:17,
-     inlined from 'void dumpDebugAbbrev(llvm::DWARFContext&, llvm::DWARFYAML::Data&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/dwarf2yaml.cpp:29:31:
- /usr/include/c++/14/bits/stl_uninitialized.h:137:39: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, std::vector<llvm::DWARFAbbreviationDeclaration> >' changed in GCC 7.1
-   137 |         { return std::__do_uninit_copy(__first, __last, __result); }
-       |                  ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/algorithm:61,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/Hashing.h:51,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/ArrayRef.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMapInfo.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMap.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/MapVector.h:19,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFContext.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:9:
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__unguarded_linear_insert(_RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Val_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]':
- /usr/include/c++/14/bits/stl_algo.h:1750:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1750 |     __unguarded_linear_insert(_RandomAccessIterator __last,
-       |     ^~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]':
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1770 |     __insertion_sort(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
- In file included from /usr/include/c++/14/bits/stl_algo.h:61:
- /usr/include/c++/14/bits/stl_heap.h: In function 'void std::__adjust_heap(_RandomAccessIterator, _Distance, _Distance, _Tp, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Distance = int; _Tp = llvm::Optional<llvm::StrOffsetsContributionDescriptor>; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]':
- /usr/include/c++/14/bits/stl_heap.h:224:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-   224 |     __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex,
-       |     ^~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__introsort_loop(_RandomAccessIterator, _RandomAccessIterator, _Size, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Size = int; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]':
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1876 |     __introsort_loop(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
- /usr/include/c++/14/bits/stl_algo.h:1890:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1890 |           std::__introsort_loop(__cut, __last, __depth_limit, __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In function 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]',
-     inlined from 'void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)>]' at /usr/include/c++/14/bits/stl_algo.h:4805:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy, Compare) [with IteratorTy = __gnu_cxx::__normal_iterator<Optional<StrOffsetsContributionDescriptor>*, std::vector<Optional<StrOffsetsContributionDescriptor> > >; Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const Optional<StrOffsetsContributionDescriptor>&, const Optional<StrOffsetsContributionDescriptor>&)>]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1113:12,
-     inlined from 'void llvm::sort(Container&&, Compare) [with Container = std::vector<Optional<StrOffsetsContributionDescriptor> >&; Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const Optional<StrOffsetsContributionDescriptor>&, const Optional<StrOffsetsContributionDescriptor>&)>]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1118:13,
-     inlined from 'ContributionCollection collectContributionData(llvm::DWARFContext::unit_iterator_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:112:13,
-     inlined from 'void dumpDWARFv5StringOffsetsSection(llvm::raw_ostream&, llvm::StringRef, const llvm::DWARFObject&, const llvm::DWARFSection&, llvm::StringRef, llvm::DWARFContext::unit_iterator_range, bool)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:139:53,
-     inlined from 'void dumpStringOffsetsSection(llvm::raw_ostream&, llvm::StringRef, const llvm::DWARFObject&, const llvm::DWARFSection&, llvm::StringRef, llvm::DWARFContext::unit_iterator_range, bool, unsigned int)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:219:36:
- /usr/include/c++/14/bits/stl_algo.h:1905:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1905 |           std::__introsort_loop(__first, __last,
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
-  1906 |                                 std::__lg(__last - __first) * 2,
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  1907 |                                 __comp);
-       |                                 ~~~~~~~
- In function 'void std::__final_insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]',
-     inlined from 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]' at /usr/include/c++/14/bits/stl_algo.h:1908:31,
-     inlined from 'void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)>]' at /usr/include/c++/14/bits/stl_algo.h:4805:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy, Compare) [with IteratorTy = __gnu_cxx::__normal_iterator<Optional<StrOffsetsContributionDescriptor>*, std::vector<Optional<StrOffsetsContributionDescriptor> > >; Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const Optional<StrOffsetsContributionDescriptor>&, const Optional<StrOffsetsContributionDescriptor>&)>]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1113:12,
-     inlined from 'void llvm::sort(Container&&, Compare) [with Container = std::vector<Optional<StrOffsetsContributionDescriptor> >&; Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const Optional<StrOffsetsContributionDescriptor>&, const Optional<StrOffsetsContributionDescriptor>&)>]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1118:13,
-     inlined from 'ContributionCollection collectContributionData(llvm::DWARFContext::unit_iterator_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:112:13,
-     inlined from 'void dumpDWARFv5StringOffsetsSection(llvm::raw_ostream&, llvm::StringRef, const llvm::DWARFObject&, const llvm::DWARFSection&, llvm::StringRef, llvm::DWARFContext::unit_iterator_range, bool)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:139:53,
-     inlined from 'void dumpStringOffsetsSection(llvm::raw_ostream&, llvm::StringRef, const llvm::DWARFObject&, const llvm::DWARFSection&, llvm::StringRef, llvm::DWARFContext::unit_iterator_range, bool, unsigned int)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:219:36:
- /usr/include/c++/14/bits/stl_algo.h:1817:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1817 |           std::__insertion_sort(__first, __first + int(_S_threshold), __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1822:30: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1822 |         std::__insertion_sort(__first, __last, __comp);
-       |         ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/bits/stl_algo.h:61,
-                  from /usr/include/c++/14/algorithm:61,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/Hashing.h:51,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/ArrayRef.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMapInfo.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMap.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseSet.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugAranges.cpp:9:
- /usr/include/c++/14/bits/stl_heap.h: In function 'void std::__adjust_heap(_RandomAccessIterator, _Distance, _Distance, _Tp, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Distance = int; _Tp = llvm::DWARFDebugAranges::RangeEndpoint; _Compare = __gnu_cxx::__ops::_Iter_less_iter]':
- /usr/include/c++/14/bits/stl_heap.h:224:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-   224 |     __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex,
-       |     ^~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Compare = __gnu_cxx::__ops::_Iter_less_iter]':
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1770 |     __insertion_sort(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__introsort_loop(_RandomAccessIterator, _RandomAccessIterator, _Size, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Size = int; _Compare = __gnu_cxx::__ops::_Iter_less_iter]':
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1876 |     __introsort_loop(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
- /usr/include/c++/14/bits/stl_algo.h:1890:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1890 |           std::__introsort_loop(__cut, __last, __depth_limit, __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In function 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Compare = __gnu_cxx::__ops::_Iter_less_iter]',
-     inlined from 'void std::sort(_RAIter, _RAIter) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >]' at /usr/include/c++/14/bits/stl_algo.h:4772:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy) [with IteratorTy = __gnu_cxx::__normal_iterator<DWARFDebugAranges::RangeEndpoint*, std::vector<DWARFDebugAranges::RangeEndpoint> >]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1100:12,
-     inlined from 'void llvm::sort(Container&&) [with Container = std::vector<DWARFDebugAranges::RangeEndpoint>&]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1104:13,
-     inlined from 'void llvm::DWARFDebugAranges::construct()' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugAranges.cpp:85:13:
- /usr/include/c++/14/bits/stl_algo.h:1905:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1905 |           std::__introsort_loop(__first, __last,
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
-  1906 |                                 std::__lg(__last - __first) * 2,
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  1907 |                                 __comp);
-       |                                 ~~~~~~~
- In function 'void std::__final_insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Compare = __gnu_cxx::__ops::_Iter_less_iter]',
-     inlined from 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Compare = __gnu_cxx::__ops::_Iter_less_iter]' at /usr/include/c++/14/bits/stl_algo.h:1908:31,
-     inlined from 'void std::sort(_RAIter, _RAIter) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >]' at /usr/include/c++/14/bits/stl_algo.h:4772:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy) [with IteratorTy = __gnu_cxx::__normal_iterator<DWARFDebugAranges::RangeEndpoint*, std::vector<DWARFDebugAranges::RangeEndpoint> >]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1100:12,
-     inlined from 'void llvm::sort(Container&&) [with Container = std::vector<DWARFDebugAranges::RangeEndpoint>&]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1104:13,
-     inlined from 'void llvm::DWARFDebugAranges::construct()' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugAranges.cpp:85:13:
- /usr/include/c++/14/bits/stl_algo.h:1817:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1817 |           std::__insertion_sort(__first, __first + int(_S_threshold), __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1822:30: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1822 |         std::__insertion_sort(__first, __last, __comp);
-       |         ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/memory:69,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/Optional.h:22,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLoc.cpp:9:
- /usr/include/c++/14/bits/stl_uninitialized.h: In function '_ForwardIterator std::__do_uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*]':
- /usr/include/c++/14/bits/stl_uninitialized.h:113:5: note: parameter passing for argument of type 'std::move_iterator<llvm::DWARFDebugLoc::Entry*>' changed in GCC 7.1
-   113 |     __do_uninit_copy(_InputIterator __first, _InputIterator __last,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_uninitialized.h:113:5: note: parameter passing for argument of type 'std::move_iterator<llvm::DWARFDebugLoc::Entry*>' changed in GCC 7.1
- In static member function 'static _ForwardIterator std::__uninitialized_copy<_TrivialValueTypes>::__uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = std::move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*; bool _TrivialValueTypes = false]',
-     inlined from '_ForwardIterator std::uninitialized_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*]' at /usr/include/c++/14/bits/stl_uninitialized.h:185:15,
-     inlined from 'static void llvm::SmallVectorTemplateBase<T, <anonymous> >::uninitialized_move(It1, It1, It2) [with It1 = llvm::DWARFDebugLoc::Entry*; It2 = llvm::DWARFDebugLoc::Entry*; T = llvm::DWARFDebugLoc::Entry; bool <anonymous> = false]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:194:28,
-     inlined from 'void llvm::SmallVectorTemplateBase<T, <anonymous> >::grow(size_t) [with T = llvm::DWARFDebugLoc::Entry; bool <anonymous> = false]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:243:27:
- /usr/include/c++/14/bits/stl_uninitialized.h:137:39: note: parameter passing for argument of type 'std::move_iterator<llvm::DWARFDebugLoc::Entry*>' changed in GCC 7.1
-   137 |         { return std::__do_uninit_copy(__first, __last, __result); }
-       |                  ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
- In static member function 'static _ForwardIterator std::__uninitialized_copy<_TrivialValueTypes>::__uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = std::move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*; bool _TrivialValueTypes = false]',
-     inlined from '_ForwardIterator std::uninitialized_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*]' at /usr/include/c++/14/bits/stl_uninitialized.h:185:15,
-     inlined from 'static void llvm::SmallVectorTemplateBase<T, <anonymous> >::uninitialized_move(It1, It1, It2) [with It1 = llvm::DWARFDebugLoc::Entry*; It2 = llvm::DWARFDebugLoc::Entry*; T = llvm::DWARFDebugLoc::Entry; bool <anonymous> = false]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:194:28,
-     inlined from 'llvm::SmallVectorImpl<T>& llvm::SmallVectorImpl<T>::operator=(llvm::SmallVectorImpl<T>&&) [with T = llvm::DWARFDebugLoc::Entry]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:806:27:
- /usr/include/c++/14/bits/stl_uninitialized.h:137:39: note: parameter passing for argument of type 'std::move_iterator<llvm::DWARFDebugLoc::Entry*>' changed in GCC 7.1
-   137 |         { return std::__do_uninit_copy(__first, __last, __result); }
-       |                  ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:62,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFListTable.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h:17,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFUnit.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h:15,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:9:
- /usr/include/c++/14/bits/stl_tree.h: In member function 'std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::_M_emplace_hint_unique(const_iterator, _Args&& ...) [with _Args = {std::pair<long long unsigned int, llvm::DWARFUnit*>}; _Key = long long unsigned int; _Val = std::pair<const long long unsigned int, llvm::DWARFUnit*>; _KeyOfValue = std::_Select1st<std::pair<const long long unsigned int, llvm::DWARFUnit*> >; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]':
- /usr/include/c++/14/bits/stl_tree.h:2456:7: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, llvm::DWARFUnit*>, std::_Select1st<std::pair<const long long unsigned int, llvm::DWARFUnit*> >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> > >::const_iterator' changed in GCC 7.1
-  2456 |       _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:63:
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::iterator std::map<_Key, _Tp, _Compare, _Alloc>::emplace_hint(const_iterator, _Args&& ...) [with _Args = {std::pair<long long unsigned int, llvm::DWARFUnit*>}; _Key = long long unsigned int; _Tp = llvm::DWARFUnit*; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]',
-     inlined from 'std::__enable_if_t<((bool)std::is_constructible<std::pair<const _Key, _Val>, _Pair>::value), std::pair<typename std::_Rb_tree<_Key, std::pair<const _Key, _Val>, std::_Select1st<std::pair<const _Key, _Val> >, _Compare, typename __gnu_cxx::__alloc_traits<_Allocator>::rebind<std::pair<const _Key, _Val> >::other>::iterator, bool> > std::map<_Key, _Tp, _Compare, _Alloc>::insert(_Pair&&) [with _Pair = std::pair<long long unsigned int, llvm::DWARFUnit*>; _Key = long long unsigned int; _Tp = llvm::DWARFUnit*; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]' at /usr/include/c++/14/bits/stl_map.h:859:27,
-     inlined from 'llvm::DWARFDebugLine::SectionParser::LineToUnitMap buildLineToUnitMap(llvm::DWARFDebugLine::SectionParser::cu_range, llvm::DWARFDebugLine::SectionParser::tu_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:1109:26,
-     inlined from 'llvm::DWARFDebugLine::SectionParser::SectionParser(llvm::DWARFDataExtractor&, const llvm::DWARFContext&, cu_range, tu_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:1121:34:
- /usr/include/c++/14/bits/stl_map.h:640:45: note: parameter passing for argument of type 'std::map<long long unsigned int, llvm::DWARFUnit*>::const_iterator' {aka 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, llvm::DWARFUnit*>, std::_Select1st<std::pair<const long long unsigned int, llvm::DWARFUnit*> >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> > >::const_iterator'} changed in GCC 7.1
-   640 |           return _M_t._M_emplace_hint_unique(__pos,
-       |                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
-   641 |                                              std::forward<_Args>(__args)...);
-       |                                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::iterator std::map<_Key, _Tp, _Compare, _Alloc>::emplace_hint(const_iterator, _Args&& ...) [with _Args = {std::pair<long long unsigned int, llvm::DWARFUnit*>}; _Key = long long unsigned int; _Tp = llvm::DWARFUnit*; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]',
-     inlined from 'std::__enable_if_t<((bool)std::is_constructible<std::pair<const _Key, _Val>, _Pair>::value), std::pair<typename std::_Rb_tree<_Key, std::pair<const _Key, _Val>, std::_Select1st<std::pair<const _Key, _Val> >, _Compare, typename __gnu_cxx::__alloc_traits<_Allocator>::rebind<std::pair<const _Key, _Val> >::other>::iterator, bool> > std::map<_Key, _Tp, _Compare, _Alloc>::insert(_Pair&&) [with _Pair = std::pair<long long unsigned int, llvm::DWARFUnit*>; _Key = long long unsigned int; _Tp = llvm::DWARFUnit*; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]' at /usr/include/c++/14/bits/stl_map.h:859:27,
-     inlined from 'llvm::DWARFDebugLine::SectionParser::LineToUnitMap buildLineToUnitMap(llvm::DWARFDebugLine::SectionParser::cu_range, llvm::DWARFDebugLine::SectionParser::tu_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:1113:26,
-     inlined from 'llvm::DWARFDebugLine::SectionParser::SectionParser(llvm::DWARFDataExtractor&, const llvm::DWARFContext&, cu_range, tu_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:1121:34:
- /usr/include/c++/14/bits/stl_map.h:640:45: note: parameter passing for argument of type 'std::map<long long unsigned int, llvm::DWARFUnit*>::const_iterator' {aka 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, llvm::DWARFUnit*>, std::_Select1st<std::pair<const long long unsigned int, llvm::DWARFUnit*> >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> > >::const_iterator'} changed in GCC 7.1
-   640 |           return _M_t._M_emplace_hint_unique(__pos,
-       |                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
-   641 |                                              std::forward<_Args>(__args)...);
-       |                                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/algorithm:61,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/Support/MathExtras.h:18,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:19,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/StringRef.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h:13:
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__unguarded_linear_insert(_RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Val_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]':
- /usr/include/c++/14/bits/stl_algo.h:1750:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1750 |     __unguarded_linear_insert(_RandomAccessIterator __last,
-       |     ^~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]':
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1770 |     __insertion_sort(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
- In file included from /usr/include/c++/14/bits/stl_algo.h:61:
- /usr/include/c++/14/bits/stl_heap.h: In function 'void std::__adjust_heap(_RandomAccessIterator, _Distance, _Distance, _Tp, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Distance = int; _Tp = llvm::DWARFDebugLine::Sequence; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]':
- /usr/include/c++/14/bits/stl_heap.h:224:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-   224 |     __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex,
-       |     ^~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__introsort_loop(_RandomAccessIterator, _RandomAccessIterator, _Size, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Size = int; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]':
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1876 |     __introsort_loop(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
- /usr/include/c++/14/bits/stl_algo.h:1890:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1890 |           std::__introsort_loop(__cut, __last, __depth_limit, __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In function 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]',
-     inlined from 'void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)]' at /usr/include/c++/14/bits/stl_algo.h:4805:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy, Compare) [with IteratorTy = __gnu_cxx::__normal_iterator<DWARFDebugLine::Sequence*, std::vector<DWARFDebugLine::Sequence> >; Compare = bool (*)(const DWARFDebugLine::Sequence&, const DWARFDebugLine::Sequence&)]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1113:12,
-     inlined from 'void llvm::sort(Container&&, Compare) [with Container = std::vector<DWARFDebugLine::Sequence>&; Compare = bool (*)(const DWARFDebugLine::Sequence&, const DWARFDebugLine::Sequence&)]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1118:13,
-     inlined from 'llvm::Error llvm::DWARFDebugLine::LineTable::parse(llvm::DWARFDataExtractor&, uint64_t*, const llvm::DWARFContext&, const llvm::DWARFUnit*, std::function<void(llvm::Error)>, llvm::raw_ostream*)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:897:15:
- /usr/include/c++/14/bits/stl_algo.h:1905:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1905 |           std::__introsort_loop(__first, __last,
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
-  1906 |                                 std::__lg(__last - __first) * 2,
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  1907 |                                 __comp);
-       |                                 ~~~~~~~
- In function 'void std::__final_insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]',
-     inlined from 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]' at /usr/include/c++/14/bits/stl_algo.h:1908:31,
-     inlined from 'void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)]' at /usr/include/c++/14/bits/stl_algo.h:4805:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy, Compare) [with IteratorTy = __gnu_cxx::__normal_iterator<DWARFDebugLine::Sequence*, std::vector<DWARFDebugLine::Sequence> >; Compare = bool (*)(const DWARFDebugLine::Sequence&, const DWARFDebugLine::Sequence&)]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1113:12,
-     inlined from 'void llvm::sort(Container&&, Compare) [with Container = std::vector<DWARFDebugLine::Sequence>&; Compare = bool (*)(const DWARFDebugLine::Sequence&, const DWARFDebugLine::Sequence&)]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1118:13,
-     inlined from 'llvm::Error llvm::DWARFDebugLine::LineTable::parse(llvm::DWARFDataExtractor&, uint64_t*, const llvm::DWARFContext&, const llvm::DWARFUnit*, std::function<void(llvm::Error)>, llvm::raw_ostream*)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:897:15:
- /usr/include/c++/14/bits/stl_algo.h:1817:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1817 |           std::__insertion_sort(__first, __first + int(_S_threshold), __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1822:30: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1822 |         std::__insertion_sort(__first, __last, __comp);
-       |         ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:62,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFListTable.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h:17,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFUnit.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFUnit.cpp:9:
- /usr/include/c++/14/bits/stl_tree.h: In function 'std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::_M_emplace_hint_unique(const_iterator, _Args&& ...) [with _Args = {const std::piecewise_construct_t&, std::tuple<const long long unsigned int&>, std::tuple<>}; _Key = long long unsigned int; _Val = std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >; _KeyOfValue = std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >]':
- /usr/include/c++/14/bits/stl_tree.h:2456:7: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >, std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > > >::const_iterator' changed in GCC 7.1
-  2456 |       _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:63:
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::pair<long long unsigned int, llvm::DWARFDie>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >]',
-     inlined from 'void llvm::DWARFUnit::updateAddressDieMap(llvm::DWARFDie)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFUnit.cpp:615:32:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >, std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::pair<long long unsigned int, llvm::DWARFDie>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >]',
-     inlined from 'void llvm::DWARFUnit::updateAddressDieMap(llvm::DWARFDie)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFUnit.cpp:617:32:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >, std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::pair<long long unsigned int, llvm::DWARFDie>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >]',
-     inlined from 'void llvm::DWARFUnit::updateAddressDieMap(llvm::DWARFDie)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFUnit.cpp:619:27:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >, std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:72,
-                  from /usr/include/c++/14/functional:64,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:30,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/ArrayRef.h:15,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMapInfo.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/Object/ObjectFile.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DIContext.h:18,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFVerifier.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFVerifier.cpp:8:
- /usr/include/c++/14/bits/vector.tcc: In member function 'void std::vector<_Tp, _Alloc>::_M_realloc_insert(iterator, _Args&& ...) [with _Args = {const llvm::DWARFAddressRange&}; _Tp = llvm::DWARFAddressRange; _Alloc = std::allocator<llvm::DWARFAddressRange>]':
- /usr/include/c++/14/bits/vector.tcc:452:7: note: parameter passing for argument of type 'std::vector<llvm::DWARFAddressRange>::iterator' changed in GCC 7.1
-   452 |       vector<_Tp, _Alloc>::
-       |       ^~~~~~~~~~~~~~~~~~~
- In member function 'std::vector<_Tp, _Alloc>::iterator std::vector<_Tp, _Alloc>::insert(const_iterator, const value_type&) [with _Tp = llvm::DWARFAddressRange; _Alloc = std::allocator<llvm::DWARFAddressRange>]',
-     inlined from 'llvm::DWARFVerifier::DieRangeInfo::address_range_iterator llvm::DWARFVerifier::DieRangeInfo::insert(const llvm::DWARFAddressRange&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFVerifier.cpp:45:16:
- /usr/include/c++/14/bits/vector.tcc:170:26: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFAddressRange*, std::vector<llvm::DWARFAddressRange> >' changed in GCC 7.1
-   170 |         _M_realloc_insert(begin() + (__position - cbegin()), __x);
-       |         ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:62,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFVerifier.h:19:
- /usr/include/c++/14/bits/stl_tree.h: In member function 'std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::_M_emplace_hint_unique(const_iterator, _Args&& ...) [with _Args = {const std::piecewise_construct_t&, std::tuple<const long long unsigned int&>, std::tuple<>}; _Key = long long unsigned int; _Val = std::pair<const long long unsigned int, std::set<long long unsigned int> >; _KeyOfValue = std::_Select1st<std::pair<const long long unsigned int, std::set<long long unsigned int> > >; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > >]':
- /usr/include/c++/14/bits/stl_tree.h:2456:7: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::set<long long unsigned int> >, std::_Select1st<std::pair<const long long unsigned int, std::set<long long unsigned int> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > > >::const_iterator' changed in GCC 7.1
-  2456 |       _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:63:
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::set<long long unsigned int>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > >]',
-     inlined from 'unsigned int llvm::DWARFVerifier::verifyDebugInfoForm(const llvm::DWARFDie&, llvm::DWARFAttribute&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFVerifier.cpp:559:38:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::set<long long unsigned int> >, std::_Select1st<std::pair<const long long unsigned int, std::set<long long unsigned int> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::set<long long unsigned int>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > >]',
-     inlined from 'unsigned int llvm::DWARFVerifier::verifyDebugInfoForm(const llvm::DWARFDie&, llvm::DWARFAttribute&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFVerifier.cpp:578:38:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::set<long long unsigned int> >, std::_Select1st<std::pair<const long long unsigned int, std::set<long long unsigned int> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:72,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/runtime-table.h:21,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/runtime-table.cpp:17:
- /usr/include/c++/14/bits/vector.tcc: In member function 'void std::vector<_Tp, _Alloc>::_M_fill_insert(iterator, size_type, const value_type&) [with _Tp = wasm::Literal; _Alloc = std::allocator<wasm::Literal>]':
- /usr/include/c++/14/bits/vector.tcc:700:5: note: parameter passing for argument of type 'std::vector<wasm::Literal, std::allocator<wasm::Literal> >::iterator' changed in GCC 7.1
-   700 |     vector<_Tp, _Alloc>::
-       |     ^~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:66:
- In member function 'void std::vector<_Tp, _Alloc>::resize(size_type, const value_type&) [with _Tp = wasm::Literal; _Alloc = std::allocator<wasm::Literal>]',
-     inlined from 'virtual std::optional<unsigned int> wasm::RealRuntimeTable::grow(std::size_t, wasm::Literal)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/runtime-table.cpp:64:15:
- /usr/include/c++/14/bits/stl_vector.h:1037:25: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<wasm::Literal*, std::vector<wasm::Literal, std::allocator<wasm::Literal> > >' changed in GCC 7.1
-  1037 |           _M_fill_insert(end(), __new_size - size(), __x);
-       |           ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/bits/unordered_map.h:33,
-                  from /usr/include/c++/14/unordered_map:41,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm.h:33,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/boolean.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/bits.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/properties.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/iteration.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/passes/Precompute.cpp:30:
- /usr/include/c++/14/bits/hashtable.h: In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(const_iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]':
- /usr/include/c++/14/bits/hashtable.h:2380:5: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  2380 |     _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
-       |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  2381 |                _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::
-       |                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]',
-     inlined from 'std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::iterator std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::erase(iterator) [with _Key = wasm::Expression*; _Tp = wasm::Literals; _Hash = std::hash<wasm::Expression*>; _Pred = std::equal_to<wasm::Expression*>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >]' at /usr/include/c++/14/bits/unordered_map.h:754:26,
-     inlined from 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::PrecomputingExpressionRunner]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:606:34:
- /usr/include/c++/14/bits/hashtable.h:1024:21: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  1024 |       { return erase(const_iterator(__it)); }
-       |                ~~~~~^~~~~~~~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm.h:37,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/manipulation.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-builder.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/cfg/Relooper.h:41,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/binaryen-c.cpp:24:
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/literal.h: In function 'wasm::Literals::Literals(std::initializer_list<wasm::Literal>)':
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/literal.h:745:3: note: parameter passing for argument of type 'std::initializer_list<wasm::Literal>' changed in GCC 7.1
-   745 |   Literals(std::initializer_list<Literal> init)
-       |   ^~~~~~~~
- In file included from /usr/include/c++/14/bits/unordered_map.h:33,
-                  from /usr/include/c++/14/unordered_map:41,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/support/insert_ordered.h:22,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/cfg/Relooper.h:40:
- /usr/include/c++/14/bits/hashtable.h: In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(const_iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]':
- /usr/include/c++/14/bits/hashtable.h:2380:5: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  2380 |     _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
-       |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  2381 |                _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::
-       |                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:72,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm.h:34:
- /usr/include/c++/14/bits/vector.tcc: In member function 'void std::vector<_Tp, _Alloc>::_M_fill_insert(iterator, size_type, const value_type&) [with _Tp = wasm::Literal; _Alloc = std::allocator<wasm::Literal>]':
- /usr/include/c++/14/bits/vector.tcc:700:5: note: parameter passing for argument of type 'std::vector<wasm::Literal, std::allocator<wasm::Literal> >::iterator' changed in GCC 7.1
-   700 |     vector<_Tp, _Alloc>::
-       |     ^~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:66:
- In member function 'void std::vector<_Tp, _Alloc>::resize(size_type, const value_type&) [with _Tp = wasm::Literal; _Alloc = std::allocator<wasm::Literal>]',
-     inlined from 'wasm::RealRuntimeTable::RealRuntimeTable(wasm::Literal, wasm::Table)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/runtime-table.h:63:17,
-     inlined from 'std::__detail::__unique_ptr_t<_Tp> std::make_unique(_Args&& ...) [with _Tp = wasm::RealRuntimeTable; _Args = {wasm::Literal&, wasm::Table&}]' at /usr/include/c++/14/bits/unique_ptr.h:1077:30,
-     inlined from 'wasm::ModuleRunnerBase<wasm::ModuleRunner>::ModuleRunnerBase(wasm::Module&, ExternalInterface*, std::shared_ptr<wasm::ImportResolver>, std::map<wasm::Name, std::shared_ptr<wasm::ModuleRunner>, std::less<wasm::Name>, std::allocator<std::pair<const wasm::Name, std::shared_ptr<wasm::ModuleRunner> > > >, std::function<std::unique_ptr<wasm::RuntimeTable>(wasm::Literal, wasm::Table)>)::<lambda(wasm::Literal, wasm::Table)>' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:3187:58,
-     inlined from 'constexpr _Res std::__invoke_impl(__invoke_other, _Fn&&, _Args&& ...) [with _Res = unique_ptr<wasm::RuntimeTable>; _Fn = wasm::ModuleRunnerBase<wasm::ModuleRunner>::ModuleRunnerBase(wasm::Module&, ExternalInterface*, std::shared_ptr<wasm::ImportResolver>, std::map<wasm::Name, std::shared_ptr<wasm::ModuleRunner>, std::less<wasm::Name>, std::allocator<std::pair<const wasm::Name, std::shared_ptr<wasm::ModuleRunner> > > >, std::function<std::unique_ptr<wasm::RuntimeTable>(wasm::Literal, wasm::Table)>)::<lambda(wasm::Literal, wasm::Table)>&; _Args = {wasm::Literal, wasm::Table}]' at /usr/include/c++/14/bits/invoke.h:61:67,
-     inlined from 'constexpr std::enable_if_t<((bool)is_invocable_r_v<_Res, _Callable, _Args ...>), _Res> std::__invoke_r(_Callable&&, _Args&& ...) [with _Res = unique_ptr<wasm::RuntimeTable>; _Callable = wasm::ModuleRunnerBase<wasm::ModuleRunner>::ModuleRunnerBase(wasm::Module&, ExternalInterface*, std::shared_ptr<wasm::ImportResolver>, std::map<wasm::Name, std::shared_ptr<wasm::ModuleRunner>, std::less<wasm::Name>, std::allocator<std::pair<const wasm::Name, std::shared_ptr<wasm::ModuleRunner> > > >, std::function<std::unique_ptr<wasm::RuntimeTable>(wasm::Literal, wasm::Table)>)::<lambda(wasm::Literal, wasm::Table)>&; _Args = {wasm::Literal, wasm::Table}]' at /usr/include/c++/14/bits/invoke.h:116:38,
-     inlined from 'static _Res std::_Function_handler<_Res(_ArgTypes ...), _Functor>::_M_invoke(const std::_Any_data&, _ArgTypes&& ...) [with _Res = std::unique_ptr<wasm::RuntimeTable>; _Functor = wasm::ModuleRunnerBase<wasm::ModuleRunner>::ModuleRunnerBase(wasm::Module&, ExternalInterface*, std::shared_ptr<wasm::ImportResolver>, std::map<wasm::Name, std::shared_ptr<wasm::ModuleRunner>, std::less<wasm::Name>, std::allocator<std::pair<const wasm::Name, std::shared_ptr<wasm::ModuleRunner> > > >, std::function<std::unique_ptr<wasm::RuntimeTable>(wasm::Literal, wasm::Table)>)::<lambda(wasm::Literal, wasm::Table)>; _ArgTypes = {wasm::Literal, wasm::Table}]' at /usr/include/c++/14/bits/std_function.h:291:44:
- /usr/include/c++/14/bits/stl_vector.h:1037:25: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<wasm::Literal*, std::vector<wasm::Literal, std::allocator<wasm::Literal> > >' changed in GCC 7.1
-  1037 |           _M_fill_insert(end(), __new_size - size(), __x);
-       |           ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]',
-     inlined from 'std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::iterator std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::erase(iterator) [with _Key = wasm::Expression*; _Tp = wasm::Literals; _Hash = std::hash<wasm::Expression*>; _Pred = std::equal_to<wasm::Expression*>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >]' at /usr/include/c++/14/bits/unordered_map.h:754:26,
-     inlined from 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::CExpressionRunner]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:606:34:
- /usr/include/c++/14/bits/hashtable.h:1024:21: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  1024 |       { return erase(const_iterator(__it)); }
-       |                ~~~~~^~~~~~~~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/shell-interface.h:30,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/binaryen-c.cpp:28:
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h: In member function 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::CExpressionRunner]':
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:663:28: note: parameter passing for argument of type 'std::initializer_list<wasm::Literal>' changed in GCC 7.1
-   663 |             pushResumeEntry({Literal(int32_t(num))}, "num executed children");
-       |             ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]',
-     inlined from 'std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::iterator std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::erase(iterator) [with _Key = wasm::Expression*; _Tp = wasm::Literals; _Hash = std::hash<wasm::Expression*>; _Pred = std::equal_to<wasm::Expression*>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >]' at /usr/include/c++/14/bits/unordered_map.h:754:26,
-     inlined from 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::ModuleRunner]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:606:34:
- /usr/include/c++/14/bits/hashtable.h:1024:21: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  1024 |       { return erase(const_iterator(__it)); }
-       |                ~~~~~^~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h: In member function 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::ModuleRunner]':
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:663:28: note: parameter passing for argument of type 'std::initializer_list<wasm::Literal>' changed in GCC 7.1
-   663 |             pushResumeEntry({Literal(int32_t(num))}, "num executed children");
-       |             ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h: In member function 'wasm::Flow wasm::ModuleRunnerBase<SubType>::visitCallIndirect(wasm::CallIndirect*) [with SubType = wasm::ModuleRunner]':
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:3828:30: note: parameter passing for argument of type 'std::initializer_list<wasm::Literal>' changed in GCC 7.1
-  3828 |       self()->pushResumeEntry({funcref}, "call_indirect");
-       |       ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- (cd _build/default && /usr/bin/cmake -S binaryen -B binaryen -G 'Unix Makefiles' '-DCMAKE_CXX_FLAGS=-Wno-unused-variable -Wno-maybe-uninitialized -Wno-deprecated-declarations' -DBUILD_TESTS=OFF -DBUILD_TOOLS=OFF -DBUILD_STATIC_LIB=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=binaryen)
- -- Building with -fno-omit-frame-pointer
- -- Building with -fno-rtti
- -- Building with -fPIC
- -- Building with -UNDEBUG
- -- Building with -DBUILD_LLVM_DWARF
- -- Building with -Wall
- -- Building with -Werror
- -- Building with -Wextra
- -- Building with -Wno-unused-parameter
- -- Building with -Wno-dangling-pointer
- -- Building with -Wno-implicit-int-float-conversion
- -- Building with -Wno-unknown-warning-option
- -- Building with -Wswitch
- -- Building with -Wimplicit-fallthrough
- -- Building with -Wnon-virtual-dtor
- -- Building libbinaryen as statically linked library.
- -- Configuring done (0.3s)
- -- Generating done (0.1s)
- -- Build files have been written to: /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen
- (cd _build/default && /usr/bin/cmake --build binaryen --config Release -- -j4)
- [  0%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Binary.cpp.o
- [  1%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ConvertUTF.cpp.o
- [  1%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DataExtractor.cpp.o
- [  1%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Debug.cpp.o
- [  2%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DJB.cpp.o
- [  2%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Dwarf.cpp.o
- [  3%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/dwarf2yaml.cpp.o
- [  3%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFAbbreviationDeclaration.cpp.o
- [  3%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFAcceleratorTable.cpp.o
- [  4%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFAddressRange.cpp.o
- [  4%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFCompileUnit.cpp.o
- [  4%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFContext.cpp.o
- [  5%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDataExtractor.cpp.o
- [  5%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugAbbrev.cpp.o
- [  6%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugAddr.cpp.o
- [  6%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugAranges.cpp.o
- [  6%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugArangeSet.cpp.o
- [  7%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugFrame.cpp.o
- [  7%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugInfoEntry.cpp.o
- [  7%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugLine.cpp.o
- [  8%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugLoc.cpp.o
- [  8%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugMacro.cpp.o
- [  9%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugPubTable.cpp.o
- [  9%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugRangeList.cpp.o
- [  9%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDebugRnglists.cpp.o
- [ 10%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFDie.cpp.o
- [ 10%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFEmitter.cpp.o
- [ 10%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFExpression.cpp.o
- [ 11%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFFormValue.cpp.o
- [ 11%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFGdbIndex.cpp.o
- [ 12%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFListTable.cpp.o
- [ 12%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFTypeUnit.cpp.o
- [ 12%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFUnit.cpp.o
- [ 13%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFUnitIndex.cpp.o
- [ 13%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFVerifier.cpp.o
- [ 13%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFVisitor.cpp.o
- [ 14%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/DWARFYAML.cpp.o
- [ 14%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Error.cpp.o
- [ 15%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ErrorHandling.cpp.o
- [ 15%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/FormatVariadic.cpp.o
- [ 15%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Hashing.cpp.o
- [ 16%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/LEB128.cpp.o
- [ 16%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/LineIterator.cpp.o
- [ 16%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/MCRegisterInfo.cpp.o
- [ 17%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/MD5.cpp.o
- [ 17%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/MemoryBuffer.cpp.o
- [ 18%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/NativeFormatting.cpp.o
- [ 18%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ObjectFile.cpp.o
- [ 18%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/obj2yaml_Error.cpp.o
- [ 19%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Optional.cpp.o
- [ 19%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Path.cpp.o
- [ 19%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/raw_ostream.cpp.o
- [ 20%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/ScopedPrinter.cpp.o
- [ 20%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/SmallVector.cpp.o
- [ 21%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/SourceMgr.cpp.o
- [ 21%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/StringMap.cpp.o
- [ 21%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/StringRef.cpp.o
- [ 22%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/SymbolicFile.cpp.o
- [ 22%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/Twine.cpp.o
- [ 22%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/UnicodeCaseFold.cpp.o
- [ 23%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/WithColor.cpp.o
- [ 23%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/YAMLParser.cpp.o
- [ 24%] Building CXX object third_party/llvm-project/CMakeFiles/llvm_dwarf.dir/YAMLTraits.cpp.o
- [ 24%] Built target llvm_dwarf
- [ 24%] Building CXX object CMakeFiles/binaryen.dir/src/ir/ExpressionManipulator.cpp.o
- [ 24%] Building CXX object CMakeFiles/binaryen.dir/src/ir/ExpressionAnalyzer.cpp.o
- [ 25%] Building CXX object CMakeFiles/binaryen.dir/src/ir/effects.cpp.o
- [ 25%] Building CXX object CMakeFiles/binaryen.dir/src/ir/drop.cpp.o
- [ 25%] Building CXX object CMakeFiles/binaryen.dir/src/ir/eh-utils.cpp.o
- [ 26%] Building CXX object CMakeFiles/binaryen.dir/src/ir/export-utils.cpp.o
- [ 26%] Building CXX object CMakeFiles/binaryen.dir/src/ir/intrinsics.cpp.o
- [ 26%] Building CXX object CMakeFiles/binaryen.dir/src/ir/lubs.cpp.o
- [ 27%] Building CXX object CMakeFiles/binaryen.dir/src/ir/memory-utils.cpp.o
- [ 27%] Building CXX object CMakeFiles/binaryen.dir/src/ir/metadata.cpp.o
- [ 28%] Building CXX object CMakeFiles/binaryen.dir/src/ir/module-utils.cpp.o
- [ 28%] Building CXX object CMakeFiles/binaryen.dir/src/ir/names.cpp.o
- [ 28%] Building CXX object CMakeFiles/binaryen.dir/src/ir/possible-contents.cpp.o
- [ 29%] Building CXX object CMakeFiles/binaryen.dir/src/ir/properties.cpp.o
- [ 29%] Building CXX object CMakeFiles/binaryen.dir/src/ir/LocalGraph.cpp.o
- [ 29%] Building CXX object CMakeFiles/binaryen.dir/src/ir/LocalStructuralDominance.cpp.o
- [ 30%] Building CXX object CMakeFiles/binaryen.dir/src/ir/principal-type.cpp.o
- [ 30%] Building CXX object CMakeFiles/binaryen.dir/src/ir/public-type-validator.cpp.o
- [ 31%] Building CXX object CMakeFiles/binaryen.dir/src/ir/ReFinalize.cpp.o
- [ 31%] Building CXX object CMakeFiles/binaryen.dir/src/ir/return-utils.cpp.o
- [ 31%] Building CXX object CMakeFiles/binaryen.dir/src/ir/runtime-table.cpp.o
- [ 32%] Building CXX object CMakeFiles/binaryen.dir/src/ir/stack-utils.cpp.o
- [ 32%] Building CXX object CMakeFiles/binaryen.dir/src/ir/table-utils.cpp.o
- [ 32%] Building CXX object CMakeFiles/binaryen.dir/src/ir/type-updating.cpp.o
- [ 33%] Building CXX object CMakeFiles/binaryen.dir/src/ir/module-splitting.cpp.o
- [ 33%] Building CXX object CMakeFiles/binaryen.dir/src/asmjs/asm_v_wasm.cpp.o
- [ 34%] Building CXX object CMakeFiles/binaryen.dir/src/asmjs/asmangle.cpp.o
- [ 34%] Building CXX object CMakeFiles/binaryen.dir/src/asmjs/shared-constants.cpp.o
- [ 34%] Building CXX object CMakeFiles/binaryen.dir/src/cfg/Relooper.cpp.o
- [ 35%] Building CXX object CMakeFiles/binaryen.dir/src/emscripten-optimizer/optimizer-shared.cpp.o
- [ 35%] Building CXX object CMakeFiles/binaryen.dir/src/emscripten-optimizer/parser.cpp.o
- [ 35%] Building CXX object CMakeFiles/binaryen.dir/src/emscripten-optimizer/simple_ast.cpp.o
- [ 36%] Building CXX object CMakeFiles/binaryen.dir/src/interpreter/expression-iterator.cpp.o
- [ 36%] Building CXX object CMakeFiles/binaryen.dir/src/interpreter/interpreter.cpp.o
- [ 37%] Building CXX object CMakeFiles/binaryen.dir/src/passes/param-utils.cpp.o
- [ 37%] Building CXX object CMakeFiles/binaryen.dir/src/passes/pass.cpp.o
- [ 37%] Building CXX object CMakeFiles/binaryen.dir/src/passes/string-utils.cpp.o
- [ 38%] Building CXX object CMakeFiles/binaryen.dir/src/passes/test_passes.cpp.o
- [ 38%] Building CXX object CMakeFiles/binaryen.dir/src/passes/AbstractTypeRefining.cpp.o
- [ 38%] Building CXX object CMakeFiles/binaryen.dir/src/passes/AlignmentLowering.cpp.o
- [ 39%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Asyncify.cpp.o
- [ 39%] Building CXX object CMakeFiles/binaryen.dir/src/passes/AvoidReinterprets.cpp.o
- [ 40%] Building CXX object CMakeFiles/binaryen.dir/src/passes/CoalesceLocals.cpp.o
- [ 40%] Building CXX object CMakeFiles/binaryen.dir/src/passes/CodePushing.cpp.o
- [ 40%] Building CXX object CMakeFiles/binaryen.dir/src/passes/CodeFolding.cpp.o
- [ 41%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ConstantFieldPropagation.cpp.o
- [ 41%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ConstHoisting.cpp.o
- [ 41%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DataFlowOpts.cpp.o
- [ 42%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DeadArgumentElimination.cpp.o
- [ 42%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DeadCodeElimination.cpp.o
- [ 43%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DeAlign.cpp.o
- [ 43%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DebugLocationPropagation.cpp.o
- [ 43%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DeNaN.cpp.o
- [ 44%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Directize.cpp.o
- [ 44%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DuplicateImportElimination.cpp.o
- [ 44%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DuplicateFunctionElimination.cpp.o
- [ 45%] Building CXX object CMakeFiles/binaryen.dir/src/passes/DWARF.cpp.o
- [ 45%] Building CXX object CMakeFiles/binaryen.dir/src/passes/EncloseWorld.cpp.o
- [ 46%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ExtractFunction.cpp.o
- [ 46%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Flatten.cpp.o
- [ 46%] Building CXX object CMakeFiles/binaryen.dir/src/passes/FuncCastEmulation.cpp.o
- [ 47%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GenerateDynCalls.cpp.o
- [ 47%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GlobalEffects.cpp.o
- [ 47%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GlobalRefining.cpp.o
- [ 48%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GlobalStructInference.cpp.o
- [ 48%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GlobalTypeOptimization.cpp.o
- [ 49%] Building CXX object CMakeFiles/binaryen.dir/src/passes/GUFA.cpp.o
- [ 49%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Outlining.cpp.o
- [ 49%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Heap2Local.cpp.o
- [ 50%] Building CXX object CMakeFiles/binaryen.dir/src/passes/HeapStoreOptimization.cpp.o
- [ 50%] Building CXX object CMakeFiles/binaryen.dir/src/passes/I64ToI32Lowering.cpp.o
- [ 50%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Inlining.cpp.o
- [ 51%] Building CXX object CMakeFiles/binaryen.dir/src/passes/InstrumentBranchHints.cpp.o
- [ 51%] Building CXX object CMakeFiles/binaryen.dir/src/passes/InstrumentLocals.cpp.o
- [ 51%] Building CXX object CMakeFiles/binaryen.dir/src/passes/InstrumentMemory.cpp.o
- [ 52%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Intrinsics.cpp.o
- [ 52%] Building CXX object CMakeFiles/binaryen.dir/src/passes/J2CLItableMerging.cpp.o
- [ 53%] Building CXX object CMakeFiles/binaryen.dir/src/passes/J2CLOpts.cpp.o
- [ 53%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LegalizeJSInterface.cpp.o
- [ 53%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LimitSegments.cpp.o
- [ 54%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LLVMMemoryCopyFillLowering.cpp.o
- [ 54%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LocalCSE.cpp.o
- [ 54%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LocalSubtyping.cpp.o
- [ 55%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LogExecution.cpp.o
- [ 55%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LoopInvariantCodeMotion.cpp.o
- [ 56%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Memory64Lowering.cpp.o
- [ 56%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MemoryPacking.cpp.o
- [ 56%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MergeBlocks.cpp.o
- [ 57%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MergeSimilarFunctions.cpp.o
- [ 57%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MergeLocals.cpp.o
- [ 57%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Metrics.cpp.o
- [ 58%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MinifyImportsAndExports.cpp.o
- [ 58%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MinimizeRecGroups.cpp.o
- [ 59%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Monomorphize.cpp.o
- [ 59%] Building CXX object CMakeFiles/binaryen.dir/src/passes/MultiMemoryLowering.cpp.o
- [ 59%] Building CXX object CMakeFiles/binaryen.dir/src/passes/NameList.cpp.o
- [ 60%] Building CXX object CMakeFiles/binaryen.dir/src/passes/NameTypes.cpp.o
- [ 60%] Building CXX object CMakeFiles/binaryen.dir/src/passes/NoInline.cpp.o
- [ 60%] Building CXX object CMakeFiles/binaryen.dir/src/passes/LLVMNontrappingFPToIntLowering.cpp.o
- [ 61%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OnceReduction.cpp.o
- [ 61%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OptimizeAddedConstants.cpp.o
- [ 62%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OptimizeCasts.cpp.o
- [ 62%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OptimizeInstructions.cpp.o
- [ 62%] Building CXX object CMakeFiles/binaryen.dir/src/passes/OptimizeForJS.cpp.o
- [ 63%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PickLoadSigns.cpp.o
- [ 63%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Poppify.cpp.o
- [ 63%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PostEmscripten.cpp.o
- [ 64%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Precompute.cpp.o
- [ 64%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Print.cpp.o
- [ 65%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PrintCallGraph.cpp.o
- [ 65%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PrintFeatures.cpp.o
- [ 65%] Building CXX object CMakeFiles/binaryen.dir/src/passes/PrintFunctionMap.cpp.o
- [ 66%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RoundTrip.cpp.o
- [ 66%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SetGlobals.cpp.o
- [ 66%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SignaturePruning.cpp.o
- [ 67%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SignatureRefining.cpp.o
- [ 67%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SignExtLowering.cpp.o
- [ 68%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StringLifting.cpp.o
- [ 68%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StringLowering.cpp.o
- [ 68%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Strip.cpp.o
- [ 69%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StripTargetFeatures.cpp.o
- [ 69%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StripToolchainAnnotations.cpp.o
- [ 69%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TraceCalls.cpp.o
- [ 70%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RandomizeBranchHints.cpp.o
- [ 70%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RedundantSetElimination.cpp.o
- [ 71%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveImports.cpp.o
- [ 71%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveMemoryInit.cpp.o
- [ 71%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveNonJSOps.cpp.o
- [ 72%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveRelaxedSIMD.cpp.o
- [ 72%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveUnusedBrs.cpp.o
- [ 72%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveUnusedNames.cpp.o
- [ 73%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveUnusedModuleElements.cpp.o
- [ 73%] Building CXX object CMakeFiles/binaryen.dir/src/passes/RemoveUnusedTypes.cpp.o
- [ 74%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReorderFunctions.cpp.o
- [ 74%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReorderGlobals.cpp.o
- [ 74%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReorderLocals.cpp.o
- [ 75%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReorderTypes.cpp.o
- [ 75%] Building CXX object CMakeFiles/binaryen.dir/src/passes/ReReloop.cpp.o
- [ 75%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TrapMode.cpp.o
- [ 76%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeGeneralizing.cpp.o
- [ 76%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeRefining.cpp.o
- [ 76%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeMerging.cpp.o
- [ 77%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeSSA.cpp.o
- [ 77%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SafeHeap.cpp.o
- [ 78%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SeparateDataSegments.cpp.o
- [ 78%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SimplifyGlobals.cpp.o
- [ 78%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SimplifyLocals.cpp.o
- [ 79%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Souperify.cpp.o
- [ 79%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SpillPointers.cpp.o
- [ 79%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StackCheck.cpp.o
- [ 80%] Building CXX object CMakeFiles/binaryen.dir/src/passes/StripEH.cpp.o
- [ 80%] Building CXX object CMakeFiles/binaryen.dir/src/passes/SSAify.cpp.o
- [ 81%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TupleOptimization.cpp.o
- [ 81%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TranslateEH.cpp.o
- [ 81%] Building CXX object CMakeFiles/binaryen.dir/src/passes/TypeFinalizing.cpp.o
- [ 82%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Unsubtyping.cpp.o
- [ 82%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Untee.cpp.o
- [ 82%] Building CXX object CMakeFiles/binaryen.dir/src/passes/Vacuum.cpp.o
- [ 83%] Building CXX object CMakeFiles/binaryen.dir/src/passes/WasmIntrinsics.cpp.o
- [ 83%] Building CXX object CMakeFiles/binaryen.dir/src/parser/context-decls.cpp.o
- [ 84%] Building CXX object CMakeFiles/binaryen.dir/src/parser/context-defs.cpp.o
- [ 84%] Building CXX object CMakeFiles/binaryen.dir/src/parser/lexer.cpp.o
- [ 84%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-1-decls.cpp.o
- [ 85%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-2-typedefs.cpp.o
- [ 85%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-3-implicit-types.cpp.o
- [ 85%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-4-module-types.cpp.o
- [ 86%] Building CXX object CMakeFiles/binaryen.dir/src/parser/parse-5-defs.cpp.o
- [ 86%] Building CXX object CMakeFiles/binaryen.dir/src/parser/wast-parser.cpp.o
- [ 87%] Building CXX object CMakeFiles/binaryen.dir/src/parser/wat-parser.cpp.o
- [ 87%] Building CXX object CMakeFiles/binaryen.dir/src/support/suffix_tree.cpp.o
- [ 87%] Building CXX object CMakeFiles/binaryen.dir/src/support/suffix_tree_node.cpp.o
- [ 88%] Building CXX object CMakeFiles/binaryen.dir/src/support/archive.cpp.o
- [ 88%] Building CXX object CMakeFiles/binaryen.dir/src/support/bits.cpp.o
- [ 88%] Building CXX object CMakeFiles/binaryen.dir/src/support/colors.cpp.o
- [ 89%] Building CXX object CMakeFiles/binaryen.dir/src/support/command-line.cpp.o
- [ 89%] Building CXX object CMakeFiles/binaryen.dir/src/support/debug.cpp.o
- [ 90%] Building CXX object CMakeFiles/binaryen.dir/src/support/dfa_minimization.cpp.o
- [ 90%] Building CXX object CMakeFiles/binaryen.dir/src/support/file.cpp.o
- [ 90%] Building CXX object CMakeFiles/binaryen.dir/src/support/intervals.cpp.o
- [ 91%] Building CXX object CMakeFiles/binaryen.dir/src/support/istring.cpp.o
- [ 91%] Building CXX object CMakeFiles/binaryen.dir/src/support/json.cpp.o
- [ 91%] Building CXX object CMakeFiles/binaryen.dir/src/support/name.cpp.o
- [ 92%] Building CXX object CMakeFiles/binaryen.dir/src/support/path.cpp.o
- [ 92%] Building CXX object CMakeFiles/binaryen.dir/src/support/safe_integer.cpp.o
- [ 93%] Building CXX object CMakeFiles/binaryen.dir/src/support/string.cpp.o
- [ 93%] Building CXX object CMakeFiles/binaryen.dir/src/support/threads.cpp.o
- [ 93%] Building CXX object CMakeFiles/binaryen.dir/src/support/utilities.cpp.o
- [ 94%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/literal.cpp.o
- [ 94%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/parsing.cpp.o
- [ 94%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/source-map.cpp.o
- [ 95%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm.cpp.o
- [ 95%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-binary.cpp.o
- [ 96%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-debug.cpp.o
- [ 96%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-emscripten.cpp.o
- [ 96%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-interpreter.cpp.o
- [ 97%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-io.cpp.o
- [ 97%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-ir-builder.cpp.o
- [ 97%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-stack.cpp.o
- [ 98%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-stack-opts.cpp.o
- [ 98%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-type.cpp.o
- [ 99%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-type-shape.cpp.o
- [ 99%] Building CXX object CMakeFiles/binaryen.dir/src/wasm/wasm-validator.cpp.o
- [ 99%] Building CXX object CMakeFiles/binaryen.dir/src/analysis/cfg.cpp.o
- [100%] Building CXX object CMakeFiles/binaryen.dir/src/binaryen-c.cpp.o
- [100%] Linking CXX static library lib/libbinaryen.a
- [100%] Built target binaryen
- In file included from /usr/include/c++/14/memory:69,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/Optional.h:22,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:19,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/Support/Error.h:17,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/Error.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/dwarf2yaml.cpp:9:
- /usr/include/c++/14/bits/stl_uninitialized.h: In function '_ForwardIterator std::__do_uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = __gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, vector<llvm::DWARFAbbreviationDeclaration> >; _ForwardIterator = llvm::DWARFAbbreviationDeclaration*]':
- /usr/include/c++/14/bits/stl_uninitialized.h:113:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, std::vector<llvm::DWARFAbbreviationDeclaration> >' changed in GCC 7.1
-   113 |     __do_uninit_copy(_InputIterator __first, _InputIterator __last,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_uninitialized.h:113:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, std::vector<llvm::DWARFAbbreviationDeclaration> >' changed in GCC 7.1
- In static member function 'static _ForwardIterator std::__uninitialized_copy<_TrivialValueTypes>::__uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = __gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, std::vector<llvm::DWARFAbbreviationDeclaration> >; _ForwardIterator = llvm::DWARFAbbreviationDeclaration*; bool _TrivialValueTypes = false]',
-     inlined from '_ForwardIterator std::uninitialized_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = __gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, vector<llvm::DWARFAbbreviationDeclaration> >; _ForwardIterator = llvm::DWARFAbbreviationDeclaration*]' at /usr/include/c++/14/bits/stl_uninitialized.h:185:15,
-     inlined from '_ForwardIterator std::__uninitialized_copy_a(_InputIterator, _InputIterator, _ForwardIterator, allocator<_Tp>&) [with _InputIterator = __gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, vector<llvm::DWARFAbbreviationDeclaration> >; _ForwardIterator = llvm::DWARFAbbreviationDeclaration*; _Tp = llvm::DWARFAbbreviationDeclaration]' at /usr/include/c++/14/bits/stl_uninitialized.h:373:37,
-     inlined from 'std::vector<_Tp, _Alloc>::vector(const std::vector<_Tp, _Alloc>&) [with _Tp = llvm::DWARFAbbreviationDeclaration; _Alloc = std::allocator<llvm::DWARFAbbreviationDeclaration>]' at /usr/include/c++/14/bits/stl_vector.h:606:31,
-     inlined from 'llvm::DWARFAbbreviationDeclarationSet::DWARFAbbreviationDeclarationSet(const llvm::DWARFAbbreviationDeclarationSet&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h:22:7,
-     inlined from 'std::pair<_T1, _T2>::pair(const std::pair<_T1, _T2>&) [with _T1 = const long long unsigned int; _T2 = llvm::DWARFAbbreviationDeclarationSet]' at /usr/include/c++/14/bits/stl_pair.h:294:17,
-     inlined from 'void dumpDebugAbbrev(llvm::DWARFContext&, llvm::DWARFYAML::Data&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/dwarf2yaml.cpp:29:31:
- /usr/include/c++/14/bits/stl_uninitialized.h:137:39: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<const llvm::DWARFAbbreviationDeclaration*, std::vector<llvm::DWARFAbbreviationDeclaration> >' changed in GCC 7.1
-   137 |         { return std::__do_uninit_copy(__first, __last, __result); }
-       |                  ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/algorithm:61,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/Hashing.h:51,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/ArrayRef.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMapInfo.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMap.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/MapVector.h:19,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFContext.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:9:
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__unguarded_linear_insert(_RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Val_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]':
- /usr/include/c++/14/bits/stl_algo.h:1750:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1750 |     __unguarded_linear_insert(_RandomAccessIterator __last,
-       |     ^~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]':
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1770 |     __insertion_sort(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
- In file included from /usr/include/c++/14/bits/stl_algo.h:61:
- /usr/include/c++/14/bits/stl_heap.h: In function 'void std::__adjust_heap(_RandomAccessIterator, _Distance, _Distance, _Tp, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Distance = int; _Tp = llvm::Optional<llvm::StrOffsetsContributionDescriptor>; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]':
- /usr/include/c++/14/bits/stl_heap.h:224:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-   224 |     __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex,
-       |     ^~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__introsort_loop(_RandomAccessIterator, _RandomAccessIterator, _Size, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Size = int; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]':
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1876 |     __introsort_loop(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
- /usr/include/c++/14/bits/stl_algo.h:1890:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1890 |           std::__introsort_loop(__cut, __last, __depth_limit, __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In function 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]',
-     inlined from 'void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)>]' at /usr/include/c++/14/bits/stl_algo.h:4805:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy, Compare) [with IteratorTy = __gnu_cxx::__normal_iterator<Optional<StrOffsetsContributionDescriptor>*, std::vector<Optional<StrOffsetsContributionDescriptor> > >; Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const Optional<StrOffsetsContributionDescriptor>&, const Optional<StrOffsetsContributionDescriptor>&)>]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1113:12,
-     inlined from 'void llvm::sort(Container&&, Compare) [with Container = std::vector<Optional<StrOffsetsContributionDescriptor> >&; Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const Optional<StrOffsetsContributionDescriptor>&, const Optional<StrOffsetsContributionDescriptor>&)>]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1118:13,
-     inlined from 'ContributionCollection collectContributionData(llvm::DWARFContext::unit_iterator_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:112:13,
-     inlined from 'void dumpDWARFv5StringOffsetsSection(llvm::raw_ostream&, llvm::StringRef, const llvm::DWARFObject&, const llvm::DWARFSection&, llvm::StringRef, llvm::DWARFContext::unit_iterator_range, bool)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:139:53,
-     inlined from 'void dumpStringOffsetsSection(llvm::raw_ostream&, llvm::StringRef, const llvm::DWARFObject&, const llvm::DWARFSection&, llvm::StringRef, llvm::DWARFContext::unit_iterator_range, bool, unsigned int)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:219:36:
- /usr/include/c++/14/bits/stl_algo.h:1905:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1905 |           std::__introsort_loop(__first, __last,
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
-  1906 |                                 std::__lg(__last - __first) * 2,
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  1907 |                                 __comp);
-       |                                 ~~~~~~~
- In function 'void std::__final_insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]',
-     inlined from 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)> >]' at /usr/include/c++/14/bits/stl_algo.h:1908:31,
-     inlined from 'void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >; _Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&, const llvm::Optional<llvm::StrOffsetsContributionDescriptor>&)>]' at /usr/include/c++/14/bits/stl_algo.h:4805:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy, Compare) [with IteratorTy = __gnu_cxx::__normal_iterator<Optional<StrOffsetsContributionDescriptor>*, std::vector<Optional<StrOffsetsContributionDescriptor> > >; Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const Optional<StrOffsetsContributionDescriptor>&, const Optional<StrOffsetsContributionDescriptor>&)>]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1113:12,
-     inlined from 'void llvm::sort(Container&&, Compare) [with Container = std::vector<Optional<StrOffsetsContributionDescriptor> >&; Compare = collectContributionData(llvm::DWARFContext::unit_iterator_range)::<lambda(const Optional<StrOffsetsContributionDescriptor>&, const Optional<StrOffsetsContributionDescriptor>&)>]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1118:13,
-     inlined from 'ContributionCollection collectContributionData(llvm::DWARFContext::unit_iterator_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:112:13,
-     inlined from 'void dumpDWARFv5StringOffsetsSection(llvm::raw_ostream&, llvm::StringRef, const llvm::DWARFObject&, const llvm::DWARFSection&, llvm::StringRef, llvm::DWARFContext::unit_iterator_range, bool)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:139:53,
-     inlined from 'void dumpStringOffsetsSection(llvm::raw_ostream&, llvm::StringRef, const llvm::DWARFObject&, const llvm::DWARFSection&, llvm::StringRef, llvm::DWARFContext::unit_iterator_range, bool, unsigned int)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFContext.cpp:219:36:
- /usr/include/c++/14/bits/stl_algo.h:1817:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1817 |           std::__insertion_sort(__first, __first + int(_S_threshold), __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1822:30: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::Optional<llvm::StrOffsetsContributionDescriptor>*, std::vector<llvm::Optional<llvm::StrOffsetsContributionDescriptor> > >' changed in GCC 7.1
-  1822 |         std::__insertion_sort(__first, __last, __comp);
-       |         ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/bits/stl_algo.h:61,
-                  from /usr/include/c++/14/algorithm:61,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/Hashing.h:51,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/ArrayRef.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMapInfo.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMap.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseSet.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugAranges.cpp:9:
- /usr/include/c++/14/bits/stl_heap.h: In function 'void std::__adjust_heap(_RandomAccessIterator, _Distance, _Distance, _Tp, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Distance = int; _Tp = llvm::DWARFDebugAranges::RangeEndpoint; _Compare = __gnu_cxx::__ops::_Iter_less_iter]':
- /usr/include/c++/14/bits/stl_heap.h:224:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-   224 |     __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex,
-       |     ^~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Compare = __gnu_cxx::__ops::_Iter_less_iter]':
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1770 |     __insertion_sort(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__introsort_loop(_RandomAccessIterator, _RandomAccessIterator, _Size, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Size = int; _Compare = __gnu_cxx::__ops::_Iter_less_iter]':
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1876 |     __introsort_loop(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
- /usr/include/c++/14/bits/stl_algo.h:1890:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1890 |           std::__introsort_loop(__cut, __last, __depth_limit, __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In function 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Compare = __gnu_cxx::__ops::_Iter_less_iter]',
-     inlined from 'void std::sort(_RAIter, _RAIter) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >]' at /usr/include/c++/14/bits/stl_algo.h:4772:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy) [with IteratorTy = __gnu_cxx::__normal_iterator<DWARFDebugAranges::RangeEndpoint*, std::vector<DWARFDebugAranges::RangeEndpoint> >]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1100:12,
-     inlined from 'void llvm::sort(Container&&) [with Container = std::vector<DWARFDebugAranges::RangeEndpoint>&]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1104:13,
-     inlined from 'void llvm::DWARFDebugAranges::construct()' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugAranges.cpp:85:13:
- /usr/include/c++/14/bits/stl_algo.h:1905:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1905 |           std::__introsort_loop(__first, __last,
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
-  1906 |                                 std::__lg(__last - __first) * 2,
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  1907 |                                 __comp);
-       |                                 ~~~~~~~
- In function 'void std::__final_insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Compare = __gnu_cxx::__ops::_Iter_less_iter]',
-     inlined from 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >; _Compare = __gnu_cxx::__ops::_Iter_less_iter]' at /usr/include/c++/14/bits/stl_algo.h:1908:31,
-     inlined from 'void std::sort(_RAIter, _RAIter) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, vector<llvm::DWARFDebugAranges::RangeEndpoint> >]' at /usr/include/c++/14/bits/stl_algo.h:4772:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy) [with IteratorTy = __gnu_cxx::__normal_iterator<DWARFDebugAranges::RangeEndpoint*, std::vector<DWARFDebugAranges::RangeEndpoint> >]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1100:12,
-     inlined from 'void llvm::sort(Container&&) [with Container = std::vector<DWARFDebugAranges::RangeEndpoint>&]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1104:13,
-     inlined from 'void llvm::DWARFDebugAranges::construct()' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugAranges.cpp:85:13:
- /usr/include/c++/14/bits/stl_algo.h:1817:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1817 |           std::__insertion_sort(__first, __first + int(_S_threshold), __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1822:30: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugAranges::RangeEndpoint*, std::vector<llvm::DWARFDebugAranges::RangeEndpoint> >' changed in GCC 7.1
-  1822 |         std::__insertion_sort(__first, __last, __comp);
-       |         ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/memory:69,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/Optional.h:22,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLoc.cpp:9:
- /usr/include/c++/14/bits/stl_uninitialized.h: In function '_ForwardIterator std::__do_uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*]':
- /usr/include/c++/14/bits/stl_uninitialized.h:113:5: note: parameter passing for argument of type 'std::move_iterator<llvm::DWARFDebugLoc::Entry*>' changed in GCC 7.1
-   113 |     __do_uninit_copy(_InputIterator __first, _InputIterator __last,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_uninitialized.h:113:5: note: parameter passing for argument of type 'std::move_iterator<llvm::DWARFDebugLoc::Entry*>' changed in GCC 7.1
- In static member function 'static _ForwardIterator std::__uninitialized_copy<_TrivialValueTypes>::__uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = std::move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*; bool _TrivialValueTypes = false]',
-     inlined from '_ForwardIterator std::uninitialized_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*]' at /usr/include/c++/14/bits/stl_uninitialized.h:185:15,
-     inlined from 'static void llvm::SmallVectorTemplateBase<T, <anonymous> >::uninitialized_move(It1, It1, It2) [with It1 = llvm::DWARFDebugLoc::Entry*; It2 = llvm::DWARFDebugLoc::Entry*; T = llvm::DWARFDebugLoc::Entry; bool <anonymous> = false]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:194:28,
-     inlined from 'void llvm::SmallVectorTemplateBase<T, <anonymous> >::grow(size_t) [with T = llvm::DWARFDebugLoc::Entry; bool <anonymous> = false]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:243:27:
- /usr/include/c++/14/bits/stl_uninitialized.h:137:39: note: parameter passing for argument of type 'std::move_iterator<llvm::DWARFDebugLoc::Entry*>' changed in GCC 7.1
-   137 |         { return std::__do_uninit_copy(__first, __last, __result); }
-       |                  ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
- In static member function 'static _ForwardIterator std::__uninitialized_copy<_TrivialValueTypes>::__uninit_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = std::move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*; bool _TrivialValueTypes = false]',
-     inlined from '_ForwardIterator std::uninitialized_copy(_InputIterator, _InputIterator, _ForwardIterator) [with _InputIterator = move_iterator<llvm::DWARFDebugLoc::Entry*>; _ForwardIterator = llvm::DWARFDebugLoc::Entry*]' at /usr/include/c++/14/bits/stl_uninitialized.h:185:15,
-     inlined from 'static void llvm::SmallVectorTemplateBase<T, <anonymous> >::uninitialized_move(It1, It1, It2) [with It1 = llvm::DWARFDebugLoc::Entry*; It2 = llvm::DWARFDebugLoc::Entry*; T = llvm::DWARFDebugLoc::Entry; bool <anonymous> = false]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:194:28,
-     inlined from 'llvm::SmallVectorImpl<T>& llvm::SmallVectorImpl<T>::operator=(llvm::SmallVectorImpl<T>&&) [with T = llvm::DWARFDebugLoc::Entry]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:806:27:
- /usr/include/c++/14/bits/stl_uninitialized.h:137:39: note: parameter passing for argument of type 'std::move_iterator<llvm::DWARFDebugLoc::Entry*>' changed in GCC 7.1
-   137 |         { return std::__do_uninit_copy(__first, __last, __result); }
-       |                  ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:62,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFListTable.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h:17,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFUnit.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h:15,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:9:
- /usr/include/c++/14/bits/stl_tree.h: In member function 'std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::_M_emplace_hint_unique(const_iterator, _Args&& ...) [with _Args = {std::pair<long long unsigned int, llvm::DWARFUnit*>}; _Key = long long unsigned int; _Val = std::pair<const long long unsigned int, llvm::DWARFUnit*>; _KeyOfValue = std::_Select1st<std::pair<const long long unsigned int, llvm::DWARFUnit*> >; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]':
- /usr/include/c++/14/bits/stl_tree.h:2456:7: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, llvm::DWARFUnit*>, std::_Select1st<std::pair<const long long unsigned int, llvm::DWARFUnit*> >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> > >::const_iterator' changed in GCC 7.1
-  2456 |       _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:63:
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::iterator std::map<_Key, _Tp, _Compare, _Alloc>::emplace_hint(const_iterator, _Args&& ...) [with _Args = {std::pair<long long unsigned int, llvm::DWARFUnit*>}; _Key = long long unsigned int; _Tp = llvm::DWARFUnit*; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]',
-     inlined from 'std::__enable_if_t<((bool)std::is_constructible<std::pair<const _Key, _Val>, _Pair>::value), std::pair<typename std::_Rb_tree<_Key, std::pair<const _Key, _Val>, std::_Select1st<std::pair<const _Key, _Val> >, _Compare, typename __gnu_cxx::__alloc_traits<_Allocator>::rebind<std::pair<const _Key, _Val> >::other>::iterator, bool> > std::map<_Key, _Tp, _Compare, _Alloc>::insert(_Pair&&) [with _Pair = std::pair<long long unsigned int, llvm::DWARFUnit*>; _Key = long long unsigned int; _Tp = llvm::DWARFUnit*; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]' at /usr/include/c++/14/bits/stl_map.h:859:27,
-     inlined from 'llvm::DWARFDebugLine::SectionParser::LineToUnitMap buildLineToUnitMap(llvm::DWARFDebugLine::SectionParser::cu_range, llvm::DWARFDebugLine::SectionParser::tu_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:1109:26,
-     inlined from 'llvm::DWARFDebugLine::SectionParser::SectionParser(llvm::DWARFDataExtractor&, const llvm::DWARFContext&, cu_range, tu_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:1121:34:
- /usr/include/c++/14/bits/stl_map.h:640:45: note: parameter passing for argument of type 'std::map<long long unsigned int, llvm::DWARFUnit*>::const_iterator' {aka 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, llvm::DWARFUnit*>, std::_Select1st<std::pair<const long long unsigned int, llvm::DWARFUnit*> >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> > >::const_iterator'} changed in GCC 7.1
-   640 |           return _M_t._M_emplace_hint_unique(__pos,
-       |                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
-   641 |                                              std::forward<_Args>(__args)...);
-       |                                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::iterator std::map<_Key, _Tp, _Compare, _Alloc>::emplace_hint(const_iterator, _Args&& ...) [with _Args = {std::pair<long long unsigned int, llvm::DWARFUnit*>}; _Key = long long unsigned int; _Tp = llvm::DWARFUnit*; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]',
-     inlined from 'std::__enable_if_t<((bool)std::is_constructible<std::pair<const _Key, _Val>, _Pair>::value), std::pair<typename std::_Rb_tree<_Key, std::pair<const _Key, _Val>, std::_Select1st<std::pair<const _Key, _Val> >, _Compare, typename __gnu_cxx::__alloc_traits<_Allocator>::rebind<std::pair<const _Key, _Val> >::other>::iterator, bool> > std::map<_Key, _Tp, _Compare, _Alloc>::insert(_Pair&&) [with _Pair = std::pair<long long unsigned int, llvm::DWARFUnit*>; _Key = long long unsigned int; _Tp = llvm::DWARFUnit*; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> >]' at /usr/include/c++/14/bits/stl_map.h:859:27,
-     inlined from 'llvm::DWARFDebugLine::SectionParser::LineToUnitMap buildLineToUnitMap(llvm::DWARFDebugLine::SectionParser::cu_range, llvm::DWARFDebugLine::SectionParser::tu_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:1113:26,
-     inlined from 'llvm::DWARFDebugLine::SectionParser::SectionParser(llvm::DWARFDataExtractor&, const llvm::DWARFContext&, cu_range, tu_range)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:1121:34:
- /usr/include/c++/14/bits/stl_map.h:640:45: note: parameter passing for argument of type 'std::map<long long unsigned int, llvm::DWARFUnit*>::const_iterator' {aka 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, llvm::DWARFUnit*>, std::_Select1st<std::pair<const long long unsigned int, llvm::DWARFUnit*> >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, llvm::DWARFUnit*> > >::const_iterator'} changed in GCC 7.1
-   640 |           return _M_t._M_emplace_hint_unique(__pos,
-       |                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~
-   641 |                                              std::forward<_Args>(__args)...);
-       |                                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/algorithm:61,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/Support/MathExtras.h:18,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/SmallVector.h:19,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/StringRef.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h:13:
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__unguarded_linear_insert(_RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Val_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]':
- /usr/include/c++/14/bits/stl_algo.h:1750:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1750 |     __unguarded_linear_insert(_RandomAccessIterator __last,
-       |     ^~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]':
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1770 |     __insertion_sort(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1770:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
- In file included from /usr/include/c++/14/bits/stl_algo.h:61:
- /usr/include/c++/14/bits/stl_heap.h: In function 'void std::__adjust_heap(_RandomAccessIterator, _Distance, _Distance, _Tp, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Distance = int; _Tp = llvm::DWARFDebugLine::Sequence; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]':
- /usr/include/c++/14/bits/stl_heap.h:224:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-   224 |     __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex,
-       |     ^~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h: In function 'void std::__introsort_loop(_RandomAccessIterator, _RandomAccessIterator, _Size, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Size = int; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]':
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1876 |     __introsort_loop(_RandomAccessIterator __first,
-       |     ^~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1876:5: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
- /usr/include/c++/14/bits/stl_algo.h:1890:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1890 |           std::__introsort_loop(__cut, __last, __depth_limit, __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In function 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]',
-     inlined from 'void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)]' at /usr/include/c++/14/bits/stl_algo.h:4805:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy, Compare) [with IteratorTy = __gnu_cxx::__normal_iterator<DWARFDebugLine::Sequence*, std::vector<DWARFDebugLine::Sequence> >; Compare = bool (*)(const DWARFDebugLine::Sequence&, const DWARFDebugLine::Sequence&)]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1113:12,
-     inlined from 'void llvm::sort(Container&&, Compare) [with Container = std::vector<DWARFDebugLine::Sequence>&; Compare = bool (*)(const DWARFDebugLine::Sequence&, const DWARFDebugLine::Sequence&)]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1118:13,
-     inlined from 'llvm::Error llvm::DWARFDebugLine::LineTable::parse(llvm::DWARFDataExtractor&, uint64_t*, const llvm::DWARFContext&, const llvm::DWARFUnit*, std::function<void(llvm::Error)>, llvm::raw_ostream*)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:897:15:
- /usr/include/c++/14/bits/stl_algo.h:1905:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1905 |           std::__introsort_loop(__first, __last,
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
-  1906 |                                 std::__lg(__last - __first) * 2,
-       |                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  1907 |                                 __comp);
-       |                                 ~~~~~~~
- In function 'void std::__final_insertion_sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]',
-     inlined from 'void std::__sort(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)>]' at /usr/include/c++/14/bits/stl_algo.h:1908:31,
-     inlined from 'void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, vector<llvm::DWARFDebugLine::Sequence> >; _Compare = bool (*)(const llvm::DWARFDebugLine::Sequence&, const llvm::DWARFDebugLine::Sequence&)]' at /usr/include/c++/14/bits/stl_algo.h:4805:18,
-     inlined from 'void llvm::sort(IteratorTy, IteratorTy, Compare) [with IteratorTy = __gnu_cxx::__normal_iterator<DWARFDebugLine::Sequence*, std::vector<DWARFDebugLine::Sequence> >; Compare = bool (*)(const DWARFDebugLine::Sequence&, const DWARFDebugLine::Sequence&)]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1113:12,
-     inlined from 'void llvm::sort(Container&&, Compare) [with Container = std::vector<DWARFDebugLine::Sequence>&; Compare = bool (*)(const DWARFDebugLine::Sequence&, const DWARFDebugLine::Sequence&)]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:1118:13,
-     inlined from 'llvm::Error llvm::DWARFDebugLine::LineTable::parse(llvm::DWARFDataExtractor&, uint64_t*, const llvm::DWARFContext&, const llvm::DWARFUnit*, std::function<void(llvm::Error)>, llvm::raw_ostream*)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFDebugLine.cpp:897:15:
- /usr/include/c++/14/bits/stl_algo.h:1817:32: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1817 |           std::__insertion_sort(__first, __first + int(_S_threshold), __comp);
-       |           ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /usr/include/c++/14/bits/stl_algo.h:1822:30: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFDebugLine::Sequence*, std::vector<llvm::DWARFDebugLine::Sequence> >' changed in GCC 7.1
-  1822 |         std::__insertion_sort(__first, __last, __comp);
-       |         ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:62,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFListTable.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h:17,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFUnit.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFUnit.cpp:9:
- /usr/include/c++/14/bits/stl_tree.h: In function 'std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::_M_emplace_hint_unique(const_iterator, _Args&& ...) [with _Args = {const std::piecewise_construct_t&, std::tuple<const long long unsigned int&>, std::tuple<>}; _Key = long long unsigned int; _Val = std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >; _KeyOfValue = std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >]':
- /usr/include/c++/14/bits/stl_tree.h:2456:7: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >, std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > > >::const_iterator' changed in GCC 7.1
-  2456 |       _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:63:
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::pair<long long unsigned int, llvm::DWARFDie>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >]',
-     inlined from 'void llvm::DWARFUnit::updateAddressDieMap(llvm::DWARFDie)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFUnit.cpp:615:32:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >, std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::pair<long long unsigned int, llvm::DWARFDie>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >]',
-     inlined from 'void llvm::DWARFUnit::updateAddressDieMap(llvm::DWARFDie)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFUnit.cpp:617:32:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >, std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::pair<long long unsigned int, llvm::DWARFDie>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >]',
-     inlined from 'void llvm::DWARFUnit::updateAddressDieMap(llvm::DWARFDie)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFUnit.cpp:619:27:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> >, std::_Select1st<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::pair<long long unsigned int, llvm::DWARFDie> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:72,
-                  from /usr/include/c++/14/functional:64,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/STLExtras.h:30,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/ArrayRef.h:15,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/ADT/DenseMapInfo.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/Object/ObjectFile.h:16,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DIContext.h:18,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFVerifier.h:12,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFVerifier.cpp:8:
- /usr/include/c++/14/bits/vector.tcc: In member function 'void std::vector<_Tp, _Alloc>::_M_realloc_insert(iterator, _Args&& ...) [with _Args = {const llvm::DWARFAddressRange&}; _Tp = llvm::DWARFAddressRange; _Alloc = std::allocator<llvm::DWARFAddressRange>]':
- /usr/include/c++/14/bits/vector.tcc:452:7: note: parameter passing for argument of type 'std::vector<llvm::DWARFAddressRange>::iterator' changed in GCC 7.1
-   452 |       vector<_Tp, _Alloc>::
-       |       ^~~~~~~~~~~~~~~~~~~
- In member function 'std::vector<_Tp, _Alloc>::iterator std::vector<_Tp, _Alloc>::insert(const_iterator, const value_type&) [with _Tp = llvm::DWARFAddressRange; _Alloc = std::allocator<llvm::DWARFAddressRange>]',
-     inlined from 'llvm::DWARFVerifier::DieRangeInfo::address_range_iterator llvm::DWARFVerifier::DieRangeInfo::insert(const llvm::DWARFAddressRange&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFVerifier.cpp:45:16:
- /usr/include/c++/14/bits/vector.tcc:170:26: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<llvm::DWARFAddressRange*, std::vector<llvm::DWARFAddressRange> >' changed in GCC 7.1
-   170 |         _M_realloc_insert(begin() + (__position - cbegin()), __x);
-       |         ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:62,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/include/llvm/DebugInfo/DWARF/DWARFVerifier.h:19:
- /usr/include/c++/14/bits/stl_tree.h: In member function 'std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::_M_emplace_hint_unique(const_iterator, _Args&& ...) [with _Args = {const std::piecewise_construct_t&, std::tuple<const long long unsigned int&>, std::tuple<>}; _Key = long long unsigned int; _Val = std::pair<const long long unsigned int, std::set<long long unsigned int> >; _KeyOfValue = std::_Select1st<std::pair<const long long unsigned int, std::set<long long unsigned int> > >; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > >]':
- /usr/include/c++/14/bits/stl_tree.h:2456:7: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::set<long long unsigned int> >, std::_Select1st<std::pair<const long long unsigned int, std::set<long long unsigned int> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > > >::const_iterator' changed in GCC 7.1
-  2456 |       _Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/map:63:
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::set<long long unsigned int>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > >]',
-     inlined from 'unsigned int llvm::DWARFVerifier::verifyDebugInfoForm(const llvm::DWARFDie&, llvm::DWARFAttribute&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFVerifier.cpp:559:38:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::set<long long unsigned int> >, std::_Select1st<std::pair<const long long unsigned int, std::set<long long unsigned int> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In member function 'std::map<_Key, _Tp, _Compare, _Alloc>::mapped_type& std::map<_Key, _Tp, _Compare, _Alloc>::operator[](const key_type&) [with _Key = long long unsigned int; _Tp = std::set<long long unsigned int>; _Compare = std::less<long long unsigned int>; _Alloc = std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > >]',
-     inlined from 'unsigned int llvm::DWARFVerifier::verifyDebugInfoForm(const llvm::DWARFDie&, llvm::DWARFAttribute&)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/third_party/llvm-project/DWARFVerifier.cpp:578:38:
- /usr/include/c++/14/bits/stl_map.h:513:44: note: parameter passing for argument of type 'std::_Rb_tree<long long unsigned int, std::pair<const long long unsigned int, std::set<long long unsigned int> >, std::_Select1st<std::pair<const long long unsigned int, std::set<long long unsigned int> > >, std::less<long long unsigned int>, std::allocator<std::pair<const long long unsigned int, std::set<long long unsigned int> > > >::const_iterator' changed in GCC 7.1
-   513 |           __i = _M_t._M_emplace_hint_unique(__i, std::piecewise_construct,
-       |                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   514 |                                             std::tuple<const key_type&>(__k),
-       |                                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-   515 |                                             std::tuple<>());
-       |                                             ~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:72,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/runtime-table.h:21,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/runtime-table.cpp:17:
- /usr/include/c++/14/bits/vector.tcc: In member function 'void std::vector<_Tp, _Alloc>::_M_fill_insert(iterator, size_type, const value_type&) [with _Tp = wasm::Literal; _Alloc = std::allocator<wasm::Literal>]':
- /usr/include/c++/14/bits/vector.tcc:700:5: note: parameter passing for argument of type 'std::vector<wasm::Literal, std::allocator<wasm::Literal> >::iterator' changed in GCC 7.1
-   700 |     vector<_Tp, _Alloc>::
-       |     ^~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:66:
- In member function 'void std::vector<_Tp, _Alloc>::resize(size_type, const value_type&) [with _Tp = wasm::Literal; _Alloc = std::allocator<wasm::Literal>]',
-     inlined from 'virtual std::optional<unsigned int> wasm::RealRuntimeTable::grow(std::size_t, wasm::Literal)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/runtime-table.cpp:64:15:
- /usr/include/c++/14/bits/stl_vector.h:1037:25: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<wasm::Literal*, std::vector<wasm::Literal, std::allocator<wasm::Literal> > >' changed in GCC 7.1
-  1037 |           _M_fill_insert(end(), __new_size - size(), __x);
-       |           ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/bits/unordered_map.h:33,
-                  from /usr/include/c++/14/unordered_map:41,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm.h:33,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/boolean.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/bits.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/properties.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/iteration.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/passes/Precompute.cpp:30:
- /usr/include/c++/14/bits/hashtable.h: In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(const_iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]':
- /usr/include/c++/14/bits/hashtable.h:2380:5: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  2380 |     _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
-       |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  2381 |                _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::
-       |                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]',
-     inlined from 'std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::iterator std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::erase(iterator) [with _Key = wasm::Expression*; _Tp = wasm::Literals; _Hash = std::hash<wasm::Expression*>; _Pred = std::equal_to<wasm::Expression*>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >]' at /usr/include/c++/14/bits/unordered_map.h:754:26,
-     inlined from 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::PrecomputingExpressionRunner]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:606:34:
- /usr/include/c++/14/bits/hashtable.h:1024:21: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  1024 |       { return erase(const_iterator(__it)); }
-       |                ~~~~~^~~~~~~~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm.h:37,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/manipulation.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-builder.h:20,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/cfg/Relooper.h:41,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/binaryen-c.cpp:24:
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/literal.h: In function 'wasm::Literals::Literals(std::initializer_list<wasm::Literal>)':
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/literal.h:745:3: note: parameter passing for argument of type 'std::initializer_list<wasm::Literal>' changed in GCC 7.1
-   745 |   Literals(std::initializer_list<Literal> init)
-       |   ^~~~~~~~
- In file included from /usr/include/c++/14/bits/unordered_map.h:33,
-                  from /usr/include/c++/14/unordered_map:41,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/support/insert_ordered.h:22,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/cfg/Relooper.h:40:
- /usr/include/c++/14/bits/hashtable.h: In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(const_iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]':
- /usr/include/c++/14/bits/hashtable.h:2380:5: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  2380 |     _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
-       |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-  2381 |                _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::
-       |                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:72,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm.h:34:
- /usr/include/c++/14/bits/vector.tcc: In member function 'void std::vector<_Tp, _Alloc>::_M_fill_insert(iterator, size_type, const value_type&) [with _Tp = wasm::Literal; _Alloc = std::allocator<wasm::Literal>]':
- /usr/include/c++/14/bits/vector.tcc:700:5: note: parameter passing for argument of type 'std::vector<wasm::Literal, std::allocator<wasm::Literal> >::iterator' changed in GCC 7.1
-   700 |     vector<_Tp, _Alloc>::
-       |     ^~~~~~~~~~~~~~~~~~~
- In file included from /usr/include/c++/14/vector:66:
- In member function 'void std::vector<_Tp, _Alloc>::resize(size_type, const value_type&) [with _Tp = wasm::Literal; _Alloc = std::allocator<wasm::Literal>]',
-     inlined from 'wasm::RealRuntimeTable::RealRuntimeTable(wasm::Literal, wasm::Table)' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/ir/runtime-table.h:63:17,
-     inlined from 'std::__detail::__unique_ptr_t<_Tp> std::make_unique(_Args&& ...) [with _Tp = wasm::RealRuntimeTable; _Args = {wasm::Literal&, wasm::Table&}]' at /usr/include/c++/14/bits/unique_ptr.h:1077:30,
-     inlined from 'wasm::ModuleRunnerBase<wasm::ModuleRunner>::ModuleRunnerBase(wasm::Module&, ExternalInterface*, std::shared_ptr<wasm::ImportResolver>, std::map<wasm::Name, std::shared_ptr<wasm::ModuleRunner>, std::less<wasm::Name>, std::allocator<std::pair<const wasm::Name, std::shared_ptr<wasm::ModuleRunner> > > >, std::function<std::unique_ptr<wasm::RuntimeTable>(wasm::Literal, wasm::Table)>)::<lambda(wasm::Literal, wasm::Table)>' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:3187:58,
-     inlined from 'constexpr _Res std::__invoke_impl(__invoke_other, _Fn&&, _Args&& ...) [with _Res = unique_ptr<wasm::RuntimeTable>; _Fn = wasm::ModuleRunnerBase<wasm::ModuleRunner>::ModuleRunnerBase(wasm::Module&, ExternalInterface*, std::shared_ptr<wasm::ImportResolver>, std::map<wasm::Name, std::shared_ptr<wasm::ModuleRunner>, std::less<wasm::Name>, std::allocator<std::pair<const wasm::Name, std::shared_ptr<wasm::ModuleRunner> > > >, std::function<std::unique_ptr<wasm::RuntimeTable>(wasm::Literal, wasm::Table)>)::<lambda(wasm::Literal, wasm::Table)>&; _Args = {wasm::Literal, wasm::Table}]' at /usr/include/c++/14/bits/invoke.h:61:67,
-     inlined from 'constexpr std::enable_if_t<((bool)is_invocable_r_v<_Res, _Callable, _Args ...>), _Res> std::__invoke_r(_Callable&&, _Args&& ...) [with _Res = unique_ptr<wasm::RuntimeTable>; _Callable = wasm::ModuleRunnerBase<wasm::ModuleRunner>::ModuleRunnerBase(wasm::Module&, ExternalInterface*, std::shared_ptr<wasm::ImportResolver>, std::map<wasm::Name, std::shared_ptr<wasm::ModuleRunner>, std::less<wasm::Name>, std::allocator<std::pair<const wasm::Name, std::shared_ptr<wasm::ModuleRunner> > > >, std::function<std::unique_ptr<wasm::RuntimeTable>(wasm::Literal, wasm::Table)>)::<lambda(wasm::Literal, wasm::Table)>&; _Args = {wasm::Literal, wasm::Table}]' at /usr/include/c++/14/bits/invoke.h:116:38,
-     inlined from 'static _Res std::_Function_handler<_Res(_ArgTypes ...), _Functor>::_M_invoke(const std::_Any_data&, _ArgTypes&& ...) [with _Res = std::unique_ptr<wasm::RuntimeTable>; _Functor = wasm::ModuleRunnerBase<wasm::ModuleRunner>::ModuleRunnerBase(wasm::Module&, ExternalInterface*, std::shared_ptr<wasm::ImportResolver>, std::map<wasm::Name, std::shared_ptr<wasm::ModuleRunner>, std::less<wasm::Name>, std::allocator<std::pair<const wasm::Name, std::shared_ptr<wasm::ModuleRunner> > > >, std::function<std::unique_ptr<wasm::RuntimeTable>(wasm::Literal, wasm::Table)>)::<lambda(wasm::Literal, wasm::Table)>; _ArgTypes = {wasm::Literal, wasm::Table}]' at /usr/include/c++/14/bits/std_function.h:291:44:
- /usr/include/c++/14/bits/stl_vector.h:1037:25: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<wasm::Literal*, std::vector<wasm::Literal, std::allocator<wasm::Literal> > >' changed in GCC 7.1
-  1037 |           _M_fill_insert(end(), __new_size - size(), __x);
-       |           ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]',
-     inlined from 'std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::iterator std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::erase(iterator) [with _Key = wasm::Expression*; _Tp = wasm::Literals; _Hash = std::hash<wasm::Expression*>; _Pred = std::equal_to<wasm::Expression*>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >]' at /usr/include/c++/14/bits/unordered_map.h:754:26,
-     inlined from 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::CExpressionRunner]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:606:34:
- /usr/include/c++/14/bits/hashtable.h:1024:21: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  1024 |       { return erase(const_iterator(__it)); }
-       |                ~~~~~^~~~~~~~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/shell-interface.h:30,
-                  from /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/binaryen-c.cpp:28:
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h: In member function 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::CExpressionRunner]':
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:663:28: note: parameter passing for argument of type 'std::initializer_list<wasm::Literal>' changed in GCC 7.1
-   663 |             pushResumeEntry({Literal(int32_t(num))}, "num executed children");
-       |             ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In member function 'std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::iterator std::_Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal, _Hash, _RangeHash, _Unused, _RehashPolicy, _Traits>::erase(iterator) [with _Key = wasm::Expression*; _Value = std::pair<wasm::Expression* const, wasm::Literals>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >; _ExtractKey = std::__detail::_Select1st; _Equal = std::equal_to<wasm::Expression*>; _Hash = std::hash<wasm::Expression*>; _RangeHash = std::__detail::_Mod_range_hashing; _Unused = std::__detail::_Default_ranged_hash; _RehashPolicy = std::__detail::_Prime_rehash_policy; _Traits = std::__detail::_Hashtable_traits<false, false, true>]',
-     inlined from 'std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::iterator std::unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>::erase(iterator) [with _Key = wasm::Expression*; _Tp = wasm::Literals; _Hash = std::hash<wasm::Expression*>; _Pred = std::equal_to<wasm::Expression*>; _Alloc = std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >]' at /usr/include/c++/14/bits/unordered_map.h:754:26,
-     inlined from 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::ModuleRunner]' at /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:606:34:
- /usr/include/c++/14/bits/hashtable.h:1024:21: note: parameter passing for argument of type 'std::_Hashtable<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator' {aka 'std::__detail::_Insert_base<wasm::Expression*, std::pair<wasm::Expression* const, wasm::Literals>, std::allocator<std::pair<wasm::Expression* const, wasm::Literals> >, std::__detail::_Select1st, std::equal_to<wasm::Expression*>, std::hash<wasm::Expression*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::const_iterator'} changed in GCC 7.1
-  1024 |       { return erase(const_iterator(__it)); }
-       |                ~~~~~^~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h: In member function 'wasm::Flow wasm::ExpressionRunner<SubType>::visit(wasm::Expression*) [with SubType = wasm::ModuleRunner]':
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:663:28: note: parameter passing for argument of type 'std::initializer_list<wasm::Literal>' changed in GCC 7.1
-   663 |             pushResumeEntry({Literal(int32_t(num))}, "num executed children");
-       |             ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h: In member function 'wasm::Flow wasm::ModuleRunnerBase<SubType>::visitCallIndirect(wasm::CallIndirect*) [with SubType = wasm::ModuleRunner]':
- /home/opam/.opam/5.4/.opam-switch/build/libbinaryen.126.0.0/_build/default/binaryen/src/wasm-interpreter.h:3828:30: note: parameter passing for argument of type 'std::initializer_list<wasm::Literal>' changed in GCC 7.1
-  3828 |       self()->pushResumeEntry({funcref}, "call_indirect");
-       |       ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
-> compiled  libbinaryen.126.0.0
-> removed   libbinaryen.126.0.0
-> installed libbinaryen.126.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-29 00:37.47 ---> saved as "dc6b4db76083c2ad7ad6b829c43904df80bb79df55ccf4b997bc01592bc61d1e"
Job succeeded
2026-03-29 00:37.59: Job succeeded