(not at the head of any monitored branch or PR)
2025-08-05 14:01.49: New job: test opsian.0.1 with dune.3.20.0~alpha2, using opam 2.3
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28298/head (dd5533520fdcb5364efecb41d297e786ddcc1f76)
                              on debian-12-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28298/head" && git reset --hard dd553352
git fetch origin master
git merge --no-edit 39155538b0d7654773a68bd42b0b7dbb8eb14ad7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.20.0~alpha2 3.20.0~alpha2
RUN opam reinstall dune.3.20.0~alpha2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.20.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall opsian.0.1; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opsian.0.1' && 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 opsian.0.1) || true
RUN opam reinstall --with-test --verbose opsian.0.1; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'opsian.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2025-08-05 14:01.49: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-dune.3.20.0~alpha2-opsian.0.1-dd5533520fdcb5364efecb41d297e786ddcc1f76"
2025-08-05 14:01.49: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.20.0~alpha2 3.20.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.20.0~alpha2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.20.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall opsian.0.1;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'opsian.0.1' && 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 opsian.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose opsian.0.1;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'opsian.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-08-05 14:01.49: Waiting for resource in pool OCluster
2025-08-05 21:27.45: Waiting for worker…
2025-08-05 21:29.30: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at 39155538b0 Merge pull request #28292 from gildor478/release-ocamlmod-v0.1.1
Updating 39155538b0..dd5533520f
Fast-forward
 .../chrome-trace/chrome-trace.3.20.0~alpha2/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.20.0~alpha2/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.20.0~alpha2/opam             | 47 ++++++++++++++
 .../dune-configurator.3.20.0~alpha2/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.20.0~alpha2/opam    | 44 +++++++++++++
 .../dune-private-libs.3.20.0~alpha2/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam      | 45 +++++++++++++
 packages/dune-site/dune-site.3.20.0~alpha2/opam    | 39 ++++++++++++
 packages/dune/dune.3.20.0~alpha2/opam              | 74 ++++++++++++++++++++++
 packages/dyn/dyn.3.20.0~alpha2/opam                | 42 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.20.0~alpha2/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.20.0~alpha2/opam          | 46 ++++++++++++++
 packages/xdg/xdg.3.20.0~alpha2/opam                | 41 ++++++++++++
 15 files changed, 704 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.20.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.20.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.20.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.20.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.20.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.20.0~alpha2/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63' locally
docker.io/ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63: Pulling from ocaml/opam
a77c4f4a24ac: Already exists
9d1a03aa3c71: Pulling fs layer
baba434270f2: Pulling fs layer
2a8a0f93626e: Pulling fs layer
f6ba2ed01176: Pulling fs layer
f6ba2ed01176: Waiting
baba434270f2: Download complete
2a8a0f93626e: Download complete
f6ba2ed01176: Download complete
9d1a03aa3c71: Verifying Checksum
9d1a03aa3c71: Download complete
9d1a03aa3c71: Pull complete
baba434270f2: Pull complete
2a8a0f93626e: Pull complete
f6ba2ed01176: Pull complete
Digest: sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
Status: Downloaded newer image for ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63
2025-08-05 21:30.06 ---> using "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-05 21:30.06 ---> using "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" 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 development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-05 21:30.06 ---> using "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-08-05 21:30.06 ---> using "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" 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/"))
2025-08-05 21:30.06 ---> using "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-08-05 21:30.07 ---> using "d7c14fc292f88db48f1d08b5e5bee64699faa33d6c6497ea4d0ded851936243b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-05 21:30.07 ---> using "4d064c1160c8dcca737cd7528eeaed565bdc230fcc7555f114d63e3df515c34a" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [19.6 kB]
- Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index
- Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6916 B]
- Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB]
- Fetched 402 kB in 0s (819 kB/s)
- Reading package lists...
- 
2025-08-05 21:30.07 ---> using "f43accf761343248e80f7b61b22936d9bfc3109749567c716c34e25a997df933" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.0~alpha2 3.20.0~alpha2"))
dune is now pinned to version 3.20.0~alpha2
2025-08-05 21:30.07 ---> using "6638f587e9f000750e3e69596c6135f07b9c36d4a2f3df033c7caac1be116f53" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.0~alpha2  (cached)
-> installed dune.3.20.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 21:30.07 ---> using "cdd243173bfeebba71c044bc8b6d060c2b698788bb7464614ff31bbb47a8931d" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall opsian.0.1;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'opsian.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
opsian.0.1 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 7 packages
  - install conf-autoconf   0.2 [required by conf-automake]
  - install conf-automake   1   [required by opsian]
  - install conf-liblzma    1   [required by opsian]
  - install conf-libtool    1   [required by opsian]
  - install conf-perl       2   [required by opsian]
  - install conf-pkg-config 4   [required by conf-liblzma]
  - install opsian          0.1

The following system packages will first need to be installed:
    autoconf automake liblzma-dev libtool pkg-config

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

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

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "autoconf" "automake" "liblzma-dev" "libtool" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libmagic-mgc.
- (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 ... 18747 files and directories currently installed.)
- Preparing to unpack .../00-libmagic-mgc_1%3a5.44-3_amd64.deb ...
- Unpacking libmagic-mgc (1:5.44-3) ...
- Selecting previously unselected package libmagic1:amd64.
- Preparing to unpack .../01-libmagic1_1%3a5.44-3_amd64.deb ...
- Unpacking libmagic1:amd64 (1:5.44-3) ...
- Selecting previously unselected package file.
- Preparing to unpack .../02-file_1%3a5.44-3_amd64.deb ...
- Unpacking file (1:5.44-3) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../03-m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../04-autoconf_2.71-3_all.deb ...
- Unpacking autoconf (2.71-3) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../05-autotools-dev_20220109.1_all.deb ...
- Unpacking autotools-dev (20220109.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../06-automake_1%3a1.16.5-1.3_all.deb ...
- Unpacking automake (1:1.16.5-1.3) ...
- Selecting previously unselected package libltdl7:amd64.
- Preparing to unpack .../07-libltdl7_2.4.7-7~deb12u1_amd64.deb ...
- Unpacking libltdl7:amd64 (2.4.7-7~deb12u1) ...
- Selecting previously unselected package libltdl-dev:amd64.
- Preparing to unpack .../08-libltdl-dev_2.4.7-7~deb12u1_amd64.deb ...
- Unpacking libltdl-dev:amd64 (2.4.7-7~deb12u1) ...
- Selecting previously unselected package liblzma-dev:amd64.
- Preparing to unpack .../09-liblzma-dev_5.4.1-1_amd64.deb ...
- Unpacking liblzma-dev:amd64 (5.4.1-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../10-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package libtool.
- Preparing to unpack .../11-libtool_2.4.7-7~deb12u1_all.deb ...
- Unpacking libtool (2.4.7-7~deb12u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../12-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../13-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../14-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libmagic-mgc (1:5.44-3) ...
- Setting up libmagic1:amd64 (1:5.44-3) ...
- Setting up m4 (1.4.19-3) ...
- Setting up file (1:5.44-3) ...
- Setting up autotools-dev (20220109.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libltdl7:amd64 (2.4.7-7~deb12u1) ...
- Setting up autoconf (2.71-3) ...
- Setting up liblzma-dev:amd64 (5.4.1-1) ...
- Setting up automake (1:1.16.5-1.3) ...
- update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
- Setting up libtool (2.4.7-7~deb12u1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up libltdl-dev:amd64 (2.4.7-7~deb12u1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u10) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-autoconf.0.2
-> installed conf-pkg-config.4
-> installed conf-libtool.1
-> installed conf-perl.2
-> installed conf-liblzma.1
-> installed conf-automake.1
-> retrieved opsian.0.1  (cached)
-> installed opsian.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 21:37.39 ---> saved as "270c754f9d20c50484b2e2195a6acbb24adcb72107a42dff039301d3fb84ce64"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test opsian.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile opsian 0.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved opsian.0.1  (https://opam.ocaml.org/cache)
-> removed   opsian.0.1
-> installed opsian.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 21:49.32 ---> saved as "913a953dfc27bb96d3e65f9a9e4f4c85646149338eaab9ffcc8364cb245776ea"

/home/opam: (run (shell  "opam reinstall --with-test --verbose opsian.0.1;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'opsian.0.1' && 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 opsian 0.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [opsian.0.1: extract]
-> retrieved opsian.0.1  (cached)
Processing  2/4: [opsian: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "opsian" "-j" "71" "@install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1)
- (cd _build/default/lib/deps/openssl && ./config)
- Operating system: x86_64-whatever-linux2
- Configuring OpenSSL version 1.1.1o (0x101010ffL) for linux-x86_64
- Using os-specific seed configuration
- Creating configdata.pm
- Creating Makefile
- 
- **********************************************************************
- ***                                                                ***
- ***   OpenSSL has been successfully configured                     ***
- ***                                                                ***
- ***   If you encounter a problem while building, please open an    ***
- ***   issue on GitHub <https://github.com/openssl/openssl/issues>  ***
- ***   and include the output from the following command:           ***
- ***                                                                ***
- ***       perl configdata.pm --dump                                ***
- ***                                                                ***
- ***   (If you are new to OpenSSL, you might want to consult the    ***
- ***   'Troubleshooting' section in the INSTALL file first)         ***
- ***                                                                ***
- **********************************************************************
- (cd _build/default/lib/deps/libbacktrace && ./configure CFLAGS=-fPIC --enable-shared)
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to accept ISO C89... none needed
- checking whether gcc understands -c and -o together... yes
- checking how to run the C preprocessor... gcc -E
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for ANSI C header files... yes
- checking for sys/types.h... yes
- checking for sys/stat.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for memory.h... yes
- checking for strings.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for unistd.h... yes
- checking minix/config.h usability... no
- checking minix/config.h presence... no
- checking for minix/config.h... no
- checking whether it is safe to define __EXTENSIONS__... yes
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking whether to enable maintainer-specific portions of Makefiles... no
- checking for gcc... (cached) gcc
- checking whether we are using the GNU C compiler... (cached) yes
- checking whether gcc accepts -g... (cached) yes
- checking for gcc option to accept ISO C89... (cached) none needed
- checking whether gcc understands -c and -o together... (cached) yes
- checking for ranlib... ranlib
- checking for gawk... (cached) mawk
- checking for dwz... no
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking whether the shell understands some XSI constructs... yes
- checking whether the shell understands "+="... yes
- checking for /usr/bin/ld option to reload object files... -r
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for ar... ar
- checking for strip... strip
- checking for ranlib... (cached) ranlib
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... yes
- checking for special C compiler options needed for large files... no
- checking for _FILE_OFFSET_BITS value needed for large files... no
- checking unwind.h usability... yes
- checking unwind.h presence... yes
- checking for unwind.h... yes
- checking for _Unwind_Backtrace... yes
- checking for -funwind-tables option... yes
- checking for -frandom-seed=string option... yes
- checking whether gcc supports -W... yes
- checking whether gcc supports -Wall... yes
- checking whether gcc supports -Wwrite-strings... yes
- checking whether gcc supports -Wstrict-prototypes... yes
- checking whether gcc supports -Wmissing-prototypes... yes
- checking whether gcc supports -Wold-style-definition... yes
- checking whether gcc supports -Wmissing-format-attribute... yes
- checking whether gcc supports -Wcast-qual... yes
- checking for _Unwind_GetIPInfo... yes
- checking __sync extensions... yes
- checking __atomic extensions... yes
- checking output filetype... elf64
- checking sys/mman.h usability... yes
- checking sys/mman.h presence... yes
- checking for sys/mman.h... yes
- checking for mmap... yes
- checking link.h usability... yes
- checking link.h presence... yes
- checking for link.h... yes
- checking for dl_iterate_phdr... yes
- checking mach-o/dyld.h usability... no
- checking mach-o/dyld.h presence... no
- checking for mach-o/dyld.h... no
- checking sys/ldr.h usability... no
- checking sys/ldr.h presence... no
- checking for sys/ldr.h... no
- checking for fcntl... yes
- checking whether strnlen is declared... yes
- checking whether getpagesize is declared... yes
- checking for lstat... yes
- checking for readlink... yes
- checking for getexecname... no
- checking for KERN_PROC... no
- checking for KERN_PROG_ARGS... no
- checking for clock_gettime... yes
- checking whether -pthread is supported... yes
- checking whether -gdwarf-5 is supported... yes
- checking for compress in -lz... no
- checking whether --compress-debug-sections is supported... yes
- checking for objcopy... objcopy
- checking for readelf... readelf
- checking whether objcopy supports debuglink... yes
- checking for dsymutil... no
- checking for nm... /usr/bin/nm -B
- checking for xz... xz
- checking for comm... comm
- checking for lzma_auto_decoder in -llzma... yes
- checking whether tests can run... yes
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating backtrace-supported.h
- config.status: creating install-debuginfo-for-buildid.sh
- config.status: creating config.h
- config.status: executing libtool commands
- config.status: executing default commands
- /home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libbacktrace/missing: Unknown `--is-lightweight' option
- Try `/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libbacktrace/missing --help' for more information
- configure: WARNING: 'missing' script is too old or missing
- (cd _build/default/lib/deps/libbacktrace && /usr/bin/make)
- /usr/bin/make  all-am
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libbacktrace'
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=atomic.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o atomic.lo atomic.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=atomic.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c atomic.c  -fPIC -DPIC -o .libs/atomic.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=atomic.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c atomic.c -o atomic.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=dwarf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o dwarf.lo dwarf.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=dwarf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c dwarf.c  -fPIC -DPIC -o .libs/dwarf.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=dwarf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c dwarf.c -o dwarf.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=fileline.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o fileline.lo fileline.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=fileline.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c fileline.c  -fPIC -DPIC -o .libs/fileline.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=fileline.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c fileline.c -o fileline.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=posix.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o posix.lo posix.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=posix.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c posix.c  -fPIC -DPIC -o .libs/posix.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=posix.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c posix.c -o posix.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=print.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o print.lo print.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=print.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c print.c  -fPIC -DPIC -o .libs/print.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=print.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c print.c -o print.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=sort.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o sort.lo sort.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=sort.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c sort.c  -fPIC -DPIC -o .libs/sort.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=sort.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c sort.c -o sort.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=state.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o state.lo state.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=state.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c state.c  -fPIC -DPIC -o .libs/state.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=state.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c state.c -o state.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=backtrace.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o backtrace.lo backtrace.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=backtrace.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c backtrace.c  -fPIC -DPIC -o .libs/backtrace.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=backtrace.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c backtrace.c -o backtrace.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=simple.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o simple.lo simple.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=simple.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c simple.c  -fPIC -DPIC -o .libs/simple.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=simple.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c simple.c -o simple.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=elf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o elf.lo elf.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=elf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c elf.c  -fPIC -DPIC -o .libs/elf.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=elf.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c elf.c -o elf.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=mmapio.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o mmapio.lo mmapio.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=mmapio.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c mmapio.c  -fPIC -DPIC -o .libs/mmapio.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=mmapio.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c mmapio.c -o mmapio.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.    -funwind-tables -frandom-seed=mmap.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC -c -o mmap.lo mmap.c
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=mmap.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c mmap.c  -fPIC -DPIC -o .libs/mmap.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -funwind-tables -frandom-seed=mmap.lo -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual -fPIC -c mmap.c -o mmap.o >/dev/null 2>&1
- /bin/bash ./libtool  --tag=CC   --mode=link gcc -funwind-tables -frandom-seed=libbacktrace.la -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -Wcast-qual  -fPIC   -o libbacktrace.la -rpath /usr/local/lib atomic.lo dwarf.lo fileline.lo posix.lo print.lo sort.lo state.lo backtrace.lo simple.lo elf.lo mmapio.lo mmap.lo 
- libtool: link: gcc -shared  -fPIC -DPIC  .libs/atomic.o .libs/dwarf.o .libs/fileline.o .libs/posix.o .libs/print.o .libs/sort.o .libs/state.o .libs/backtrace.o .libs/simple.o .libs/elf.o .libs/mmapio.o .libs/mmap.o      -Wl,-soname -Wl,libbacktrace.so.0 -o .libs/libbacktrace.so.0.0.0
- libtool: link: (cd ".libs" && rm -f "libbacktrace.so.0" && ln -s "libbacktrace.so.0.0.0" "libbacktrace.so.0")
- libtool: link: (cd ".libs" && rm -f "libbacktrace.so" && ln -s "libbacktrace.so.0.0.0" "libbacktrace.so")
- libtool: link: ar cru .libs/libbacktrace.a  atomic.o dwarf.o fileline.o posix.o print.o sort.o state.o backtrace.o simple.o elf.o mmapio.o mmap.o
- libtool: link: ranlib .libs/libbacktrace.a
- libtool: link: ( cd ".libs" && rm -f "libbacktrace.la" && ln -s "../libbacktrace.la" "libbacktrace.la" )
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libbacktrace'
- ar: `u' modifier ignored since `D' is the default (see `U')
- (cd _build/default/lib/deps/protobuf && /usr/bin/autoreconf -isfv)
- libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
- libtoolize: linking file 'build-aux/ltmain.sh'
- libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
- libtoolize: linking file 'm4/libtool.m4'
- libtoolize: linking file 'm4/ltoptions.m4'
- libtoolize: linking file 'm4/ltsugar.m4'
- libtoolize: linking file 'm4/ltversion.m4'
- libtoolize: linking file 'm4/lt~obsolete.m4'
- libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
- libtoolize: linking file 'build-aux/ltmain.sh'
- libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
- libtoolize: and rerunning libtoolize and aclocal.
- libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
- libtoolize: putting auxiliary files in '.'.
- libtoolize: linking file './ltmain.sh'
- libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
- libtoolize: linking file 'm4/libtool.m4'
- libtoolize: linking file 'm4/ltoptions.m4'
- libtoolize: linking file 'm4/ltsugar.m4'
- libtoolize: linking file 'm4/ltversion.m4'
- libtoolize: linking file 'm4/lt~obsolete.m4'
- autoreconf: export WARNINGS=
- autoreconf: Entering directory '.'
- autoreconf: configure.ac: not using Gettext
- autoreconf: running: aclocal --force -I m4
- autoreconf: configure.ac: tracing
- autoreconf: configure.ac: adding subdirectory gmock to autoreconf
- autoreconf: Entering directory 'gmock'
- autoreconf: configure.ac: not using Gettext
- autoreconf: running: aclocal --force 
- autoreconf: configure.ac: tracing
- autoreconf: configure.ac: adding subdirectory gtest to autoreconf
- autoreconf: Entering directory 'gtest'
- autoreconf: configure.ac: not using Gettext
- autoreconf: running: aclocal --force -I m4
- autoreconf: configure.ac: tracing
- autoreconf: running: libtoolize --force
- autoreconf: configure.ac: not using Intltool
- autoreconf: configure.ac: not using Gtkdoc
- autoreconf: running: aclocal --force -I m4
- autoreconf: running: /usr/bin/autoconf --force
- configure.ac:30: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
- configure.ac:30: You should run autoupdate.
- m4/libtool.m4:100: AC_PROG_LIBTOOL is expanded from...
- configure.ac:30: the top level
- configure.ac:51: warning: The macro `AC_LANG_C' is obsolete.
- configure.ac:51: You should run autoupdate.
- ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
- m4/acx_pthread.m4:63: ACX_PTHREAD is expanded from...
- lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
- configure.ac:51: the top level
- configure.ac:51: warning: The macro `AC_TRY_LINK' is obsolete.
- configure.ac:51: You should run autoupdate.
- ./lib/autoconf/general.m4:2920: AC_TRY_LINK is expanded from...
- m4/acx_pthread.m4:63: ACX_PTHREAD is expanded from...
- lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
- configure.ac:51: the top level
- autoreconf: running: /usr/bin/autoheader --force
- autoreconf: running: automake --add-missing --force-missing
- configure.ac:27: installing 'build-aux/compile'
- configure.ac:24: installing 'build-aux/missing'
- Makefile.am: installing 'build-aux/depcomp'
- autoreconf: Leaving directory 'gtest'
- autoreconf: running: libtoolize --force
- autoreconf: configure.ac: not using Intltool
- autoreconf: configure.ac: not using Gtkdoc
- autoreconf: running: aclocal --force 
- autoreconf: running: /usr/bin/autoconf --force
- configure.ac:25: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
- configure.ac:25: You should run autoupdate.
- aclocal.m4:122: AC_PROG_LIBTOOL is expanded from...
- configure.ac:25: the top level
- configure.ac:48: warning: The macro `AC_LANG_C' is obsolete.
- configure.ac:48: You should run autoupdate.
- ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
- gtest/m4/acx_pthread.m4:63: ACX_PTHREAD is expanded from...
- lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
- configure.ac:48: the top level
- configure.ac:48: warning: The macro `AC_TRY_LINK' is obsolete.
- configure.ac:48: You should run autoupdate.
- ./lib/autoconf/general.m4:2920: AC_TRY_LINK is expanded from...
- gtest/m4/acx_pthread.m4:63: ACX_PTHREAD is expanded from...
- lib/m4sugar/m4sh.m4:699: AS_IF is expanded from...
- configure.ac:48: the top level
- autoreconf: running: /usr/bin/autoheader --force
- autoreconf: running: automake --add-missing --force-missing
- configure.ac:22: installing 'build-aux/compile'
- configure.ac:19: installing 'build-aux/missing'
- Makefile.am: installing 'build-aux/depcomp'
- autoreconf: Leaving directory 'gmock'
- autoreconf: running: libtoolize --force
- autoreconf: configure.ac: not using Intltool
- autoreconf: configure.ac: not using Gtkdoc
- autoreconf: running: aclocal --force -I m4
- autoreconf: running: /usr/bin/autoconf --force
- configure.ac:63: warning: The macro `AC_PROG_CXX_FOR_BUILD' is obsolete.
- configure.ac:63: You should run autoupdate.
- m4/ax_prog_cxx_for_build.m4:36: AC_PROG_CXX_FOR_BUILD is expanded from...
- configure.ac:63: the top level
- configure.ac:94: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
- configure.ac:94: You should run autoupdate.
- m4/libtool.m4:100: AC_PROG_LIBTOOL is expanded from...
- configure.ac:94: the top level
- configure.ac:116: warning: The macro `AC_HEADER_STDC' is obsolete.
- configure.ac:116: You should run autoupdate.
- ./lib/autoconf/headers.m4:704: AC_HEADER_STDC is expanded from...
- configure.ac:116: the top level
- configure.ac:177: warning: The macro `AC_LANG_C' is obsolete.
- configure.ac:177: You should run autoupdate.
- ./lib/autoconf/c.m4:72: AC_LANG_C is expanded from...
- m4/acx_pthread.m4:63: ACX_PTHREAD is expanded from...
- configure.ac:177: the top level
- configure.ac:177: warning: The macro `AC_TRY_LINK' is obsolete.
- configure.ac:177: You should run autoupdate.
- ./lib/autoconf/general.m4:2920: AC_TRY_LINK is expanded from...
- m4/acx_pthread.m4:63: ACX_PTHREAD is expanded from...
- configure.ac:177: the top level
- configure.ac:181: warning: The macro `AC_LANG_CPLUSPLUS' is obsolete.
- configure.ac:181: You should run autoupdate.
- ./lib/autoconf/c.m4:262: AC_LANG_CPLUSPLUS is expanded from...
- m4/stl_hash.m4:10: AC_CXX_STL_HASH is expanded from...
- configure.ac:181: the top level
- configure.ac:181: warning: The macro `AC_TRY_COMPILE' is obsolete.
- configure.ac:181: You should run autoupdate.
- ./lib/autoconf/general.m4:2847: AC_TRY_COMPILE is expanded from...
- m4/stl_hash.m4:10: AC_CXX_STL_HASH is expanded from...
- configure.ac:181: the top level
- autoreconf: running: /usr/bin/autoheader --force
- autoreconf: running: automake --add-missing --force-missing
- configure.ac:61: installing './compile'
- configure.ac:48: installing './missing'
- benchmarks/Makefile.am: installing './depcomp'
- autoreconf: Leaving directory '.'
- (cd _build/default/lib/deps/libunwind && ./autogen.sh)
- libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'config'.
- libtoolize: copying file 'config/ltmain.sh'
- libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
- libtoolize: and rerunning libtoolize and aclocal.
- libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking whether to enable maintainer-specific portions of Makefiles... no
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
- checking dependency style of g++... gcc3
- checking whether make sets $(MAKE)... (cached) yes
- checking for ar... ar
- checking the archiver (ar) interface... ar
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for archiver @FILE support... @
- checking for strip... strip
- checking for ranlib... ranlib
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... yes
- checking how to run the C++ preprocessor... g++ -E
- checking for ld used by g++... /usr/bin/ld -m elf_x86_64
- checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
- checking if g++ static flag -static works... yes
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... (cached) GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking dependency style of gcc... gcc3
- checking for __uc_get_grs in -luca... no
- checking for library containing dlopen... none required
- checking for atomic_ops.h... no
- checking for egrep... (cached) /usr/bin/grep -E
- checking for asm/ptrace_offsets.h... no
- checking for endian.h... yes
- checking for sys/endian.h... no
- checking for execinfo.h... yes
- checking for ia64intrin.h... no
- checking for sys/uc_access.h... no
- checking for unistd.h... (cached) yes
- checking for signal.h... yes
- checking for sys/types.h... (cached) yes
- checking for sys/procfs.h... yes
- checking for sys/ptrace.h... yes
- checking for byteswap.h... yes
- checking for elf.h... yes
- checking for sys/elf.h... no
- checking for link.h... yes
- checking for sys/link.h... no
- checking for an ANSI C-conforming const... yes
- checking for inline... inline
- checking for size_t... yes
- checking size of off_t... 8
- checking for struct dl_phdr_info.dlpi_subs... yes
- checking for struct elf_prstatus... yes
- checking for struct prstatus... no
- checking for gcc options needed to detect all undeclared functions... none needed
- checking whether PTRACE_POKEUSER is declared... yes
- checking whether PTRACE_POKEDATA is declared... yes
- checking whether PTRACE_SETREGSET is declared... yes
- checking whether PTRACE_TRACEME is declared... yes
- checking whether PTRACE_CONT is declared... yes
- checking whether PTRACE_SINGLESTEP is declared... yes
- checking whether PTRACE_SYSCALL is declared... yes
- checking whether PT_IO is declared... no
- checking whether PT_GETREGS is declared... yes
- checking whether PT_GETFPREGS is declared... yes
- checking whether PT_CONTINUE is declared... yes
- checking whether PT_TRACE_ME is declared... yes
- checking whether PT_STEP is declared... yes
- checking whether PT_SYSCALL is declared... yes
- checking for dl_iterate_phdr... yes
- checking for dl_phdr_removals_counter... no
- checking for dlmodinfo... no
- checking for getunwind... no
- checking for ttrace... no
- checking for mincore... yes
- checking for pipe2... yes
- checking if building with AltiVec... no
- checking for Android... no
- checking if we should build libunwind-coredump... yes
- checking for sys/ptrace.h... (cached) yes
- checking if we should build libunwind-ptrace... yes
- checking if we should build libunwind-setjmp... yes
- checking for build architecture... x86_64
- checking for host architecture... x86_64
- checking for target architecture... x86_64
- checking for target operating system... linux-gnu
- checking for ELF helper width... 64
- checking whether to include DWARF support... yes
- checking whether to restrict build to remote support... no
- checking whether to enable debug support... 
- checking whether to enable C++ exception support... no
- checking whether to load .debug_frame sections... no
- checking whether to block signals during mutex ops... yes
- checking whether to validate memory addresses before use... yes
- checking whether to enable msabi support... 
- checking whether to support LZMA-compressed symbol tables... auto
- checking for lzma_mf_is_supported in -llzma... yes
- checking whether to support ZLIB-compressed symbol tables... auto
- checking for uncompress in -lz... no
- checking whether to support UNW_CACHE_PER_THREAD... 
- checking for Intel compiler... no
- checking if building on Solaris then define __EXTENSIONS__ macro... yes
- checking for QCC compiler... no
- checking for __builtin___clear_cache... yes
- checking for __builtin_unreachable... yes
- checking for __sync atomics... yes
- checking for library containing backtrace... none required
- checking for latex2man... no
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating tests/Makefile
- config.status: creating tests/check-namespace.sh
- config.status: creating Makefile
- config.status: creating src/Makefile
- config.status: creating include/libunwind-common.h
- config.status: creating include/libunwind.h
- config.status: creating include/tdep/libunwind_i.h
- config.status: creating src/unwind/libunwind.pc
- config.status: creating src/coredump/libunwind-coredump.pc
- config.status: creating src/ptrace/libunwind-ptrace.pc
- config.status: creating src/setjmp/libunwind-setjmp.pc
- config.status: creating src/libunwind-generic.pc
- config.status: creating include/config.h
- config.status: executing depfiles commands
- config.status: executing libtool commands
- autoreconf: export WARNINGS=
- autoreconf: Entering directory '.'
- autoreconf: configure.ac: not using Gettext
- autoreconf: running: aclocal --force 
- autoreconf: configure.ac: tracing
- autoreconf: configure.ac: creating directory config
- autoreconf: running: libtoolize --copy --force
- autoreconf: configure.ac: not using Intltool
- autoreconf: configure.ac: not using Gtkdoc
- autoreconf: running: aclocal --force 
- autoreconf: running: /usr/bin/autoconf --force
- configure.ac:38: warning: The macro `AC_HEADER_STDC' is obsolete.
- configure.ac:38: You should run autoupdate.
- ./lib/autoconf/headers.m4:704: AC_HEADER_STDC is expanded from...
- configure.ac:38: the top level
- autoreconf: running: /usr/bin/autoheader --force
- autoreconf: running: automake --add-missing --copy --force-missing
- configure.ac:20: installing 'config/ar-lib'
- configure.ac:16: installing 'config/compile'
- configure.ac:10: installing 'config/config.guess'
- configure.ac:10: installing 'config/config.sub'
- configure.ac:11: installing 'config/install-sh'
- configure.ac:11: installing 'config/missing'
- Makefile.am: installing './INSTALL'
- src/Makefile.am: installing 'config/depcomp'
- parallel-tests: installing 'config/test-driver'
- autoreconf: Leaving directory '.'
- configure: WARNING: latex2man not found. Install latex2man. Disabling docs.
- (cd _build/default/lib/deps/libunwind && ./configure CFLAGS=-fPIC)
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking whether to enable maintainer-specific portions of Makefiles... no
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
- checking dependency style of g++... gcc3
- checking whether make sets $(MAKE)... (cached) yes
- checking for ar... ar
- checking the archiver (ar) interface... ar
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for archiver @FILE support... @
- checking for strip... strip
- checking for ranlib... ranlib
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... yes
- checking how to run the C++ preprocessor... g++ -E
- checking for ld used by g++... /usr/bin/ld -m elf_x86_64
- checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
- checking if g++ static flag -static works... yes
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... (cached) GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking dependency style of gcc... gcc3
- checking for __uc_get_grs in -luca... no
- checking for library containing dlopen... none required
- checking for atomic_ops.h... no
- checking for egrep... (cached) /usr/bin/grep -E
- checking for asm/ptrace_offsets.h... no
- checking for endian.h... yes
- checking for sys/endian.h... no
- checking for execinfo.h... yes
- checking for ia64intrin.h... no
- checking for sys/uc_access.h... no
- checking for unistd.h... (cached) yes
- checking for signal.h... yes
- checking for sys/types.h... (cached) yes
- checking for sys/procfs.h... yes
- checking for sys/ptrace.h... yes
- checking for byteswap.h... yes
- checking for elf.h... yes
- checking for sys/elf.h... no
- checking for link.h... yes
- checking for sys/link.h... no
- checking for an ANSI C-conforming const... yes
- checking for inline... inline
- checking for size_t... yes
- checking size of off_t... 8
- checking for struct dl_phdr_info.dlpi_subs... yes
- checking for struct elf_prstatus... yes
- checking for struct prstatus... no
- checking for gcc options needed to detect all undeclared functions... none needed
- checking whether PTRACE_POKEUSER is declared... yes
- checking whether PTRACE_POKEDATA is declared... yes
- checking whether PTRACE_SETREGSET is declared... yes
- checking whether PTRACE_TRACEME is declared... yes
- checking whether PTRACE_CONT is declared... yes
- checking whether PTRACE_SINGLESTEP is declared... yes
- checking whether PTRACE_SYSCALL is declared... yes
- checking whether PT_IO is declared... no
- checking whether PT_GETREGS is declared... yes
- checking whether PT_GETFPREGS is declared... yes
- checking whether PT_CONTINUE is declared... yes
- checking whether PT_TRACE_ME is declared... yes
- checking whether PT_STEP is declared... yes
- checking whether PT_SYSCALL is declared... yes
- checking for dl_iterate_phdr... yes
- checking for dl_phdr_removals_counter... no
- checking for dlmodinfo... no
- checking for getunwind... no
- checking for ttrace... no
- checking for mincore... yes
- checking for pipe2... yes
- checking if building with AltiVec... no
- checking for Android... no
- checking if we should build libunwind-coredump... yes
- checking for sys/ptrace.h... (cached) yes
- checking if we should build libunwind-ptrace... yes
- checking if we should build libunwind-setjmp... yes
- checking for build architecture... x86_64
- checking for host architecture... x86_64
- checking for target architecture... x86_64
- checking for target operating system... linux-gnu
- checking for ELF helper width... 64
- checking whether to include DWARF support... yes
- checking whether to restrict build to remote support... no
- checking whether to enable debug support... 
- checking whether to enable C++ exception support... no
- checking whether to load .debug_frame sections... no
- checking whether to block signals during mutex ops... yes
- checking whether to validate memory addresses before use... yes
- checking whether to enable msabi support... 
- checking whether to support LZMA-compressed symbol tables... auto
- checking for lzma_mf_is_supported in -llzma... yes
- checking whether to support ZLIB-compressed symbol tables... auto
- checking for uncompress in -lz... no
- checking whether to support UNW_CACHE_PER_THREAD... 
- checking for Intel compiler... no
- checking if building on Solaris then define __EXTENSIONS__ macro... yes
- checking for QCC compiler... no
- checking for __builtin___clear_cache... yes
- checking for __builtin_unreachable... yes
- checking for __sync atomics... yes
- checking for library containing backtrace... none required
- checking for latex2man... no
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating tests/Makefile
- config.status: creating tests/check-namespace.sh
- config.status: creating Makefile
- config.status: creating src/Makefile
- config.status: creating include/libunwind-common.h
- config.status: creating include/libunwind.h
- config.status: creating include/tdep/libunwind_i.h
- config.status: creating src/unwind/libunwind.pc
- config.status: creating src/coredump/libunwind-coredump.pc
- config.status: creating src/ptrace/libunwind-ptrace.pc
- config.status: creating src/setjmp/libunwind-setjmp.pc
- config.status: creating src/libunwind-generic.pc
- config.status: creating include/config.h
- config.status: include/config.h is unchanged
- config.status: executing depfiles commands
- config.status: executing libtool commands
- configure: WARNING: latex2man not found. Install latex2man. Disabling docs.
- (cd _build/default/lib/deps/protobuf && ./configure CFLAGS=-fPIC CXXFLAGS=-fPIC --disable-shared DIST_LANG=cpp)
- checking whether to enable maintainer-specific portions of Makefiles... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking whether UID '1000' is supported by ustar format... yes
- checking whether GID '1000' is supported by ustar format... yes
- checking how to create a ustar tar archive... gnutar
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
- checking dependency style of g++... gcc3
- checking how to run the C preprocessor... gcc -E
- checking for gcc... gcc
- checking whether the compiler supports GNU C... (cached) yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... (cached) none needed
- checking whether gcc understands -c and -o together... (cached) yes
- checking dependency style of gcc... (cached) gcc3
- checking how to run the C preprocessor... gcc -E
- checking how to run the C++ preprocessor... g++ -E
- checking for g++... g++
- checking whether the compiler supports GNU C++... (cached) yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... (cached) none needed
- checking dependency style of g++... (cached) gcc3
- checking how to run the C++ preprocessor... g++ -E
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for wchar.h... yes
- checking for minix/config.h... no
- checking whether it is safe to define __EXTENSIONS__... yes
- checking whether _XOPEN_SOURCE should be defined... no
- checking for ar... ar
- checking the archiver (ar) interface... ar
- checking for gcc... gcc
- checking whether the compiler supports GNU Objective C... no
- checking whether gcc accepts -g... no
- checking dependency style of gcc... gcc3
- checking C++ compiler flags...... use user-supplied: -fPIC
- checking for g++ options needed to detect all undeclared functions... none needed
- checking whether __SUNPRO_CC is declared... no
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for archiver @FILE support... @
- checking for strip... strip
- checking for ranlib... ranlib
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... no
- checking whether to build static libraries... yes
- checking how to run the C++ preprocessor... g++ -E
- checking for ld used by g++... /usr/bin/ld -m elf_x86_64
- checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
- checking if g++ static flag -static works... yes
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... (cached) GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether the linker supports version scripts... yes
- checking for egrep... (cached) /usr/bin/grep -E
- checking for fcntl.h... yes
- checking for inttypes.h... (cached) yes
- checking for limits.h... yes
- checking for stdlib.h... (cached) yes
- checking for unistd.h... (cached) yes
- checking for working memcmp... yes
- checking for working strtod... yes
- checking for ftruncate... yes
- checking for memset... yes
- checking for mkdir... yes
- checking for strchr... yes
- checking for strerror... yes
- checking for strtol... yes
- checking zlib version... headers missing or too old (requires 1.2.0.4)
- checking for the pthreads library -lpthreads... no
- checking whether pthreads work without any flags... yes
- checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
- checking if more special flags are required for pthreads... no
- checking whether to check for GCC pthread/shared inconsistencies... yes
- checking whether -pthread is sufficient with -shared... yes
- checking whether what we have so far is sufficient with -nostdlib... yes
- checking the location of hash_map... <unordered_map>
- checking for library containing sched_yield... none required
- checking whether g++ supports C++11 features by default... yes
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating src/Makefile
- config.status: creating benchmarks/Makefile
- config.status: creating conformance/Makefile
- config.status: creating protobuf.pc
- config.status: creating protobuf-lite.pc
- config.status: creating config.h
- config.status: executing depfiles commands
- config.status: executing libtool commands
- === configuring in gmock (/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock)
- configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local'  'CFLAGS=-fPIC' 'CXXFLAGS=-fPIC' '--disable-shared' 'DIST_LANG=cpp' --cache-file=/dev/null --srcdir=.
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
- checking dependency style of g++... gcc3
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for ar... ar
- checking for archiver @FILE support... @
- checking for strip... strip
- checking for ranlib... ranlib
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... no
- checking whether to build static libraries... yes
- checking how to run the C++ preprocessor... g++ -E
- checking for ld used by g++... /usr/bin/ld -m elf_x86_64
- checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
- checking if g++ static flag -static works... yes
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... (cached) GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking for python... :
- checking for the pthreads library -lpthreads... no
- checking whether pthreads work without any flags... yes
- checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
- checking if more special flags are required for pthreads... no
- checking whether to check for GCC pthread/shared inconsistencies... yes
- checking whether -pthread is sufficient with -shared... yes
- checking for gtest-config... no
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating scripts/gmock-config
- config.status: creating build-aux/config.h
- config.status: executing depfiles commands
- config.status: executing libtool commands
- === configuring in gtest (/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock/gtest)
- configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local'  'CFLAGS=-fPIC' 'CXXFLAGS=-fPIC' '--disable-shared' 'DIST_LANG=cpp' --cache-file=/dev/null --srcdir=.
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
- checking dependency style of g++... gcc3
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for ar... ar
- checking for archiver @FILE support... @
- checking for strip... strip
- checking for ranlib... ranlib
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... no
- checking whether to build static libraries... yes
- checking how to run the C++ preprocessor... g++ -E
- checking for ld used by g++... /usr/bin/ld -m elf_x86_64
- checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
- checking if g++ static flag -static works... yes
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... (cached) GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking for python... :
- checking for the pthreads library -lpthreads... no
- checking whether pthreads work without any flags... yes
- checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
- checking if more special flags are required for pthreads... no
- checking whether to check for GCC pthread/shared inconsistencies... yes
- checking whether -pthread is sufficient with -shared... yes
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating scripts/gtest-config
- config.status: creating build-aux/config.h
- config.status: executing depfiles commands
- config.status: executing libtool commands
- (cd _build/default/lib/deps/libunwind && /usr/bin/make)
- Making all in src
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src'
- /usr/bin/make  all-am
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src'
- depbase=`echo os-linux.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT os-linux.lo -MD -MP -MF $depbase.Tpo -c -o os-linux.lo os-linux.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT os-linux.lo -MD -MP -MF .deps/os-linux.Tpo -c os-linux.c  -fPIC -DPIC -o .libs/os-linux.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT os-linux.lo -MD -MP -MF .deps/os-linux.Tpo -c os-linux.c -o os-linux.o >/dev/null 2>&1
- depbase=`echo mi/init.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/init.lo -MD -MP -MF $depbase.Tpo -c -o mi/init.lo mi/init.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/init.lo -MD -MP -MF mi/.deps/init.Tpo -c mi/init.c  -fPIC -DPIC -o mi/.libs/init.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/init.lo -MD -MP -MF mi/.deps/init.Tpo -c mi/init.c -o mi/init.o >/dev/null 2>&1
- depbase=`echo mi/flush_cache.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/flush_cache.lo -MD -MP -MF $depbase.Tpo -c -o mi/flush_cache.lo mi/flush_cache.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/flush_cache.lo -MD -MP -MF mi/.deps/flush_cache.Tpo -c mi/flush_cache.c  -fPIC -DPIC -o mi/.libs/flush_cache.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/flush_cache.lo -MD -MP -MF mi/.deps/flush_cache.Tpo -c mi/flush_cache.c -o mi/flush_cache.o >/dev/null 2>&1
- depbase=`echo mi/mempool.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/mempool.lo -MD -MP -MF $depbase.Tpo -c -o mi/mempool.lo mi/mempool.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/mempool.lo -MD -MP -MF mi/.deps/mempool.Tpo -c mi/mempool.c  -fPIC -DPIC -o mi/.libs/mempool.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/mempool.lo -MD -MP -MF mi/.deps/mempool.Tpo -c mi/mempool.c -o mi/mempool.o >/dev/null 2>&1
- depbase=`echo mi/strerror.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/strerror.lo -MD -MP -MF $depbase.Tpo -c -o mi/strerror.lo mi/strerror.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/strerror.lo -MD -MP -MF mi/.deps/strerror.Tpo -c mi/strerror.c  -fPIC -DPIC -o mi/.libs/strerror.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/strerror.lo -MD -MP -MF mi/.deps/strerror.Tpo -c mi/strerror.c -o mi/strerror.o >/dev/null 2>&1
- depbase=`echo x86_64/is_fpreg.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/is_fpreg.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/is_fpreg.lo x86_64/is_fpreg.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/is_fpreg.lo -MD -MP -MF x86_64/.deps/is_fpreg.Tpo -c x86_64/is_fpreg.c  -fPIC -DPIC -o x86_64/.libs/is_fpreg.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/is_fpreg.lo -MD -MP -MF x86_64/.deps/is_fpreg.Tpo -c x86_64/is_fpreg.c -o x86_64/is_fpreg.o >/dev/null 2>&1
- depbase=`echo x86_64/regname.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/regname.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/regname.lo x86_64/regname.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/regname.lo -MD -MP -MF x86_64/.deps/regname.Tpo -c x86_64/regname.c  -fPIC -DPIC -o x86_64/.libs/regname.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/regname.lo -MD -MP -MF x86_64/.deps/regname.Tpo -c x86_64/regname.c -o x86_64/regname.o >/dev/null 2>&1
- depbase=`echo x86_64/Los-linux.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Los-linux.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Los-linux.lo x86_64/Los-linux.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Los-linux.lo -MD -MP -MF x86_64/.deps/Los-linux.Tpo -c x86_64/Los-linux.c  -fPIC -DPIC -o x86_64/.libs/Los-linux.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Los-linux.lo -MD -MP -MF x86_64/.deps/Los-linux.Tpo -c x86_64/Los-linux.c -o x86_64/Los-linux.o >/dev/null 2>&1
- depbase=`echo mi/backtrace.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/backtrace.lo -MD -MP -MF $depbase.Tpo -c -o mi/backtrace.lo mi/backtrace.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/backtrace.lo -MD -MP -MF mi/.deps/backtrace.Tpo -c mi/backtrace.c  -fPIC -DPIC -o mi/.libs/backtrace.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/backtrace.lo -MD -MP -MF mi/.deps/backtrace.Tpo -c mi/backtrace.c -o mi/backtrace.o >/dev/null 2>&1
- depbase=`echo mi/dyn-cancel.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/dyn-cancel.lo -MD -MP -MF $depbase.Tpo -c -o mi/dyn-cancel.lo mi/dyn-cancel.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/dyn-cancel.lo -MD -MP -MF mi/.deps/dyn-cancel.Tpo -c mi/dyn-cancel.c  -fPIC -DPIC -o mi/.libs/dyn-cancel.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/dyn-cancel.lo -MD -MP -MF mi/.deps/dyn-cancel.Tpo -c mi/dyn-cancel.c -o mi/dyn-cancel.o >/dev/null 2>&1
- depbase=`echo mi/dyn-info-list.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/dyn-info-list.lo -MD -MP -MF $depbase.Tpo -c -o mi/dyn-info-list.lo mi/dyn-info-list.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/dyn-info-list.lo -MD -MP -MF mi/.deps/dyn-info-list.Tpo -c mi/dyn-info-list.c  -fPIC -DPIC -o mi/.libs/dyn-info-list.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/dyn-info-list.lo -MD -MP -MF mi/.deps/dyn-info-list.Tpo -c mi/dyn-info-list.c -o mi/dyn-info-list.o >/dev/null 2>&1
- depbase=`echo mi/dyn-register.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/dyn-register.lo -MD -MP -MF $depbase.Tpo -c -o mi/dyn-register.lo mi/dyn-register.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/dyn-register.lo -MD -MP -MF mi/.deps/dyn-register.Tpo -c mi/dyn-register.c  -fPIC -DPIC -o mi/.libs/dyn-register.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/dyn-register.lo -MD -MP -MF mi/.deps/dyn-register.Tpo -c mi/dyn-register.c -o mi/dyn-register.o >/dev/null 2>&1
- depbase=`echo mi/Ldyn-extract.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Ldyn-extract.lo -MD -MP -MF $depbase.Tpo -c -o mi/Ldyn-extract.lo mi/Ldyn-extract.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Ldyn-extract.lo -MD -MP -MF mi/.deps/Ldyn-extract.Tpo -c mi/Ldyn-extract.c  -fPIC -DPIC -o mi/.libs/Ldyn-extract.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Ldyn-extract.lo -MD -MP -MF mi/.deps/Ldyn-extract.Tpo -c mi/Ldyn-extract.c -o mi/Ldyn-extract.o >/dev/null 2>&1
- depbase=`echo mi/Lfind_dynamic_proc_info.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lfind_dynamic_proc_info.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lfind_dynamic_proc_info.lo mi/Lfind_dynamic_proc_info.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lfind_dynamic_proc_info.lo -MD -MP -MF mi/.deps/Lfind_dynamic_proc_info.Tpo -c mi/Lfind_dynamic_proc_info.c  -fPIC -DPIC -o mi/.libs/Lfind_dynamic_proc_info.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lfind_dynamic_proc_info.lo -MD -MP -MF mi/.deps/Lfind_dynamic_proc_info.Tpo -c mi/Lfind_dynamic_proc_info.c -o mi/Lfind_dynamic_proc_info.o >/dev/null 2>&1
- depbase=`echo mi/Lget_accessors.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_accessors.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lget_accessors.lo mi/Lget_accessors.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_accessors.lo -MD -MP -MF mi/.deps/Lget_accessors.Tpo -c mi/Lget_accessors.c  -fPIC -DPIC -o mi/.libs/Lget_accessors.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_accessors.lo -MD -MP -MF mi/.deps/Lget_accessors.Tpo -c mi/Lget_accessors.c -o mi/Lget_accessors.o >/dev/null 2>&1
- depbase=`echo mi/Lget_proc_info_by_ip.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_proc_info_by_ip.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lget_proc_info_by_ip.lo mi/Lget_proc_info_by_ip.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_proc_info_by_ip.lo -MD -MP -MF mi/.deps/Lget_proc_info_by_ip.Tpo -c mi/Lget_proc_info_by_ip.c  -fPIC -DPIC -o mi/.libs/Lget_proc_info_by_ip.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_proc_info_by_ip.lo -MD -MP -MF mi/.deps/Lget_proc_info_by_ip.Tpo -c mi/Lget_proc_info_by_ip.c -o mi/Lget_proc_info_by_ip.o >/dev/null 2>&1
- depbase=`echo mi/Lget_proc_name.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_proc_name.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lget_proc_name.lo mi/Lget_proc_name.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_proc_name.lo -MD -MP -MF mi/.deps/Lget_proc_name.Tpo -c mi/Lget_proc_name.c  -fPIC -DPIC -o mi/.libs/Lget_proc_name.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_proc_name.lo -MD -MP -MF mi/.deps/Lget_proc_name.Tpo -c mi/Lget_proc_name.c -o mi/Lget_proc_name.o >/dev/null 2>&1
- depbase=`echo mi/Lput_dynamic_unwind_info.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lput_dynamic_unwind_info.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lput_dynamic_unwind_info.lo mi/Lput_dynamic_unwind_info.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lput_dynamic_unwind_info.lo -MD -MP -MF mi/.deps/Lput_dynamic_unwind_info.Tpo -c mi/Lput_dynamic_unwind_info.c  -fPIC -DPIC -o mi/.libs/Lput_dynamic_unwind_info.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lput_dynamic_unwind_info.lo -MD -MP -MF mi/.deps/Lput_dynamic_unwind_info.Tpo -c mi/Lput_dynamic_unwind_info.c -o mi/Lput_dynamic_unwind_info.o >/dev/null 2>&1
- depbase=`echo mi/Ldestroy_addr_space.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Ldestroy_addr_space.lo -MD -MP -MF $depbase.Tpo -c -o mi/Ldestroy_addr_space.lo mi/Ldestroy_addr_space.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Ldestroy_addr_space.lo -MD -MP -MF mi/.deps/Ldestroy_addr_space.Tpo -c mi/Ldestroy_addr_space.c  -fPIC -DPIC -o mi/.libs/Ldestroy_addr_space.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Ldestroy_addr_space.lo -MD -MP -MF mi/.deps/Ldestroy_addr_space.Tpo -c mi/Ldestroy_addr_space.c -o mi/Ldestroy_addr_space.o >/dev/null 2>&1
- depbase=`echo mi/Lget_reg.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_reg.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lget_reg.lo mi/Lget_reg.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_reg.lo -MD -MP -MF mi/.deps/Lget_reg.Tpo -c mi/Lget_reg.c  -fPIC -DPIC -o mi/.libs/Lget_reg.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_reg.lo -MD -MP -MF mi/.deps/Lget_reg.Tpo -c mi/Lget_reg.c -o mi/Lget_reg.o >/dev/null 2>&1
- depbase=`echo mi/Lset_reg.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_reg.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lset_reg.lo mi/Lset_reg.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_reg.lo -MD -MP -MF mi/.deps/Lset_reg.Tpo -c mi/Lset_reg.c  -fPIC -DPIC -o mi/.libs/Lset_reg.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_reg.lo -MD -MP -MF mi/.deps/Lset_reg.Tpo -c mi/Lset_reg.c -o mi/Lset_reg.o >/dev/null 2>&1
- depbase=`echo mi/Lget_fpreg.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_fpreg.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lget_fpreg.lo mi/Lget_fpreg.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_fpreg.lo -MD -MP -MF mi/.deps/Lget_fpreg.Tpo -c mi/Lget_fpreg.c  -fPIC -DPIC -o mi/.libs/Lget_fpreg.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lget_fpreg.lo -MD -MP -MF mi/.deps/Lget_fpreg.Tpo -c mi/Lget_fpreg.c -o mi/Lget_fpreg.o >/dev/null 2>&1
- depbase=`echo mi/Lset_fpreg.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_fpreg.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lset_fpreg.lo mi/Lset_fpreg.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_fpreg.lo -MD -MP -MF mi/.deps/Lset_fpreg.Tpo -c mi/Lset_fpreg.c  -fPIC -DPIC -o mi/.libs/Lset_fpreg.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_fpreg.lo -MD -MP -MF mi/.deps/Lset_fpreg.Tpo -c mi/Lset_fpreg.c -o mi/Lset_fpreg.o >/dev/null 2>&1
- depbase=`echo mi/Lset_caching_policy.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_caching_policy.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lset_caching_policy.lo mi/Lset_caching_policy.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_caching_policy.lo -MD -MP -MF mi/.deps/Lset_caching_policy.Tpo -c mi/Lset_caching_policy.c  -fPIC -DPIC -o mi/.libs/Lset_caching_policy.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_caching_policy.lo -MD -MP -MF mi/.deps/Lset_caching_policy.Tpo -c mi/Lset_caching_policy.c -o mi/Lset_caching_policy.o >/dev/null 2>&1
- depbase=`echo mi/Lset_cache_size.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_cache_size.lo -MD -MP -MF $depbase.Tpo -c -o mi/Lset_cache_size.lo mi/Lset_cache_size.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_cache_size.lo -MD -MP -MF mi/.deps/Lset_cache_size.Tpo -c mi/Lset_cache_size.c  -fPIC -DPIC -o mi/.libs/Lset_cache_size.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Lset_cache_size.lo -MD -MP -MF mi/.deps/Lset_cache_size.Tpo -c mi/Lset_cache_size.c -o mi/Lset_cache_size.o >/dev/null 2>&1
- depbase=`echo x86_64/setcontext.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC  -D_GNU_SOURCE -DNDEBUG -MT x86_64/setcontext.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/setcontext.lo x86_64/setcontext.S &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC -D_GNU_SOURCE -DNDEBUG -MT x86_64/setcontext.lo -MD -MP -MF x86_64/.deps/setcontext.Tpo -c x86_64/setcontext.S  -fPIC -DPIC -o x86_64/.libs/setcontext.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC -D_GNU_SOURCE -DNDEBUG -MT x86_64/setcontext.lo -MD -MP -MF x86_64/.deps/setcontext.Tpo -c x86_64/setcontext.S -o x86_64/setcontext.o >/dev/null 2>&1
- depbase=`echo x86_64/Lapply_reg_state.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lapply_reg_state.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lapply_reg_state.lo x86_64/Lapply_reg_state.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lapply_reg_state.lo -MD -MP -MF x86_64/.deps/Lapply_reg_state.Tpo -c x86_64/Lapply_reg_state.c  -fPIC -DPIC -o x86_64/.libs/Lapply_reg_state.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lapply_reg_state.lo -MD -MP -MF x86_64/.deps/Lapply_reg_state.Tpo -c x86_64/Lapply_reg_state.c -o x86_64/Lapply_reg_state.o >/dev/null 2>&1
- depbase=`echo x86_64/Lreg_states_iterate.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lreg_states_iterate.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lreg_states_iterate.lo x86_64/Lreg_states_iterate.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lreg_states_iterate.lo -MD -MP -MF x86_64/.deps/Lreg_states_iterate.Tpo -c x86_64/Lreg_states_iterate.c  -fPIC -DPIC -o x86_64/.libs/Lreg_states_iterate.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lreg_states_iterate.lo -MD -MP -MF x86_64/.deps/Lreg_states_iterate.Tpo -c x86_64/Lreg_states_iterate.c -o x86_64/Lreg_states_iterate.o >/dev/null 2>&1
- depbase=`echo x86_64/Lcreate_addr_space.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lcreate_addr_space.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lcreate_addr_space.lo x86_64/Lcreate_addr_space.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lcreate_addr_space.lo -MD -MP -MF x86_64/.deps/Lcreate_addr_space.Tpo -c x86_64/Lcreate_addr_space.c  -fPIC -DPIC -o x86_64/.libs/Lcreate_addr_space.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lcreate_addr_space.lo -MD -MP -MF x86_64/.deps/Lcreate_addr_space.Tpo -c x86_64/Lcreate_addr_space.c -o x86_64/Lcreate_addr_space.o >/dev/null 2>&1
- depbase=`echo x86_64/Lget_save_loc.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lget_save_loc.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lget_save_loc.lo x86_64/Lget_save_loc.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lget_save_loc.lo -MD -MP -MF x86_64/.deps/Lget_save_loc.Tpo -c x86_64/Lget_save_loc.c  -fPIC -DPIC -o x86_64/.libs/Lget_save_loc.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lget_save_loc.lo -MD -MP -MF x86_64/.deps/Lget_save_loc.Tpo -c x86_64/Lget_save_loc.c -o x86_64/Lget_save_loc.o >/dev/null 2>&1
- depbase=`echo x86_64/Lglobal.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lglobal.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lglobal.lo x86_64/Lglobal.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lglobal.lo -MD -MP -MF x86_64/.deps/Lglobal.Tpo -c x86_64/Lglobal.c  -fPIC -DPIC -o x86_64/.libs/Lglobal.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lglobal.lo -MD -MP -MF x86_64/.deps/Lglobal.Tpo -c x86_64/Lglobal.c -o x86_64/Lglobal.o >/dev/null 2>&1
- depbase=`echo x86_64/Linit.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Linit.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Linit.lo x86_64/Linit.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Linit.lo -MD -MP -MF x86_64/.deps/Linit.Tpo -c x86_64/Linit.c  -fPIC -DPIC -o x86_64/.libs/Linit.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Linit.lo -MD -MP -MF x86_64/.deps/Linit.Tpo -c x86_64/Linit.c -o x86_64/Linit.o >/dev/null 2>&1
- depbase=`echo x86_64/Linit_local.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Linit_local.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Linit_local.lo x86_64/Linit_local.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Linit_local.lo -MD -MP -MF x86_64/.deps/Linit_local.Tpo -c x86_64/Linit_local.c  -fPIC -DPIC -o x86_64/.libs/Linit_local.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Linit_local.lo -MD -MP -MF x86_64/.deps/Linit_local.Tpo -c x86_64/Linit_local.c -o x86_64/Linit_local.o >/dev/null 2>&1
- depbase=`echo x86_64/Linit_remote.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Linit_remote.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Linit_remote.lo x86_64/Linit_remote.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Linit_remote.lo -MD -MP -MF x86_64/.deps/Linit_remote.Tpo -c x86_64/Linit_remote.c  -fPIC -DPIC -o x86_64/.libs/Linit_remote.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Linit_remote.lo -MD -MP -MF x86_64/.deps/Linit_remote.Tpo -c x86_64/Linit_remote.c -o x86_64/Linit_remote.o >/dev/null 2>&1
- depbase=`echo x86_64/Lget_proc_info.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lget_proc_info.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lget_proc_info.lo x86_64/Lget_proc_info.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lget_proc_info.lo -MD -MP -MF x86_64/.deps/Lget_proc_info.Tpo -c x86_64/Lget_proc_info.c  -fPIC -DPIC -o x86_64/.libs/Lget_proc_info.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lget_proc_info.lo -MD -MP -MF x86_64/.deps/Lget_proc_info.Tpo -c x86_64/Lget_proc_info.c -o x86_64/Lget_proc_info.o >/dev/null 2>&1
- depbase=`echo x86_64/Lregs.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lregs.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lregs.lo x86_64/Lregs.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lregs.lo -MD -MP -MF x86_64/.deps/Lregs.Tpo -c x86_64/Lregs.c  -fPIC -DPIC -o x86_64/.libs/Lregs.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lregs.lo -MD -MP -MF x86_64/.deps/Lregs.Tpo -c x86_64/Lregs.c -o x86_64/Lregs.o >/dev/null 2>&1
- depbase=`echo x86_64/Lresume.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lresume.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lresume.lo x86_64/Lresume.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lresume.lo -MD -MP -MF x86_64/.deps/Lresume.Tpo -c x86_64/Lresume.c  -fPIC -DPIC -o x86_64/.libs/Lresume.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lresume.lo -MD -MP -MF x86_64/.deps/Lresume.Tpo -c x86_64/Lresume.c -o x86_64/Lresume.o >/dev/null 2>&1
- depbase=`echo x86_64/Lstash_frame.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lstash_frame.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lstash_frame.lo x86_64/Lstash_frame.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lstash_frame.lo -MD -MP -MF x86_64/.deps/Lstash_frame.Tpo -c x86_64/Lstash_frame.c  -fPIC -DPIC -o x86_64/.libs/Lstash_frame.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lstash_frame.lo -MD -MP -MF x86_64/.deps/Lstash_frame.Tpo -c x86_64/Lstash_frame.c -o x86_64/Lstash_frame.o >/dev/null 2>&1
- depbase=`echo x86_64/Lstep.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lstep.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Lstep.lo x86_64/Lstep.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lstep.lo -MD -MP -MF x86_64/.deps/Lstep.Tpo -c x86_64/Lstep.c  -fPIC -DPIC -o x86_64/.libs/Lstep.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Lstep.lo -MD -MP -MF x86_64/.deps/Lstep.Tpo -c x86_64/Lstep.c -o x86_64/Lstep.o >/dev/null 2>&1
- depbase=`echo x86_64/Ltrace.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ltrace.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Ltrace.lo x86_64/Ltrace.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ltrace.lo -MD -MP -MF x86_64/.deps/Ltrace.Tpo -c x86_64/Ltrace.c  -fPIC -DPIC -o x86_64/.libs/Ltrace.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ltrace.lo -MD -MP -MF x86_64/.deps/Ltrace.Tpo -c x86_64/Ltrace.c -o x86_64/Ltrace.o >/dev/null 2>&1
- depbase=`echo x86_64/getcontext.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC  -D_GNU_SOURCE -DNDEBUG -MT x86_64/getcontext.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/getcontext.lo x86_64/getcontext.S &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC -D_GNU_SOURCE -DNDEBUG -MT x86_64/getcontext.lo -MD -MP -MF x86_64/.deps/getcontext.Tpo -c x86_64/getcontext.S  -fPIC -DPIC -o x86_64/.libs/getcontext.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC -D_GNU_SOURCE -DNDEBUG -MT x86_64/getcontext.lo -MD -MP -MF x86_64/.deps/getcontext.Tpo -c x86_64/getcontext.S -o x86_64/getcontext.o >/dev/null 2>&1
- depbase=`echo dwarf/Lexpr.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lexpr.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Lexpr.lo dwarf/Lexpr.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lexpr.lo -MD -MP -MF dwarf/.deps/Lexpr.Tpo -c dwarf/Lexpr.c  -fPIC -DPIC -o dwarf/.libs/Lexpr.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lexpr.lo -MD -MP -MF dwarf/.deps/Lexpr.Tpo -c dwarf/Lexpr.c -o dwarf/Lexpr.o >/dev/null 2>&1
- depbase=`echo dwarf/Lfde.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lfde.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Lfde.lo dwarf/Lfde.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lfde.lo -MD -MP -MF dwarf/.deps/Lfde.Tpo -c dwarf/Lfde.c  -fPIC -DPIC -o dwarf/.libs/Lfde.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lfde.lo -MD -MP -MF dwarf/.deps/Lfde.Tpo -c dwarf/Lfde.c -o dwarf/Lfde.o >/dev/null 2>&1
- depbase=`echo dwarf/Lparser.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lparser.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Lparser.lo dwarf/Lparser.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lparser.lo -MD -MP -MF dwarf/.deps/Lparser.Tpo -c dwarf/Lparser.c  -fPIC -DPIC -o dwarf/.libs/Lparser.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lparser.lo -MD -MP -MF dwarf/.deps/Lparser.Tpo -c dwarf/Lparser.c -o dwarf/Lparser.o >/dev/null 2>&1
- depbase=`echo dwarf/Lpe.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lpe.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Lpe.lo dwarf/Lpe.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lpe.lo -MD -MP -MF dwarf/.deps/Lpe.Tpo -c dwarf/Lpe.c  -fPIC -DPIC -o dwarf/.libs/Lpe.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lpe.lo -MD -MP -MF dwarf/.deps/Lpe.Tpo -c dwarf/Lpe.c -o dwarf/Lpe.o >/dev/null 2>&1
- depbase=`echo dwarf/Lfind_proc_info-lsb.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lfind_proc_info-lsb.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Lfind_proc_info-lsb.lo dwarf/Lfind_proc_info-lsb.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lfind_proc_info-lsb.lo -MD -MP -MF dwarf/.deps/Lfind_proc_info-lsb.Tpo -c dwarf/Lfind_proc_info-lsb.c  -fPIC -DPIC -o dwarf/.libs/Lfind_proc_info-lsb.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lfind_proc_info-lsb.lo -MD -MP -MF dwarf/.deps/Lfind_proc_info-lsb.Tpo -c dwarf/Lfind_proc_info-lsb.c -o dwarf/Lfind_proc_info-lsb.o >/dev/null 2>&1
- depbase=`echo dwarf/Lfind_unwind_table.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lfind_unwind_table.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Lfind_unwind_table.lo dwarf/Lfind_unwind_table.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lfind_unwind_table.lo -MD -MP -MF dwarf/.deps/Lfind_unwind_table.Tpo -c dwarf/Lfind_unwind_table.c  -fPIC -DPIC -o dwarf/.libs/Lfind_unwind_table.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Lfind_unwind_table.lo -MD -MP -MF dwarf/.deps/Lfind_unwind_table.Tpo -c dwarf/Lfind_unwind_table.c -o dwarf/Lfind_unwind_table.o >/dev/null 2>&1
- depbase=`echo dwarf/global.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/global.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/global.lo dwarf/global.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/global.lo -MD -MP -MF dwarf/.deps/global.Tpo -c dwarf/global.c  -fPIC -DPIC -o dwarf/.libs/global.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/global.lo -MD -MP -MF dwarf/.deps/global.Tpo -c dwarf/global.c -o dwarf/global.o >/dev/null 2>&1
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o libunwind-dwarf-common.la  dwarf/global.lo  
- libtool: link: ar cr .libs/libunwind-dwarf-common.a dwarf/.libs/global.o 
- libtool: link: ranlib .libs/libunwind-dwarf-common.a
- libtool: link: ( cd ".libs" && rm -f "libunwind-dwarf-common.la" && ln -s "../libunwind-dwarf-common.la" "libunwind-dwarf-common.la" )
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o libunwind-dwarf-local.la  dwarf/Lexpr.lo dwarf/Lfde.lo dwarf/Lparser.lo dwarf/Lpe.lo dwarf/Lfind_proc_info-lsb.lo dwarf/Lfind_unwind_table.lo libunwind-dwarf-common.la 
- libtool: link: (cd .libs/libunwind-dwarf-local.lax/libunwind-dwarf-common.a && ar x "/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src/./.libs/libunwind-dwarf-common.a")
- ...TRUNCATED BY DUNE...
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_accessors.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gget_accessors.lo mi/Gget_accessors.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_accessors.lo -MD -MP -MF mi/.deps/Gget_accessors.Tpo -c mi/Gget_accessors.c  -fPIC -DPIC -o mi/.libs/Gget_accessors.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_accessors.lo -MD -MP -MF mi/.deps/Gget_accessors.Tpo -c mi/Gget_accessors.c -o mi/Gget_accessors.o >/dev/null 2>&1
- depbase=`echo mi/Gget_proc_info_by_ip.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_proc_info_by_ip.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gget_proc_info_by_ip.lo mi/Gget_proc_info_by_ip.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_proc_info_by_ip.lo -MD -MP -MF mi/.deps/Gget_proc_info_by_ip.Tpo -c mi/Gget_proc_info_by_ip.c  -fPIC -DPIC -o mi/.libs/Gget_proc_info_by_ip.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_proc_info_by_ip.lo -MD -MP -MF mi/.deps/Gget_proc_info_by_ip.Tpo -c mi/Gget_proc_info_by_ip.c -o mi/Gget_proc_info_by_ip.o >/dev/null 2>&1
- depbase=`echo mi/Gget_proc_name.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_proc_name.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gget_proc_name.lo mi/Gget_proc_name.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_proc_name.lo -MD -MP -MF mi/.deps/Gget_proc_name.Tpo -c mi/Gget_proc_name.c  -fPIC -DPIC -o mi/.libs/Gget_proc_name.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_proc_name.lo -MD -MP -MF mi/.deps/Gget_proc_name.Tpo -c mi/Gget_proc_name.c -o mi/Gget_proc_name.o >/dev/null 2>&1
- depbase=`echo mi/Gput_dynamic_unwind_info.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gput_dynamic_unwind_info.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gput_dynamic_unwind_info.lo mi/Gput_dynamic_unwind_info.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gput_dynamic_unwind_info.lo -MD -MP -MF mi/.deps/Gput_dynamic_unwind_info.Tpo -c mi/Gput_dynamic_unwind_info.c  -fPIC -DPIC -o mi/.libs/Gput_dynamic_unwind_info.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gput_dynamic_unwind_info.lo -MD -MP -MF mi/.deps/Gput_dynamic_unwind_info.Tpo -c mi/Gput_dynamic_unwind_info.c -o mi/Gput_dynamic_unwind_info.o >/dev/null 2>&1
- depbase=`echo mi/Gdestroy_addr_space.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gdestroy_addr_space.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gdestroy_addr_space.lo mi/Gdestroy_addr_space.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gdestroy_addr_space.lo -MD -MP -MF mi/.deps/Gdestroy_addr_space.Tpo -c mi/Gdestroy_addr_space.c  -fPIC -DPIC -o mi/.libs/Gdestroy_addr_space.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gdestroy_addr_space.lo -MD -MP -MF mi/.deps/Gdestroy_addr_space.Tpo -c mi/Gdestroy_addr_space.c -o mi/Gdestroy_addr_space.o >/dev/null 2>&1
- depbase=`echo mi/Gget_reg.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_reg.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gget_reg.lo mi/Gget_reg.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_reg.lo -MD -MP -MF mi/.deps/Gget_reg.Tpo -c mi/Gget_reg.c  -fPIC -DPIC -o mi/.libs/Gget_reg.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_reg.lo -MD -MP -MF mi/.deps/Gget_reg.Tpo -c mi/Gget_reg.c -o mi/Gget_reg.o >/dev/null 2>&1
- depbase=`echo mi/Gset_reg.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_reg.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gset_reg.lo mi/Gset_reg.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_reg.lo -MD -MP -MF mi/.deps/Gset_reg.Tpo -c mi/Gset_reg.c  -fPIC -DPIC -o mi/.libs/Gset_reg.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_reg.lo -MD -MP -MF mi/.deps/Gset_reg.Tpo -c mi/Gset_reg.c -o mi/Gset_reg.o >/dev/null 2>&1
- depbase=`echo mi/Gget_fpreg.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_fpreg.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gget_fpreg.lo mi/Gget_fpreg.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_fpreg.lo -MD -MP -MF mi/.deps/Gget_fpreg.Tpo -c mi/Gget_fpreg.c  -fPIC -DPIC -o mi/.libs/Gget_fpreg.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gget_fpreg.lo -MD -MP -MF mi/.deps/Gget_fpreg.Tpo -c mi/Gget_fpreg.c -o mi/Gget_fpreg.o >/dev/null 2>&1
- depbase=`echo mi/Gset_fpreg.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_fpreg.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gset_fpreg.lo mi/Gset_fpreg.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_fpreg.lo -MD -MP -MF mi/.deps/Gset_fpreg.Tpo -c mi/Gset_fpreg.c  -fPIC -DPIC -o mi/.libs/Gset_fpreg.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_fpreg.lo -MD -MP -MF mi/.deps/Gset_fpreg.Tpo -c mi/Gset_fpreg.c -o mi/Gset_fpreg.o >/dev/null 2>&1
- depbase=`echo mi/Gset_caching_policy.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_caching_policy.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gset_caching_policy.lo mi/Gset_caching_policy.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_caching_policy.lo -MD -MP -MF mi/.deps/Gset_caching_policy.Tpo -c mi/Gset_caching_policy.c  -fPIC -DPIC -o mi/.libs/Gset_caching_policy.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_caching_policy.lo -MD -MP -MF mi/.deps/Gset_caching_policy.Tpo -c mi/Gset_caching_policy.c -o mi/Gset_caching_policy.o >/dev/null 2>&1
- depbase=`echo mi/Gset_cache_size.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_cache_size.lo -MD -MP -MF $depbase.Tpo -c -o mi/Gset_cache_size.lo mi/Gset_cache_size.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_cache_size.lo -MD -MP -MF mi/.deps/Gset_cache_size.Tpo -c mi/Gset_cache_size.c  -fPIC -DPIC -o mi/.libs/Gset_cache_size.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mi/Gset_cache_size.lo -MD -MP -MF mi/.deps/Gset_cache_size.Tpo -c mi/Gset_cache_size.c -o mi/Gset_cache_size.o >/dev/null 2>&1
- depbase=`echo x86_64/Gapply_reg_state.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gapply_reg_state.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gapply_reg_state.lo x86_64/Gapply_reg_state.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gapply_reg_state.lo -MD -MP -MF x86_64/.deps/Gapply_reg_state.Tpo -c x86_64/Gapply_reg_state.c  -fPIC -DPIC -o x86_64/.libs/Gapply_reg_state.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gapply_reg_state.lo -MD -MP -MF x86_64/.deps/Gapply_reg_state.Tpo -c x86_64/Gapply_reg_state.c -o x86_64/Gapply_reg_state.o >/dev/null 2>&1
- depbase=`echo x86_64/Greg_states_iterate.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Greg_states_iterate.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Greg_states_iterate.lo x86_64/Greg_states_iterate.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Greg_states_iterate.lo -MD -MP -MF x86_64/.deps/Greg_states_iterate.Tpo -c x86_64/Greg_states_iterate.c  -fPIC -DPIC -o x86_64/.libs/Greg_states_iterate.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Greg_states_iterate.lo -MD -MP -MF x86_64/.deps/Greg_states_iterate.Tpo -c x86_64/Greg_states_iterate.c -o x86_64/Greg_states_iterate.o >/dev/null 2>&1
- depbase=`echo x86_64/Gcreate_addr_space.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gcreate_addr_space.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gcreate_addr_space.lo x86_64/Gcreate_addr_space.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gcreate_addr_space.lo -MD -MP -MF x86_64/.deps/Gcreate_addr_space.Tpo -c x86_64/Gcreate_addr_space.c  -fPIC -DPIC -o x86_64/.libs/Gcreate_addr_space.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gcreate_addr_space.lo -MD -MP -MF x86_64/.deps/Gcreate_addr_space.Tpo -c x86_64/Gcreate_addr_space.c -o x86_64/Gcreate_addr_space.o >/dev/null 2>&1
- depbase=`echo x86_64/Gget_save_loc.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gget_save_loc.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gget_save_loc.lo x86_64/Gget_save_loc.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gget_save_loc.lo -MD -MP -MF x86_64/.deps/Gget_save_loc.Tpo -c x86_64/Gget_save_loc.c  -fPIC -DPIC -o x86_64/.libs/Gget_save_loc.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gget_save_loc.lo -MD -MP -MF x86_64/.deps/Gget_save_loc.Tpo -c x86_64/Gget_save_loc.c -o x86_64/Gget_save_loc.o >/dev/null 2>&1
- depbase=`echo x86_64/Gglobal.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gglobal.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gglobal.lo x86_64/Gglobal.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gglobal.lo -MD -MP -MF x86_64/.deps/Gglobal.Tpo -c x86_64/Gglobal.c  -fPIC -DPIC -o x86_64/.libs/Gglobal.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gglobal.lo -MD -MP -MF x86_64/.deps/Gglobal.Tpo -c x86_64/Gglobal.c -o x86_64/Gglobal.o >/dev/null 2>&1
- depbase=`echo x86_64/Ginit.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ginit.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Ginit.lo x86_64/Ginit.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ginit.lo -MD -MP -MF x86_64/.deps/Ginit.Tpo -c x86_64/Ginit.c  -fPIC -DPIC -o x86_64/.libs/Ginit.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ginit.lo -MD -MP -MF x86_64/.deps/Ginit.Tpo -c x86_64/Ginit.c -o x86_64/Ginit.o >/dev/null 2>&1
- depbase=`echo x86_64/Ginit_local.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ginit_local.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Ginit_local.lo x86_64/Ginit_local.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ginit_local.lo -MD -MP -MF x86_64/.deps/Ginit_local.Tpo -c x86_64/Ginit_local.c  -fPIC -DPIC -o x86_64/.libs/Ginit_local.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ginit_local.lo -MD -MP -MF x86_64/.deps/Ginit_local.Tpo -c x86_64/Ginit_local.c -o x86_64/Ginit_local.o >/dev/null 2>&1
- depbase=`echo x86_64/Ginit_remote.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ginit_remote.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Ginit_remote.lo x86_64/Ginit_remote.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ginit_remote.lo -MD -MP -MF x86_64/.deps/Ginit_remote.Tpo -c x86_64/Ginit_remote.c  -fPIC -DPIC -o x86_64/.libs/Ginit_remote.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Ginit_remote.lo -MD -MP -MF x86_64/.deps/Ginit_remote.Tpo -c x86_64/Ginit_remote.c -o x86_64/Ginit_remote.o >/dev/null 2>&1
- depbase=`echo x86_64/Gget_proc_info.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gget_proc_info.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gget_proc_info.lo x86_64/Gget_proc_info.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gget_proc_info.lo -MD -MP -MF x86_64/.deps/Gget_proc_info.Tpo -c x86_64/Gget_proc_info.c  -fPIC -DPIC -o x86_64/.libs/Gget_proc_info.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gget_proc_info.lo -MD -MP -MF x86_64/.deps/Gget_proc_info.Tpo -c x86_64/Gget_proc_info.c -o x86_64/Gget_proc_info.o >/dev/null 2>&1
- depbase=`echo x86_64/Gregs.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gregs.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gregs.lo x86_64/Gregs.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gregs.lo -MD -MP -MF x86_64/.deps/Gregs.Tpo -c x86_64/Gregs.c  -fPIC -DPIC -o x86_64/.libs/Gregs.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gregs.lo -MD -MP -MF x86_64/.deps/Gregs.Tpo -c x86_64/Gregs.c -o x86_64/Gregs.o >/dev/null 2>&1
- depbase=`echo x86_64/Gresume.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gresume.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gresume.lo x86_64/Gresume.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gresume.lo -MD -MP -MF x86_64/.deps/Gresume.Tpo -c x86_64/Gresume.c  -fPIC -DPIC -o x86_64/.libs/Gresume.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gresume.lo -MD -MP -MF x86_64/.deps/Gresume.Tpo -c x86_64/Gresume.c -o x86_64/Gresume.o >/dev/null 2>&1
- depbase=`echo x86_64/Gstash_frame.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gstash_frame.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gstash_frame.lo x86_64/Gstash_frame.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gstash_frame.lo -MD -MP -MF x86_64/.deps/Gstash_frame.Tpo -c x86_64/Gstash_frame.c  -fPIC -DPIC -o x86_64/.libs/Gstash_frame.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gstash_frame.lo -MD -MP -MF x86_64/.deps/Gstash_frame.Tpo -c x86_64/Gstash_frame.c -o x86_64/Gstash_frame.o >/dev/null 2>&1
- depbase=`echo x86_64/Gstep.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gstep.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gstep.lo x86_64/Gstep.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gstep.lo -MD -MP -MF x86_64/.deps/Gstep.Tpo -c x86_64/Gstep.c  -fPIC -DPIC -o x86_64/.libs/Gstep.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gstep.lo -MD -MP -MF x86_64/.deps/Gstep.Tpo -c x86_64/Gstep.c -o x86_64/Gstep.o >/dev/null 2>&1
- depbase=`echo x86_64/Gtrace.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gtrace.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/Gtrace.lo x86_64/Gtrace.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gtrace.lo -MD -MP -MF x86_64/.deps/Gtrace.Tpo -c x86_64/Gtrace.c  -fPIC -DPIC -o x86_64/.libs/Gtrace.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT x86_64/Gtrace.lo -MD -MP -MF x86_64/.deps/Gtrace.Tpo -c x86_64/Gtrace.c -o x86_64/Gtrace.o >/dev/null 2>&1
- depbase=`echo dwarf/Gexpr.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gexpr.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Gexpr.lo dwarf/Gexpr.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gexpr.lo -MD -MP -MF dwarf/.deps/Gexpr.Tpo -c dwarf/Gexpr.c  -fPIC -DPIC -o dwarf/.libs/Gexpr.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gexpr.lo -MD -MP -MF dwarf/.deps/Gexpr.Tpo -c dwarf/Gexpr.c -o dwarf/Gexpr.o >/dev/null 2>&1
- depbase=`echo dwarf/Gfde.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gfde.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Gfde.lo dwarf/Gfde.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gfde.lo -MD -MP -MF dwarf/.deps/Gfde.Tpo -c dwarf/Gfde.c  -fPIC -DPIC -o dwarf/.libs/Gfde.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gfde.lo -MD -MP -MF dwarf/.deps/Gfde.Tpo -c dwarf/Gfde.c -o dwarf/Gfde.o >/dev/null 2>&1
- depbase=`echo dwarf/Gparser.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gparser.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Gparser.lo dwarf/Gparser.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gparser.lo -MD -MP -MF dwarf/.deps/Gparser.Tpo -c dwarf/Gparser.c  -fPIC -DPIC -o dwarf/.libs/Gparser.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gparser.lo -MD -MP -MF dwarf/.deps/Gparser.Tpo -c dwarf/Gparser.c -o dwarf/Gparser.o >/dev/null 2>&1
- depbase=`echo dwarf/Gpe.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gpe.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Gpe.lo dwarf/Gpe.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gpe.lo -MD -MP -MF dwarf/.deps/Gpe.Tpo -c dwarf/Gpe.c  -fPIC -DPIC -o dwarf/.libs/Gpe.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gpe.lo -MD -MP -MF dwarf/.deps/Gpe.Tpo -c dwarf/Gpe.c -o dwarf/Gpe.o >/dev/null 2>&1
- depbase=`echo dwarf/Gfind_proc_info-lsb.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gfind_proc_info-lsb.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Gfind_proc_info-lsb.lo dwarf/Gfind_proc_info-lsb.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gfind_proc_info-lsb.lo -MD -MP -MF dwarf/.deps/Gfind_proc_info-lsb.Tpo -c dwarf/Gfind_proc_info-lsb.c  -fPIC -DPIC -o dwarf/.libs/Gfind_proc_info-lsb.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gfind_proc_info-lsb.lo -MD -MP -MF dwarf/.deps/Gfind_proc_info-lsb.Tpo -c dwarf/Gfind_proc_info-lsb.c -o dwarf/Gfind_proc_info-lsb.o >/dev/null 2>&1
- depbase=`echo dwarf/Gfind_unwind_table.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gfind_unwind_table.lo -MD -MP -MF $depbase.Tpo -c -o dwarf/Gfind_unwind_table.lo dwarf/Gfind_unwind_table.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gfind_unwind_table.lo -MD -MP -MF dwarf/.deps/Gfind_unwind_table.Tpo -c dwarf/Gfind_unwind_table.c  -fPIC -DPIC -o dwarf/.libs/Gfind_unwind_table.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT dwarf/Gfind_unwind_table.lo -MD -MP -MF dwarf/.deps/Gfind_unwind_table.Tpo -c dwarf/Gfind_unwind_table.c -o dwarf/Gfind_unwind_table.o >/dev/null 2>&1
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o libunwind-dwarf-generic.la  dwarf/Gexpr.lo dwarf/Gfde.lo dwarf/Gparser.lo dwarf/Gpe.lo dwarf/Gfind_proc_info-lsb.lo dwarf/Gfind_unwind_table.lo libunwind-dwarf-common.la 
- libtool: link: (cd .libs/libunwind-dwarf-generic.lax/libunwind-dwarf-common.a && ar x "/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src/./.libs/libunwind-dwarf-common.a")
- libtool: link: ar cr .libs/libunwind-dwarf-generic.a dwarf/.libs/Gexpr.o dwarf/.libs/Gfde.o dwarf/.libs/Gparser.o dwarf/.libs/Gpe.o dwarf/.libs/Gfind_proc_info-lsb.o dwarf/.libs/Gfind_unwind_table.o   .libs/libunwind-dwarf-generic.lax/libunwind-dwarf-common.a/global.o 
- libtool: link: ranlib .libs/libunwind-dwarf-generic.a
- libtool: link: rm -fr .libs/libunwind-dwarf-generic.lax
- libtool: link: ( cd ".libs" && rm -f "libunwind-dwarf-generic.la" && ln -s "../libunwind-dwarf-generic.la" "libunwind-dwarf-generic.la" )
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -XCClinker -nostartfiles -version-info 8:1:0		  -o libunwind-x86_64.la -rpath /usr/local/lib os-linux.lo mi/init.lo mi/flush_cache.lo mi/mempool.lo mi/strerror.lo x86_64/is_fpreg.lo x86_64/regname.lo x86_64/Gos-linux.lo mi/Gdyn-extract.lo mi/Gdyn-remote.lo mi/Gfind_dynamic_proc_info.lo mi/Gget_accessors.lo mi/Gget_proc_info_by_ip.lo mi/Gget_proc_name.lo mi/Gput_dynamic_unwind_info.lo mi/Gdestroy_addr_space.lo mi/Gget_reg.lo mi/Gset_reg.lo mi/Gget_fpreg.lo mi/Gset_fpreg.lo mi/Gset_caching_policy.lo mi/Gset_cache_size.lo x86_64/Gapply_reg_state.lo x86_64/Greg_states_iterate.lo x86_64/Gcreate_addr_space.lo x86_64/Gget_save_loc.lo x86_64/Gglobal.lo x86_64/Ginit.lo x86_64/Ginit_local.lo x86_64/Ginit_remote.lo x86_64/Gget_proc_info.lo x86_64/Gregs.lo x86_64/Gresume.lo x86_64/Gstash_frame.lo x86_64/Gstep.lo x86_64/Gtrace.lo libunwind-dwarf-generic.la libunwind-elf64.la libunwind.la -lc 
- libtool: link: gcc -shared  -fPIC -DPIC  .libs/os-linux.o mi/.libs/init.o mi/.libs/flush_cache.o mi/.libs/mempool.o mi/.libs/strerror.o x86_64/.libs/is_fpreg.o x86_64/.libs/regname.o x86_64/.libs/Gos-linux.o mi/.libs/Gdyn-extract.o mi/.libs/Gdyn-remote.o mi/.libs/Gfind_dynamic_proc_info.o mi/.libs/Gget_accessors.o mi/.libs/Gget_proc_info_by_ip.o mi/.libs/Gget_proc_name.o mi/.libs/Gput_dynamic_unwind_info.o mi/.libs/Gdestroy_addr_space.o mi/.libs/Gget_reg.o mi/.libs/Gset_reg.o mi/.libs/Gget_fpreg.o mi/.libs/Gset_fpreg.o mi/.libs/Gset_caching_policy.o mi/.libs/Gset_cache_size.o x86_64/.libs/Gapply_reg_state.o x86_64/.libs/Greg_states_iterate.o x86_64/.libs/Gcreate_addr_space.o x86_64/.libs/Gget_save_loc.o x86_64/.libs/Gglobal.o x86_64/.libs/Ginit.o x86_64/.libs/Ginit_local.o x86_64/.libs/Ginit_remote.o x86_64/.libs/Gget_proc_info.o x86_64/.libs/Gregs.o x86_64/.libs/Gresume.o x86_64/.libs/Gstash_frame.o x86_64/.libs/Gstep.o x86_64/.libs/Gtrace.o  -Wl,--whole-archive ./.libs/libunwind-dwarf-generic.a ./.libs/libunwind-elf64.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src/.libs -llzma ./.libs/libunwind.so -lc  -nostartfiles   -Wl,-soname -Wl,libunwind-x86_64.so.8 -o .libs/libunwind-x86_64.so.8.0.1
- libtool: link: (cd ".libs" && rm -f "libunwind-x86_64.so.8" && ln -s "libunwind-x86_64.so.8.0.1" "libunwind-x86_64.so.8")
- libtool: link: (cd ".libs" && rm -f "libunwind-x86_64.so" && ln -s "libunwind-x86_64.so.8.0.1" "libunwind-x86_64.so")
- libtool: link: (cd .libs/libunwind-x86_64.lax/libunwind-dwarf-generic.a && ar x "/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src/./.libs/libunwind-dwarf-generic.a")
- libtool: link: (cd .libs/libunwind-x86_64.lax/libunwind-elf64.a && ar x "/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src/./.libs/libunwind-elf64.a")
- libtool: link: ar cr .libs/libunwind-x86_64.a  os-linux.o mi/init.o mi/flush_cache.o mi/mempool.o mi/strerror.o x86_64/is_fpreg.o x86_64/regname.o x86_64/Gos-linux.o mi/Gdyn-extract.o mi/Gdyn-remote.o mi/Gfind_dynamic_proc_info.o mi/Gget_accessors.o mi/Gget_proc_info_by_ip.o mi/Gget_proc_name.o mi/Gput_dynamic_unwind_info.o mi/Gdestroy_addr_space.o mi/Gget_reg.o mi/Gset_reg.o mi/Gget_fpreg.o mi/Gset_fpreg.o mi/Gset_caching_policy.o mi/Gset_cache_size.o x86_64/Gapply_reg_state.o x86_64/Greg_states_iterate.o x86_64/Gcreate_addr_space.o x86_64/Gget_save_loc.o x86_64/Gglobal.o x86_64/Ginit.o x86_64/Ginit_local.o x86_64/Ginit_remote.o x86_64/Gget_proc_info.o x86_64/Gregs.o x86_64/Gresume.o x86_64/Gstash_frame.o x86_64/Gstep.o x86_64/Gtrace.o  .libs/libunwind-x86_64.lax/libunwind-dwarf-generic.a/Gexpr.o .libs/libunwind-x86_64.lax/libunwind-dwarf-generic.a/Gfde.o .libs/libunwind-x86_64.lax/libunwind-dwarf-generic.a/Gfind_proc_info-lsb.o .libs/libunwind-x86_64.lax/libunwind-dwarf-generic.a/Gfind_unwind_table.o .libs/libunwind-x86_64.lax/libunwind-dwarf-generic.a/Gparser.o .libs/libunwind-x86_64.lax/libunwind-dwarf-generic.a/Gpe.o .libs/libunwind-x86_64.lax/libunwind-dwarf-generic.a/global.o  .libs/libunwind-x86_64.lax/libunwind-elf64.a/elf64.o 
- libtool: link: ranlib .libs/libunwind-x86_64.a
- libtool: link: rm -fr .libs/libunwind-x86_64.lax
- libtool: link: ( cd ".libs" && rm -f "libunwind-x86_64.la" && ln -s "../libunwind-x86_64.la" "libunwind-x86_64.la" )
- depbase=`echo setjmp/longjmp.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT setjmp/longjmp.lo -MD -MP -MF $depbase.Tpo -c -o setjmp/longjmp.lo setjmp/longjmp.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT setjmp/longjmp.lo -MD -MP -MF setjmp/.deps/longjmp.Tpo -c setjmp/longjmp.c  -fPIC -DPIC -o setjmp/.libs/longjmp.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT setjmp/longjmp.lo -MD -MP -MF setjmp/.deps/longjmp.Tpo -c setjmp/longjmp.c -o setjmp/longjmp.o >/dev/null 2>&1
- depbase=`echo setjmp/siglongjmp.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT setjmp/siglongjmp.lo -MD -MP -MF $depbase.Tpo -c -o setjmp/siglongjmp.lo setjmp/siglongjmp.c &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT setjmp/siglongjmp.lo -MD -MP -MF setjmp/.deps/siglongjmp.Tpo -c setjmp/siglongjmp.c  -fPIC -DPIC -o setjmp/.libs/siglongjmp.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT setjmp/siglongjmp.lo -MD -MP -MF setjmp/.deps/siglongjmp.Tpo -c setjmp/siglongjmp.c -o setjmp/siglongjmp.o >/dev/null 2>&1
- depbase=`echo x86_64/longjmp.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC  -D_GNU_SOURCE -DNDEBUG -MT x86_64/longjmp.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/longjmp.lo x86_64/longjmp.S &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC -D_GNU_SOURCE -DNDEBUG -MT x86_64/longjmp.lo -MD -MP -MF x86_64/.deps/longjmp.Tpo -c x86_64/longjmp.S  -fPIC -DPIC -o x86_64/.libs/longjmp.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC -D_GNU_SOURCE -DNDEBUG -MT x86_64/longjmp.lo -MD -MP -MF x86_64/.deps/longjmp.Tpo -c x86_64/longjmp.S -o x86_64/longjmp.o >/dev/null 2>&1
- depbase=`echo x86_64/siglongjmp.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
- /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC  -D_GNU_SOURCE -DNDEBUG -MT x86_64/siglongjmp.lo -MD -MP -MF $depbase.Tpo -c -o x86_64/siglongjmp.lo x86_64/siglongjmp.S &&\
- mv -f $depbase.Tpo $depbase.Plo
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC -D_GNU_SOURCE -DNDEBUG -MT x86_64/siglongjmp.lo -MD -MP -MF x86_64/.deps/siglongjmp.Tpo -c x86_64/siglongjmp.S  -fPIC -DPIC -o x86_64/.libs/siglongjmp.o
- libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../include -I../include -I../include/tdep-x86_64 -I. -D_GNU_SOURCE -DNDEBUG -I../include -I../include/tdep-x86_64 -I. -fPIC -D_GNU_SOURCE -DNDEBUG -MT x86_64/siglongjmp.lo -MD -MP -MF x86_64/.deps/siglongjmp.Tpo -c x86_64/siglongjmp.S -o x86_64/siglongjmp.o >/dev/null 2>&1
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -XCClinker -nostartfiles -version-info 0:0:0  -o libunwind-setjmp.la -rpath /usr/local/lib setjmp/longjmp.lo setjmp/siglongjmp.lo        x86_64/longjmp.lo x86_64/siglongjmp.lo    libunwind-elf64.la libunwind-x86_64.la libunwind.la -lc 
- libtool: link: gcc -shared  -fPIC -DPIC  setjmp/.libs/longjmp.o setjmp/.libs/siglongjmp.o x86_64/.libs/longjmp.o x86_64/.libs/siglongjmp.o  -Wl,--whole-archive ./.libs/libunwind-elf64.a -Wl,--no-whole-archive  -Wl,-rpath -Wl,/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src/.libs -llzma ./.libs/libunwind-x86_64.so ./.libs/libunwind.so -lc  -nostartfiles   -Wl,-soname -Wl,libunwind-setjmp.so.0 -o .libs/libunwind-setjmp.so.0.0.0
- libtool: link: (cd ".libs" && rm -f "libunwind-setjmp.so.0" && ln -s "libunwind-setjmp.so.0.0.0" "libunwind-setjmp.so.0")
- libtool: link: (cd ".libs" && rm -f "libunwind-setjmp.so" && ln -s "libunwind-setjmp.so.0.0.0" "libunwind-setjmp.so")
- libtool: link: (cd .libs/libunwind-setjmp.lax/libunwind-elf64.a && ar x "/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src/./.libs/libunwind-elf64.a")
- copying selected object files to avoid basename conflicts...
- libtool: link: ln x86_64/longjmp.o .libs/libunwind-setjmp.lax/lt1-longjmp.o || cp x86_64/longjmp.o .libs/libunwind-setjmp.lax/lt1-longjmp.o
- libtool: link: ln x86_64/siglongjmp.o .libs/libunwind-setjmp.lax/lt2-siglongjmp.o || cp x86_64/siglongjmp.o .libs/libunwind-setjmp.lax/lt2-siglongjmp.o
- libtool: link: ar cr .libs/libunwind-setjmp.a setjmp/longjmp.o setjmp/siglongjmp.o .libs/libunwind-setjmp.lax/lt1-longjmp.o .libs/libunwind-setjmp.lax/lt2-siglongjmp.o .libs/libunwind-setjmp.lax/libunwind-elf64.a/elf64.o
- libtool: link: ranlib .libs/libunwind-setjmp.a
- libtool: link: rm -fr .libs/libunwind-setjmp.lax .libs/libunwind-setjmp.lax
- libtool: link: ( cd ".libs" && rm -f "libunwind-setjmp.la" && ln -s "../libunwind-setjmp.la" "libunwind-setjmp.la" )
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src'
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/src'
- Making all in tests
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/tests'
- depbase=`echo forker.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT forker.o -MD -MP -MF $depbase.Tpo -c -o forker.o forker.c &&\
- mv -f $depbase.Tpo $depbase.Po
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -static  -o forker forker.o  
- libtool: link: gcc -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -o forker forker.o 
- depbase=`echo Gperf-simple.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT Gperf-simple.o -MD -MP -MF $depbase.Tpo -c -o Gperf-simple.o Gperf-simple.c &&\
- mv -f $depbase.Tpo $depbase.Po
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o Gperf-simple Gperf-simple.o ../src/libunwind-x86_64.la ../src/libunwind.la 
- libtool: link: gcc -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -o .libs/Gperf-simple Gperf-simple.o  ../src/.libs/libunwind-x86_64.so ../src/.libs/libunwind.so
- depbase=`echo Lperf-simple.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT Lperf-simple.o -MD -MP -MF $depbase.Tpo -c -o Lperf-simple.o Lperf-simple.c &&\
- mv -f $depbase.Tpo $depbase.Po
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o Lperf-simple Lperf-simple.o ../src/libunwind.la 
- libtool: link: gcc -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -o .libs/Lperf-simple Lperf-simple.o  ../src/.libs/libunwind.so
- depbase=`echo Gperf-trace.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT Gperf-trace.o -MD -MP -MF $depbase.Tpo -c -o Gperf-trace.o Gperf-trace.c &&\
- mv -f $depbase.Tpo $depbase.Po
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o Gperf-trace Gperf-trace.o ../src/libunwind-x86_64.la ../src/libunwind.la 
- libtool: link: gcc -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -o .libs/Gperf-trace Gperf-trace.o  ../src/.libs/libunwind-x86_64.so ../src/.libs/libunwind.so
- depbase=`echo Lperf-trace.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT Lperf-trace.o -MD -MP -MF $depbase.Tpo -c -o Lperf-trace.o Lperf-trace.c &&\
- mv -f $depbase.Tpo $depbase.Po
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o Lperf-trace Lperf-trace.o ../src/libunwind.la 
- libtool: link: gcc -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -o .libs/Lperf-trace Lperf-trace.o  ../src/.libs/libunwind.so
- depbase=`echo mapper.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT mapper.o -MD -MP -MF $depbase.Tpo -c -o mapper.o mapper.c &&\
- mv -f $depbase.Tpo $depbase.Po
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o mapper mapper.o  
- libtool: link: gcc -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -o mapper mapper.o 
- depbase=`echo test-ptrace-misc.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT test-ptrace-misc.o -MD -MP -MF $depbase.Tpo -c -o test-ptrace-misc.o test-ptrace-misc.c &&\
- mv -f $depbase.Tpo $depbase.Po
- depbase=`echo ident.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT ident.o -MD -MP -MF $depbase.Tpo -c -o ident.o ident.c &&\
- mv -f $depbase.Tpo $depbase.Po
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o test-ptrace-misc test-ptrace-misc.o ident.o  
- libtool: link: gcc -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -o test-ptrace-misc test-ptrace-misc.o ident.o 
- depbase=`echo crasher.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT crasher.o -MD -MP -MF $depbase.Tpo -c -o crasher.o crasher.c &&\
- mv -f $depbase.Tpo $depbase.Po
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o crasher crasher.o  
- libtool: link: gcc -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -o crasher crasher.o 
- depbase=`echo test-coredump-unwind.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
- gcc -DHAVE_CONFIG_H -I. -I../include  -I../include -D_GNU_SOURCE -DNDEBUG  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -MT test-coredump-unwind.o -MD -MP -MF $depbase.Tpo -c -o test-coredump-unwind.o test-coredump-unwind.c &&\
- mv -f $depbase.Tpo $depbase.Po
- /bin/bash ../libtool  --tag=CC   --mode=link gcc  -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__   -o test-coredump-unwind test-coredump-unwind.o ../src/libunwind-coredump.la ../src/libunwind-x86_64.la  
- libtool: link: gcc -fPIC -fexceptions -Wall -Wsign-compare -D__EXTENSIONS__ -o .libs/test-coredump-unwind test-coredump-unwind.o  ../src/.libs/libunwind-coredump.so ../src/.libs/libunwind-x86_64.so
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind/tests'
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind'
- make[1]: Nothing to be done for 'all-am'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/libunwind'
- In file included from x86_64/Linit.c:4:
- x86_64/Ginit.c: In function 'mincore_validate':
- x86_64/Ginit.c:166:27: warning: pointer targets in passing argument 3 of 'mincore' differ in signedness [-Wpointer-sign]
-   166 |   if (mincore (addr, len, (char *)mvec) != 0)
-       |                           ^~~~~~~~~~~~
-       |                           |
-       |                           char *
- In file included from x86_64/Ginit.c:36:
- /usr/include/x86_64-linux-gnu/sys/mman.h:123:65: note: expected 'unsigned char *' but argument is of type 'char *'
-   123 | extern int mincore (void *__start, size_t __len, unsigned char *__vec)
-       |                                                  ~~~~~~~~~~~~~~~^~~~~
- x86_64/Ginit.c: In function '_ULx86_64_init_mem_validate':
- x86_64/Ginit.c:189:50: warning: pointer targets in passing argument 3 of 'mincore' differ in signedness [-Wpointer-sign]
-   189 |   while ((ret = mincore ((void*)addr, PAGE_SIZE, (char *)mvec)) == -1 &&
-       |                                                  ^~~~~~~~~~~~
-       |                                                  |
-       |                                                  char *
- /usr/include/x86_64-linux-gnu/sys/mman.h:123:65: note: expected 'unsigned char *' but argument is of type 'char *'
-   123 | extern int mincore (void *__start, size_t __len, unsigned char *__vec)
-       |                                                  ~~~~~~~~~~~~~~~^~~~~
- ptrace/_UPT_get_dyn_info_list_addr.c: In function 'get_list_addr':
- ptrace/_UPT_get_dyn_info_list_addr.c:83:3: warning: #warning Implement get_list_addr(), please. [-Wcpp]
-    83 | # warning Implement get_list_addr(), please.
-       |   ^~~~~~~
- coredump/_UPT_get_dyn_info_list_addr.c: In function 'get_list_addr':
- coredump/_UPT_get_dyn_info_list_addr.c:86:3: warning: #warning Implement get_list_addr(), please. [-Wcpp]
-    86 | # warning Implement get_list_addr(), please.
-       |   ^~~~~~~
- x86_64/Ginit.c: In function 'mincore_validate':
- x86_64/Ginit.c:166:27: warning: pointer targets in passing argument 3 of 'mincore' differ in signedness [-Wpointer-sign]
-   166 |   if (mincore (addr, len, (char *)mvec) != 0)
-       |                           ^~~~~~~~~~~~
-       |                           |
-       |                           char *
- In file included from x86_64/Ginit.c:36:
- /usr/include/x86_64-linux-gnu/sys/mman.h:123:65: note: expected 'unsigned char *' but argument is of type 'char *'
-   123 | extern int mincore (void *__start, size_t __len, unsigned char *__vec)
-       |                                                  ~~~~~~~~~~~~~~~^~~~~
- x86_64/Ginit.c: In function '_Ux86_64_init_mem_validate':
- x86_64/Ginit.c:189:50: warning: pointer targets in passing argument 3 of 'mincore' differ in signedness [-Wpointer-sign]
-   189 |   while ((ret = mincore ((void*)addr, PAGE_SIZE, (char *)mvec)) == -1 &&
-       |                                                  ^~~~~~~~~~~~
-       |                                                  |
-       |                                                  char *
- /usr/include/x86_64-linux-gnu/sys/mman.h:123:65: note: expected 'unsigned char *' but argument is of type 'char *'
-   123 | extern int mincore (void *__start, size_t __len, unsigned char *__vec)
-       |                                                  ~~~~~~~~~~~~~~~^~~~~
- test-coredump-unwind.c: In function 'handle_sigsegv':
- test-coredump-unwind.c:247:9: warning: variable 'size' set but not used [-Wunused-but-set-variable]
-   247 |     int size;
-       |         ^~~~
- (cd _build/default/lib/deps && ./build-boost.sh)
- Building Boost.Build engine with toolset gcc... tools/build/src/engine/bin.linuxx86_64/b2
- Unicode/ICU support for Boost.Regex?... not found.
- Generating Boost.Build configuration in project-config.jam...
- 
- Bootstrapping is done. To build, run:
- 
-     ./b2
-     
- To adjust configuration, edit 'project-config.jam'.
- Further information:
- 
-    - Command line help:
-      ./b2 --help
-      
-    - Getting started guide: 
-      http://www.boost.org/more/getting_started/unix-variants.html
-      
-    - Boost.Build documentation:
-      http://www.boost.org/build/doc/html/index.html
- 
- Performing configuration checks
- 
-     - default address-model    : 64-bit
-     - default architecture     : x86
- 
- Building the Boost C++ Libraries.
- 
- 
-     - symlinks supported       : yes
-     - has_icu builds           : no
-     - lockfree boost::atomic_flag : no
- 
- Component configuration:
- 
-     - atomic                   : not building
-     - chrono                   : building
-     - container                : not building
-     - context                  : not building
-     - contract                 : not building
-     - coroutine                : not building
-     - date_time                : building
-     - exception                : not building
-     - fiber                    : not building
-     - filesystem               : not building
-     - graph                    : not building
-     - graph_parallel           : not building
-     - iostreams                : not building
-     - locale                   : not building
-     - log                      : not building
-     - math                     : not building
-     - mpi                      : not building
-     - program_options          : not building
-     - python                   : not building
-     - random                   : not building
-     - regex                    : building
-     - serialization            : building
-     - stacktrace               : not building
-     - system                   : building
-     - test                     : not building
-     - thread                   : building
-     - timer                    : building
-     - type_erasure             : not building
-     - wave                     : not building
- 
- 
- 
- The Boost C++ Libraries were successfully built!
- 
- The following directory should be added to compiler include paths:
- 
-     /home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/boost
- 
- The following directory should be added to linker library paths:
- 
-     /home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/boost/stage/lib
- 
- Performing configuration checks
- 
-     - default address-model    : 64-bit (cached)
-     - default architecture     : x86 (cached)
-     - symlinks supported       : yes (cached)
-     - has_icu builds           : no  (cached)
-     - lockfree boost::atomic_flag : no  (cached)
- 
- Component configuration:
- 
-     - atomic                   : not building
-     - chrono                   : building
-     - container                : not building
-     - context                  : not building
-     - contract                 : not building
-     - coroutine                : not building
-     - date_time                : building
-     - exception                : not building
-     - fiber                    : not building
-     - filesystem               : not building
-     - graph                    : not building
-     - graph_parallel           : not building
-     - iostreams                : not building
-     - locale                   : not building
-     - log                      : not building
-     - math                     : not building
-     - mpi                      : not building
-     - program_options          : not building
-     - python                   : not building
-     - random                   : not building
-     - regex                    : building
-     - serialization            : building
-     - stacktrace               : not building
-     - system                   : building
-     - test                     : not building
-     - thread                   : building
-     - timer                    : building
-     - type_erasure             : not building
-     - wave                     : not building
- 
- + cd boost
- + sed -i 's/if PTHREAD_STACK_MIN > 0/ifdef PTHREAD_STACK_MIN/' libs/thread/include/boost/thread/pthread/thread_data.hpp
- + ./bootstrap.sh
- + BOOST_ARGS='cxxflags=-fPIC cflags=-fPIC --with-system --with-chrono --with-timer --with-thread --with-date_time --with-regex --with-serialization'
- + ./b2 cxxflags=-fPIC cflags=-fPIC --with-system --with-chrono --with-timer --with-thread --with-date_time --with-regex --with-serialization -d0 -j 6
- + ./b2 cxxflags=-fPIC cflags=-fPIC --with-system --with-chrono --with-timer --with-thread --with-date_time --with-regex --with-serialization install -j 6 -d0 --prefix=/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/boost
- (cd _build/default/lib/deps/protobuf && /usr/bin/make -s -j6)
- Making all in .
- Making all in src
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/mathlimits.lo -MD -MP -MF google/protobuf/stubs/.deps/mathlimits.Tpo -c google/protobuf/stubs/mathlimits.cc -o google/protobuf/stubs/mathlimits.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/text_format.lo -MD -MP -MF google/protobuf/.deps/text_format.Tpo -c google/protobuf/text_format.cc -o google/protobuf/text_format.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/type.pb.lo -MD -MP -MF google/protobuf/.deps/type.pb.Tpo -c google/protobuf/type.pb.cc -o google/protobuf/type.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/unknown_field_set.lo -MD -MP -MF google/protobuf/.deps/unknown_field_set.Tpo -c google/protobuf/unknown_field_set.cc -o google/protobuf/unknown_field_set.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/timestamp.pb.lo -MD -MP -MF google/protobuf/.deps/timestamp.pb.Tpo -c google/protobuf/timestamp.pb.cc -o google/protobuf/timestamp.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/substitute.lo -MD -MP -MF google/protobuf/stubs/.deps/substitute.Tpo -c google/protobuf/stubs/substitute.cc -o google/protobuf/stubs/substitute.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/wire_format.lo -MD -MP -MF google/protobuf/.deps/wire_format.Tpo -c google/protobuf/wire_format.cc -o google/protobuf/wire_format.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/wrappers.pb.lo -MD -MP -MF google/protobuf/.deps/wrappers.pb.Tpo -c google/protobuf/wrappers.pb.cc -o google/protobuf/wrappers.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/gzip_stream.lo -MD -MP -MF google/protobuf/io/.deps/gzip_stream.Tpo -c google/protobuf/io/gzip_stream.cc -o google/protobuf/io/gzip_stream.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/printer.lo -MD -MP -MF google/protobuf/io/.deps/printer.Tpo -c google/protobuf/io/printer.cc -o google/protobuf/io/printer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/strtod.lo -MD -MP -MF google/protobuf/io/.deps/strtod.Tpo -c google/protobuf/io/strtod.cc -o google/protobuf/io/strtod.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/tokenizer.lo -MD -MP -MF google/protobuf/io/.deps/tokenizer.Tpo -c google/protobuf/io/tokenizer.cc -o google/protobuf/io/tokenizer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/zero_copy_stream_impl.lo -MD -MP -MF google/protobuf/io/.deps/zero_copy_stream_impl.Tpo -c google/protobuf/io/zero_copy_stream_impl.cc -o google/protobuf/io/zero_copy_stream_impl.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/importer.lo -MD -MP -MF google/protobuf/compiler/.deps/importer.Tpo -c google/protobuf/compiler/importer.cc -o google/protobuf/compiler/importer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/parser.lo -MD -MP -MF google/protobuf/compiler/.deps/parser.Tpo -c google/protobuf/compiler/parser.cc -o google/protobuf/compiler/parser.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/json_util.lo -MD -MP -MF google/protobuf/util/.deps/json_util.Tpo -c google/protobuf/util/json_util.cc -o google/protobuf/util/json_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/message_differencer.lo -MD -MP -MF google/protobuf/util/.deps/message_differencer.Tpo -c google/protobuf/util/message_differencer.cc -o google/protobuf/util/message_differencer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/time_util.lo -MD -MP -MF google/protobuf/util/.deps/time_util.Tpo -c google/protobuf/util/time_util.cc -o google/protobuf/util/time_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/type_resolver_util.lo -MD -MP -MF google/protobuf/util/.deps/type_resolver_util.Tpo -c google/protobuf/util/type_resolver_util.cc -o google/protobuf/util/type_resolver_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/code_generator.lo -MD -MP -MF google/protobuf/compiler/.deps/code_generator.Tpo -c google/protobuf/compiler/code_generator.cc -o google/protobuf/compiler/code_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/command_line_interface.lo -MD -MP -MF google/protobuf/compiler/.deps/command_line_interface.Tpo -c google/protobuf/compiler/command_line_interface.cc -o google/protobuf/compiler/command_line_interface.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/plugin.lo -MD -MP -MF google/protobuf/compiler/.deps/plugin.Tpo -c google/protobuf/compiler/plugin.cc -o google/protobuf/compiler/plugin.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/plugin.pb.lo -MD -MP -MF google/protobuf/compiler/.deps/plugin.pb.Tpo -c google/protobuf/compiler/plugin.pb.cc -o google/protobuf/compiler/plugin.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/subprocess.lo -MD -MP -MF google/protobuf/compiler/.deps/subprocess.Tpo -c google/protobuf/compiler/subprocess.cc -o google/protobuf/compiler/subprocess.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/zip_writer.lo -MD -MP -MF google/protobuf/compiler/.deps/zip_writer.Tpo -c google/protobuf/compiler/zip_writer.cc -o google/protobuf/compiler/zip_writer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/atomicops_internals_x86_gcc.lo -MD -MP -MF google/protobuf/stubs/.deps/atomicops_internals_x86_gcc.Tpo -c google/protobuf/stubs/atomicops_internals_x86_gcc.cc -o google/protobuf/stubs/atomicops_internals_x86_gcc.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/atomicops_internals_x86_msvc.lo -MD -MP -MF google/protobuf/stubs/.deps/atomicops_internals_x86_msvc.Tpo -c google/protobuf/stubs/atomicops_internals_x86_msvc.cc -o google/protobuf/stubs/atomicops_internals_x86_msvc.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/bytestream.lo -MD -MP -MF google/protobuf/stubs/.deps/bytestream.Tpo -c google/protobuf/stubs/bytestream.cc -o google/protobuf/stubs/bytestream.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/common.lo -MD -MP -MF google/protobuf/stubs/.deps/common.Tpo -c google/protobuf/stubs/common.cc -o google/protobuf/stubs/common.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/int128.lo -MD -MP -MF google/protobuf/stubs/.deps/int128.Tpo -c google/protobuf/stubs/int128.cc -o google/protobuf/stubs/int128.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/io_win32.lo -MD -MP -MF google/protobuf/stubs/.deps/io_win32.Tpo -c google/protobuf/stubs/io_win32.cc -o google/protobuf/stubs/io_win32.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/once.lo -MD -MP -MF google/protobuf/stubs/.deps/once.Tpo -c google/protobuf/stubs/once.cc -o google/protobuf/stubs/once.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/status.lo -MD -MP -MF google/protobuf/stubs/.deps/status.Tpo -c google/protobuf/stubs/status.cc -o google/protobuf/stubs/status.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/statusor.lo -MD -MP -MF google/protobuf/stubs/.deps/statusor.Tpo -c google/protobuf/stubs/statusor.cc -o google/protobuf/stubs/statusor.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/stringpiece.lo -MD -MP -MF google/protobuf/stubs/.deps/stringpiece.Tpo -c google/protobuf/stubs/stringpiece.cc -o google/protobuf/stubs/stringpiece.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/structurally_valid.lo -MD -MP -MF google/protobuf/stubs/.deps/structurally_valid.Tpo -c google/protobuf/stubs/structurally_valid.cc -o google/protobuf/stubs/structurally_valid.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/stringprintf.lo -MD -MP -MF google/protobuf/stubs/.deps/stringprintf.Tpo -c google/protobuf/stubs/stringprintf.cc -o google/protobuf/stubs/stringprintf.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/strutil.lo -MD -MP -MF google/protobuf/stubs/.deps/strutil.Tpo -c google/protobuf/stubs/strutil.cc -o google/protobuf/stubs/strutil.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/time.lo -MD -MP -MF google/protobuf/stubs/.deps/time.Tpo -c google/protobuf/stubs/time.cc -o google/protobuf/stubs/time.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/arena.lo -MD -MP -MF google/protobuf/.deps/arena.Tpo -c google/protobuf/arena.cc -o google/protobuf/arena.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/arenastring.lo -MD -MP -MF google/protobuf/.deps/arenastring.Tpo -c google/protobuf/arenastring.cc -o google/protobuf/arenastring.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/extension_set.lo -MD -MP -MF google/protobuf/.deps/extension_set.Tpo -c google/protobuf/extension_set.cc -o google/protobuf/extension_set.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_util.lo -MD -MP -MF google/protobuf/.deps/generated_message_util.Tpo -c google/protobuf/generated_message_util.cc -o google/protobuf/generated_message_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_table_driven_lite.lo -MD -MP -MF google/protobuf/.deps/generated_message_table_driven_lite.Tpo -c google/protobuf/generated_message_table_driven_lite.cc -o google/protobuf/generated_message_table_driven_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/message_lite.lo -MD -MP -MF google/protobuf/.deps/message_lite.Tpo -c google/protobuf/message_lite.cc -o google/protobuf/message_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/repeated_field.lo -MD -MP -MF google/protobuf/.deps/repeated_field.Tpo -c google/protobuf/repeated_field.cc -o google/protobuf/repeated_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/wire_format_lite.lo -MD -MP -MF google/protobuf/.deps/wire_format_lite.Tpo -c google/protobuf/wire_format_lite.cc -o google/protobuf/wire_format_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/coded_stream.lo -MD -MP -MF google/protobuf/io/.deps/coded_stream.Tpo -c google/protobuf/io/coded_stream.cc -o google/protobuf/io/coded_stream.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/zero_copy_stream.lo -MD -MP -MF google/protobuf/io/.deps/zero_copy_stream.Tpo -c google/protobuf/io/zero_copy_stream.cc -o google/protobuf/io/zero_copy_stream.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/zero_copy_stream_impl_lite.lo -MD -MP -MF google/protobuf/io/.deps/zero_copy_stream_impl_lite.Tpo -c google/protobuf/io/zero_copy_stream_impl_lite.cc -o google/protobuf/io/zero_copy_stream_impl_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/any.pb.lo -MD -MP -MF google/protobuf/.deps/any.pb.Tpo -c google/protobuf/any.pb.cc -o google/protobuf/any.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/api.pb.lo -MD -MP -MF google/protobuf/.deps/api.pb.Tpo -c google/protobuf/api.pb.cc -o google/protobuf/api.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/any.lo -MD -MP -MF google/protobuf/.deps/any.Tpo -c google/protobuf/any.cc -o google/protobuf/any.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/descriptor.lo -MD -MP -MF google/protobuf/.deps/descriptor.Tpo -c google/protobuf/descriptor.cc -o google/protobuf/descriptor.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/descriptor_database.lo -MD -MP -MF google/protobuf/.deps/descriptor_database.Tpo -c google/protobuf/descriptor_database.cc -o google/protobuf/descriptor_database.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/descriptor.pb.lo -MD -MP -MF google/protobuf/.deps/descriptor.pb.Tpo -c google/protobuf/descriptor.pb.cc -o google/protobuf/descriptor.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/duration.pb.lo -MD -MP -MF google/protobuf/.deps/duration.pb.Tpo -c google/protobuf/duration.pb.cc -o google/protobuf/duration.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/dynamic_message.lo -MD -MP -MF google/protobuf/.deps/dynamic_message.Tpo -c google/protobuf/dynamic_message.cc -o google/protobuf/dynamic_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/empty.pb.lo -MD -MP -MF google/protobuf/.deps/empty.pb.Tpo -c google/protobuf/empty.pb.cc -o google/protobuf/empty.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/extension_set_heavy.lo -MD -MP -MF google/protobuf/.deps/extension_set_heavy.Tpo -c google/protobuf/extension_set_heavy.cc -o google/protobuf/extension_set_heavy.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/field_mask.pb.lo -MD -MP -MF google/protobuf/.deps/field_mask.pb.Tpo -c google/protobuf/field_mask.pb.cc -o google/protobuf/field_mask.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_reflection.lo -MD -MP -MF google/protobuf/.deps/generated_message_reflection.Tpo -c google/protobuf/generated_message_reflection.cc -o google/protobuf/generated_message_reflection.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_table_driven.lo -MD -MP -MF google/protobuf/.deps/generated_message_table_driven.Tpo -c google/protobuf/generated_message_table_driven.cc -o google/protobuf/generated_message_table_driven.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/map_field.lo -MD -MP -MF google/protobuf/.deps/map_field.Tpo -c google/protobuf/map_field.cc -o google/protobuf/map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/message.lo -MD -MP -MF google/protobuf/.deps/message.Tpo -c google/protobuf/message.cc -o google/protobuf/message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/reflection_ops.lo -MD -MP -MF google/protobuf/.deps/reflection_ops.Tpo -c google/protobuf/reflection_ops.cc -o google/protobuf/reflection_ops.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/service.lo -MD -MP -MF google/protobuf/.deps/service.Tpo -c google/protobuf/service.cc -o google/protobuf/service.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/source_context.pb.lo -MD -MP -MF google/protobuf/.deps/source_context.pb.Tpo -c google/protobuf/source_context.pb.cc -o google/protobuf/source_context.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/struct.pb.lo -MD -MP -MF google/protobuf/.deps/struct.pb.Tpo -c google/protobuf/struct.pb.cc -o google/protobuf/struct.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/delimited_message_util.lo -MD -MP -MF google/protobuf/util/.deps/delimited_message_util.Tpo -c google/protobuf/util/delimited_message_util.cc -o google/protobuf/util/delimited_message_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/field_comparator.lo -MD -MP -MF google/protobuf/util/.deps/field_comparator.Tpo -c google/protobuf/util/field_comparator.cc -o google/protobuf/util/field_comparator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/field_mask_util.lo -MD -MP -MF google/protobuf/util/.deps/field_mask_util.Tpo -c google/protobuf/util/field_mask_util.cc -o google/protobuf/util/field_mask_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/datapiece.lo -MD -MP -MF google/protobuf/util/internal/.deps/datapiece.Tpo -c google/protobuf/util/internal/datapiece.cc -o google/protobuf/util/internal/datapiece.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/default_value_objectwriter.lo -MD -MP -MF google/protobuf/util/internal/.deps/default_value_objectwriter.Tpo -c google/protobuf/util/internal/default_value_objectwriter.cc -o google/protobuf/util/internal/default_value_objectwriter.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/error_listener.lo -MD -MP -MF google/protobuf/util/internal/.deps/error_listener.Tpo -c google/protobuf/util/internal/error_listener.cc -o google/protobuf/util/internal/error_listener.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/field_mask_utility.lo -MD -MP -MF google/protobuf/util/internal/.deps/field_mask_utility.Tpo -c google/protobuf/util/internal/field_mask_utility.cc -o google/protobuf/util/internal/field_mask_utility.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/json_escaping.lo -MD -MP -MF google/protobuf/util/internal/.deps/json_escaping.Tpo -c google/protobuf/util/internal/json_escaping.cc -o google/protobuf/util/internal/json_escaping.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/json_objectwriter.lo -MD -MP -MF google/protobuf/util/internal/.deps/json_objectwriter.Tpo -c google/protobuf/util/internal/json_objectwriter.cc -o google/protobuf/util/internal/json_objectwriter.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/json_stream_parser.lo -MD -MP -MF google/protobuf/util/internal/.deps/json_stream_parser.Tpo -c google/protobuf/util/internal/json_stream_parser.cc -o google/protobuf/util/internal/json_stream_parser.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/object_writer.lo -MD -MP -MF google/protobuf/util/internal/.deps/object_writer.Tpo -c google/protobuf/util/internal/object_writer.cc -o google/protobuf/util/internal/object_writer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/protostream_objectsource.lo -MD -MP -MF google/protobuf/util/internal/.deps/protostream_objectsource.Tpo -c google/protobuf/util/internal/protostream_objectsource.cc -o google/protobuf/util/internal/protostream_objectsource.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/protostream_objectwriter.lo -MD -MP -MF google/protobuf/util/internal/.deps/protostream_objectwriter.Tpo -c google/protobuf/util/internal/protostream_objectwriter.cc -o google/protobuf/util/internal/protostream_objectwriter.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/proto_writer.lo -MD -MP -MF google/protobuf/util/internal/.deps/proto_writer.Tpo -c google/protobuf/util/internal/proto_writer.cc -o google/protobuf/util/internal/proto_writer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/type_info.lo -MD -MP -MF google/protobuf/util/internal/.deps/type_info.Tpo -c google/protobuf/util/internal/type_info.cc -o google/protobuf/util/internal/type_info.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/type_info_test_helper.lo -MD -MP -MF google/protobuf/util/internal/.deps/type_info_test_helper.Tpo -c google/protobuf/util/internal/type_info_test_helper.cc -o google/protobuf/util/internal/type_info_test_helper.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/utility.lo -MD -MP -MF google/protobuf/util/internal/.deps/utility.Tpo -c google/protobuf/util/internal/utility.cc -o google/protobuf/util/internal/utility.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_enum.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_enum.Tpo -c google/protobuf/compiler/cpp/cpp_enum.cc -o google/protobuf/compiler/cpp/cpp_enum.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_enum_field.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_enum_field.Tpo -c google/protobuf/compiler/cpp/cpp_enum_field.cc -o google/protobuf/compiler/cpp/cpp_enum_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_extension.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_extension.Tpo -c google/protobuf/compiler/cpp/cpp_extension.cc -o google/protobuf/compiler/cpp/cpp_extension.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_field.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_field.Tpo -c google/protobuf/compiler/cpp/cpp_field.cc -o google/protobuf/compiler/cpp/cpp_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_file.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_file.Tpo -c google/protobuf/compiler/cpp/cpp_file.cc -o google/protobuf/compiler/cpp/cpp_file.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_generator.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_generator.Tpo -c google/protobuf/compiler/cpp/cpp_generator.cc -o google/protobuf/compiler/cpp/cpp_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_helpers.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_helpers.Tpo -c google/protobuf/compiler/cpp/cpp_helpers.cc -o google/protobuf/compiler/cpp/cpp_helpers.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_message.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_message.Tpo -c google/protobuf/compiler/cpp/cpp_message.cc -o google/protobuf/compiler/cpp/cpp_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_map_field.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_map_field.Tpo -c google/protobuf/compiler/cpp/cpp_map_field.cc -o google/protobuf/compiler/cpp/cpp_map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_message_field.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_message_field.Tpo -c google/protobuf/compiler/cpp/cpp_message_field.cc -o google/protobuf/compiler/cpp/cpp_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_padding_optimizer.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_padding_optimizer.Tpo -c google/protobuf/compiler/cpp/cpp_padding_optimizer.cc -o google/protobuf/compiler/cpp/cpp_padding_optimizer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_primitive_field.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_primitive_field.Tpo -c google/protobuf/compiler/cpp/cpp_primitive_field.cc -o google/protobuf/compiler/cpp/cpp_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_service.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_service.Tpo -c google/protobuf/compiler/cpp/cpp_service.cc -o google/protobuf/compiler/cpp/cpp_service.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/cpp/cpp_string_field.lo -MD -MP -MF google/protobuf/compiler/cpp/.deps/cpp_string_field.Tpo -c google/protobuf/compiler/cpp/cpp_string_field.cc -o google/protobuf/compiler/cpp/cpp_string_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_context.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_context.Tpo -c google/protobuf/compiler/java/java_context.cc -o google/protobuf/compiler/java/java_context.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_enum.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_enum.Tpo -c google/protobuf/compiler/java/java_enum.cc -o google/protobuf/compiler/java/java_enum.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_enum_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_enum_lite.Tpo -c google/protobuf/compiler/java/java_enum_lite.cc -o google/protobuf/compiler/java/java_enum_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_enum_field.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_enum_field.Tpo -c google/protobuf/compiler/java/java_enum_field.cc -o google/protobuf/compiler/java/java_enum_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_enum_field_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_enum_field_lite.Tpo -c google/protobuf/compiler/java/java_enum_field_lite.cc -o google/protobuf/compiler/java/java_enum_field_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_extension.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_extension.Tpo -c google/protobuf/compiler/java/java_extension.cc -o google/protobuf/compiler/java/java_extension.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_extension_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_extension_lite.Tpo -c google/protobuf/compiler/java/java_extension_lite.cc -o google/protobuf/compiler/java/java_extension_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_field.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_field.Tpo -c google/protobuf/compiler/java/java_field.cc -o google/protobuf/compiler/java/java_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_file.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_file.Tpo -c google/protobuf/compiler/java/java_file.cc -o google/protobuf/compiler/java/java_file.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_generator.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_generator.Tpo -c google/protobuf/compiler/java/java_generator.cc -o google/protobuf/compiler/java/java_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_generator_factory.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_generator_factory.Tpo -c google/protobuf/compiler/java/java_generator_factory.cc -o google/protobuf/compiler/java/java_generator_factory.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_helpers.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_helpers.Tpo -c google/protobuf/compiler/java/java_helpers.cc -o google/protobuf/compiler/java/java_helpers.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_lazy_message_field.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_lazy_message_field.Tpo -c google/protobuf/compiler/java/java_lazy_message_field.cc -o google/protobuf/compiler/java/java_lazy_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_lazy_message_field_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_lazy_message_field_lite.Tpo -c google/protobuf/compiler/java/java_lazy_message_field_lite.cc -o google/protobuf/compiler/java/java_lazy_message_field_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_map_field.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_map_field.Tpo -c google/protobuf/compiler/java/java_map_field.cc -o google/protobuf/compiler/java/java_map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_map_field_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_map_field_lite.Tpo -c google/protobuf/compiler/java/java_map_field_lite.cc -o google/protobuf/compiler/java/java_map_field_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_message.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_message.Tpo -c google/protobuf/compiler/java/java_message.cc -o google/protobuf/compiler/java/java_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_message_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_message_lite.Tpo -c google/protobuf/compiler/java/java_message_lite.cc -o google/protobuf/compiler/java/java_message_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_message_builder.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_message_builder.Tpo -c google/protobuf/compiler/java/java_message_builder.cc -o google/protobuf/compiler/java/java_message_builder.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_message_builder_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_message_builder_lite.Tpo -c google/protobuf/compiler/java/java_message_builder_lite.cc -o google/protobuf/compiler/java/java_message_builder_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_message_field.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_message_field.Tpo -c google/protobuf/compiler/java/java_message_field.cc -o google/protobuf/compiler/java/java_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_message_field_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_message_field_lite.Tpo -c google/protobuf/compiler/java/java_message_field_lite.cc -o google/protobuf/compiler/java/java_message_field_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_name_resolver.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_name_resolver.Tpo -c google/protobuf/compiler/java/java_name_resolver.cc -o google/protobuf/compiler/java/java_name_resolver.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_primitive_field.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_primitive_field.Tpo -c google/protobuf/compiler/java/java_primitive_field.cc -o google/protobuf/compiler/java/java_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_primitive_field_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_primitive_field_lite.Tpo -c google/protobuf/compiler/java/java_primitive_field_lite.cc -o google/protobuf/compiler/java/java_primitive_field_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_shared_code_generator.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_shared_code_generator.Tpo -c google/protobuf/compiler/java/java_shared_code_generator.cc -o google/protobuf/compiler/java/java_shared_code_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_service.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_service.Tpo -c google/protobuf/compiler/java/java_service.cc -o google/protobuf/compiler/java/java_service.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_string_field.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_string_field.Tpo -c google/protobuf/compiler/java/java_string_field.cc -o google/protobuf/compiler/java/java_string_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_string_field_lite.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_string_field_lite.Tpo -c google/protobuf/compiler/java/java_string_field_lite.cc -o google/protobuf/compiler/java/java_string_field_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/java/java_doc_comment.lo -MD -MP -MF google/protobuf/compiler/java/.deps/java_doc_comment.Tpo -c google/protobuf/compiler/java/java_doc_comment.cc -o google/protobuf/compiler/java/java_doc_comment.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/js/js_generator.lo -MD -MP -MF google/protobuf/compiler/js/.deps/js_generator.Tpo -c google/protobuf/compiler/js/js_generator.cc -o google/protobuf/compiler/js/js_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_enum.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_enum.Tpo -c google/protobuf/compiler/javanano/javanano_enum.cc -o google/protobuf/compiler/javanano/javanano_enum.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_enum_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_enum_field.Tpo -c google/protobuf/compiler/javanano/javanano_enum_field.cc -o google/protobuf/compiler/javanano/javanano_enum_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_extension.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_extension.Tpo -c google/protobuf/compiler/javanano/javanano_extension.cc -o google/protobuf/compiler/javanano/javanano_extension.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_field.Tpo -c google/protobuf/compiler/javanano/javanano_field.cc -o google/protobuf/compiler/javanano/javanano_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_file.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_file.Tpo -c google/protobuf/compiler/javanano/javanano_file.cc -o google/protobuf/compiler/javanano/javanano_file.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_generator.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_generator.Tpo -c google/protobuf/compiler/javanano/javanano_generator.cc -o google/protobuf/compiler/javanano/javanano_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_helpers.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_helpers.Tpo -c google/protobuf/compiler/javanano/javanano_helpers.cc -o google/protobuf/compiler/javanano/javanano_helpers.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_map_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_map_field.Tpo -c google/protobuf/compiler/javanano/javanano_map_field.cc -o google/protobuf/compiler/javanano/javanano_map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_message.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_message.Tpo -c google/protobuf/compiler/javanano/javanano_message.cc -o google/protobuf/compiler/javanano/javanano_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_message_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_message_field.Tpo -c google/protobuf/compiler/javanano/javanano_message_field.cc -o google/protobuf/compiler/javanano/javanano_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_primitive_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_primitive_field.Tpo -c google/protobuf/compiler/javanano/javanano_primitive_field.cc -o google/protobuf/compiler/javanano/javanano_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_enum.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_enum.Tpo -c google/protobuf/compiler/objectivec/objectivec_enum.cc -o google/protobuf/compiler/objectivec/objectivec_enum.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_enum_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_enum_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_enum_field.cc -o google/protobuf/compiler/objectivec/objectivec_enum_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_extension.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_extension.Tpo -c google/protobuf/compiler/objectivec/objectivec_extension.cc -o google/protobuf/compiler/objectivec/objectivec_extension.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_field.cc -o google/protobuf/compiler/objectivec/objectivec_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_file.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_file.Tpo -c google/protobuf/compiler/objectivec/objectivec_file.cc -o google/protobuf/compiler/objectivec/objectivec_file.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_generator.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_generator.Tpo -c google/protobuf/compiler/objectivec/objectivec_generator.cc -o google/protobuf/compiler/objectivec/objectivec_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_helpers.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_helpers.Tpo -c google/protobuf/compiler/objectivec/objectivec_helpers.cc -o google/protobuf/compiler/objectivec/objectivec_helpers.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_map_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_map_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_map_field.cc -o google/protobuf/compiler/objectivec/objectivec_map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_message.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_message.Tpo -c google/protobuf/compiler/objectivec/objectivec_message.cc -o google/protobuf/compiler/objectivec/objectivec_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_message_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_message_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_message_field.cc -o google/protobuf/compiler/objectivec/objectivec_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_oneof.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_oneof.Tpo -c google/protobuf/compiler/objectivec/objectivec_oneof.cc -o google/protobuf/compiler/objectivec/objectivec_oneof.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_primitive_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_primitive_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_primitive_field.cc -o google/protobuf/compiler/objectivec/objectivec_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/php/php_generator.lo -MD -MP -MF google/protobuf/compiler/php/.deps/php_generator.Tpo -c google/protobuf/compiler/php/php_generator.cc -o google/protobuf/compiler/php/php_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/python/python_generator.lo -MD -MP -MF google/protobuf/compiler/python/.deps/python_generator.Tpo -c google/protobuf/compiler/python/python_generator.cc -o google/protobuf/compiler/python/python_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/ruby/ruby_generator.lo -MD -MP -MF google/protobuf/compiler/ruby/.deps/ruby_generator.Tpo -c google/protobuf/compiler/ruby/ruby_generator.cc -o google/protobuf/compiler/ruby/ruby_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_doc_comment.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_doc_comment.Tpo -c google/protobuf/compiler/csharp/csharp_doc_comment.cc -o google/protobuf/compiler/csharp/csharp_doc_comment.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_enum.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_enum.Tpo -c google/protobuf/compiler/csharp/csharp_enum.cc -o google/protobuf/compiler/csharp/csharp_enum.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_enum_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_enum_field.Tpo -c google/protobuf/compiler/csharp/csharp_enum_field.cc -o google/protobuf/compiler/csharp/csharp_enum_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_field_base.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_field_base.Tpo -c google/protobuf/compiler/csharp/csharp_field_base.cc -o google/protobuf/compiler/csharp/csharp_field_base.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_generator.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_generator.Tpo -c google/protobuf/compiler/csharp/csharp_generator.cc -o google/protobuf/compiler/csharp/csharp_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_helpers.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_helpers.Tpo -c google/protobuf/compiler/csharp/csharp_helpers.cc -o google/protobuf/compiler/csharp/csharp_helpers.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_map_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_map_field.Tpo -c google/protobuf/compiler/csharp/csharp_map_field.cc -o google/protobuf/compiler/csharp/csharp_map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_message.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_message.Tpo -c google/protobuf/compiler/csharp/csharp_message.cc -o google/protobuf/compiler/csharp/csharp_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_message_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_message_field.Tpo -c google/protobuf/compiler/csharp/csharp_message_field.cc -o google/protobuf/compiler/csharp/csharp_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_primitive_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_primitive_field.Tpo -c google/protobuf/compiler/csharp/csharp_primitive_field.cc -o google/protobuf/compiler/csharp/csharp_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_reflection_class.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_reflection_class.Tpo -c google/protobuf/compiler/csharp/csharp_reflection_class.cc -o google/protobuf/compiler/csharp/csharp_reflection_class.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_repeated_enum_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_repeated_enum_field.Tpo -c google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc -o google/protobuf/compiler/csharp/csharp_repeated_enum_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_repeated_message_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_repeated_message_field.Tpo -c google/protobuf/compiler/csharp/csharp_repeated_message_field.cc -o google/protobuf/compiler/csharp/csharp_repeated_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_repeated_primitive_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_repeated_primitive_field.Tpo -c google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc -o google/protobuf/compiler/csharp/csharp_repeated_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_source_generator_base.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_source_generator_base.Tpo -c google/protobuf/compiler/csharp/csharp_source_generator_base.cc -o google/protobuf/compiler/csharp/csharp_source_generator_base.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_wrapper_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_wrapper_field.Tpo -c google/protobuf/compiler/csharp/csharp_wrapper_field.cc -o google/protobuf/compiler/csharp/csharp_wrapper_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/js/well_known_types_embed.lo -MD -MP -MF google/protobuf/compiler/js/.deps/well_known_types_embed.Tpo -c google/protobuf/compiler/js/well_known_types_embed.cc -o google/protobuf/compiler/js/well_known_types_embed.o
- libtool: link: ar cr .libs/libprotobuf.a  google/protobuf/stubs/atomicops_internals_x86_gcc.o google/protobuf/stubs/atomicops_internals_x86_msvc.o google/protobuf/stubs/bytestream.o google/protobuf/stubs/common.o google/protobuf/stubs/int128.o google/protobuf/stubs/io_win32.o google/protobuf/stubs/once.o google/protobuf/stubs/status.o google/protobuf/stubs/statusor.o google/protobuf/stubs/stringpiece.o google/protobuf/stubs/stringprintf.o google/protobuf/stubs/structurally_valid.o google/protobuf/stubs/strutil.o google/protobuf/stubs/time.o google/protobuf/arena.o google/protobuf/arenastring.o google/protobuf/extension_set.o google/protobuf/generated_message_util.o google/protobuf/generated_message_table_driven_lite.o google/protobuf/message_lite.o google/protobuf/repeated_field.o google/protobuf/wire_format_lite.o google/protobuf/io/coded_stream.o google/protobuf/io/zero_copy_stream.o google/protobuf/io/zero_copy_stream_impl_lite.o google/protobuf/any.pb.o google/protobuf/api.pb.o google/protobuf/stubs/mathlimits.o google/protobuf/any.o google/protobuf/descriptor.o google/protobuf/descriptor_database.o google/protobuf/descriptor.pb.o google/protobuf/duration.pb.o google/protobuf/dynamic_message.o google/protobuf/empty.pb.o google/protobuf/extension_set_heavy.o google/protobuf/field_mask.pb.o google/protobuf/generated_message_reflection.o google/protobuf/generated_message_table_driven.o google/protobuf/map_field.o google/protobuf/message.o google/protobuf/reflection_ops.o google/protobuf/service.o google/protobuf/source_context.pb.o google/protobuf/struct.pb.o google/protobuf/stubs/substitute.o google/protobuf/text_format.o google/protobuf/timestamp.pb.o google/protobuf/type.pb.o google/protobuf/unknown_field_set.o google/protobuf/wire_format.o google/protobuf/wrappers.pb.o google/protobuf/io/gzip_stream.o google/protobuf/io/printer.o google/protobuf/io/strtod.o google/protobuf/io/tokenizer.o google/protobuf/io/zero_copy_stream_impl.o google/protobuf/compiler/importer.o google/protobuf/compiler/parser.o google/protobuf/util/delimited_message_util.o google/protobuf/util/field_comparator.o google/protobuf/util/field_mask_util.o google/protobuf/util/internal/datapiece.o google/protobuf/util/internal/default_value_objectwriter.o google/protobuf/util/internal/error_listener.o google/protobuf/util/internal/field_mask_utility.o google/protobuf/util/internal/json_escaping.o google/protobuf/util/internal/json_objectwriter.o google/protobuf/util/internal/json_stream_parser.o google/protobuf/util/internal/object_writer.o google/protobuf/util/internal/protostream_objectsource.o google/protobuf/util/internal/protostream_objectwriter.o google/protobuf/util/internal/proto_writer.o google/protobuf/util/internal/type_info.o google/protobuf/util/internal/type_info_test_helper.o google/protobuf/util/internal/utility.o google/protobuf/util/json_util.o google/protobuf/util/message_differencer.o google/protobuf/util/time_util.o google/protobuf/util/type_resolver_util.o
- libtool: link: ranlib .libs/libprotobuf.a
- libtool: link: ( cd ".libs" && rm -f "libprotobuf.la" && ln -s "../libprotobuf.la" "libprotobuf.la" )
- libtool: link: ar cr .libs/libprotoc.a  google/protobuf/compiler/code_generator.o google/protobuf/compiler/command_line_interface.o google/protobuf/compiler/plugin.o google/protobuf/compiler/plugin.pb.o google/protobuf/compiler/subprocess.o google/protobuf/compiler/zip_writer.o google/protobuf/compiler/cpp/cpp_enum.o google/protobuf/compiler/cpp/cpp_enum_field.o google/protobuf/compiler/cpp/cpp_extension.o google/protobuf/compiler/cpp/cpp_field.o google/protobuf/compiler/cpp/cpp_file.o google/protobuf/compiler/cpp/cpp_generator.o google/protobuf/compiler/cpp/cpp_helpers.o google/protobuf/compiler/cpp/cpp_map_field.o google/protobuf/compiler/cpp/cpp_message.o google/protobuf/compiler/cpp/cpp_message_field.o google/protobuf/compiler/cpp/cpp_padding_optimizer.o google/protobuf/compiler/cpp/cpp_primitive_field.o google/protobuf/compiler/cpp/cpp_service.o google/protobuf/compiler/cpp/cpp_string_field.o google/protobuf/compiler/java/java_context.o google/protobuf/compiler/java/java_enum.o google/protobuf/compiler/java/java_enum_lite.o google/protobuf/compiler/java/java_enum_field.o google/protobuf/compiler/java/java_enum_field_lite.o google/protobuf/compiler/java/java_extension.o google/protobuf/compiler/java/java_extension_lite.o google/protobuf/compiler/java/java_field.o google/protobuf/compiler/java/java_file.o google/protobuf/compiler/java/java_generator.o google/protobuf/compiler/java/java_generator_factory.o google/protobuf/compiler/java/java_helpers.o google/protobuf/compiler/java/java_lazy_message_field.o google/protobuf/compiler/java/java_lazy_message_field_lite.o google/protobuf/compiler/java/java_map_field.o google/protobuf/compiler/java/java_map_field_lite.o google/protobuf/compiler/java/java_message.o google/protobuf/compiler/java/java_message_lite.o google/protobuf/compiler/java/java_message_builder.o google/protobuf/compiler/java/java_message_builder_lite.o google/protobuf/compiler/java/java_message_field.o google/protobuf/compiler/java/java_message_field_lite.o google/protobuf/compiler/java/java_name_resolver.o google/protobuf/compiler/java/java_primitive_field.o google/protobuf/compiler/java/java_primitive_field_lite.o google/protobuf/compiler/java/java_shared_code_generator.o google/protobuf/compiler/java/java_service.o google/protobuf/compiler/java/java_string_field.o google/protobuf/compiler/java/java_string_field_lite.o google/protobuf/compiler/java/java_doc_comment.o google/protobuf/compiler/js/js_generator.o google/protobuf/compiler/js/well_known_types_embed.o google/protobuf/compiler/javanano/javanano_enum.o google/protobuf/compiler/javanano/javanano_enum_field.o google/protobuf/compiler/javanano/javanano_extension.o google/protobuf/compiler/javanano/javanano_field.o google/protobuf/compiler/javanano/javanano_file.o google/protobuf/compiler/javanano/javanano_generator.o google/protobuf/compiler/javanano/javanano_helpers.o google/protobuf/compiler/javanano/javanano_map_field.o google/protobuf/compiler/javanano/javanano_message.o google/protobuf/compiler/javanano/javanano_message_field.o google/protobuf/compiler/javanano/javanano_primitive_field.o google/protobuf/compiler/objectivec/objectivec_enum.o google/protobuf/compiler/objectivec/objectivec_enum_field.o google/protobuf/compiler/objectivec/objectivec_extension.o google/protobuf/compiler/objectivec/objectivec_field.o google/protobuf/compiler/objectivec/objectivec_file.o google/protobuf/compiler/objectivec/objectivec_generator.o google/protobuf/compiler/objectivec/objectivec_helpers.o google/protobuf/compiler/objectivec/objectivec_map_field.o google/protobuf/compiler/objectivec/objectivec_message.o google/protobuf/compiler/objectivec/objectivec_message_field.o google/protobuf/compiler/objectivec/objectivec_oneof.o google/protobuf/compiler/objectivec/objectivec_primitive_field.o google/protobuf/compiler/php/php_generator.o google/protobuf/compiler/python/python_generator.o google/protobuf/compiler/ruby/ruby_generator.o google/protobuf/compiler/csharp/csharp_doc_comment.o google/protobuf/compiler/csharp/csharp_enum.o google/protobuf/compiler/csharp/csharp_enum_field.o google/protobuf/compiler/csharp/csharp_field_base.o google/protobuf/compiler/csharp/csharp_generator.o google/protobuf/compiler/csharp/csharp_helpers.o google/protobuf/compiler/csharp/csharp_map_field.o google/protobuf/compiler/csharp/csharp_message.o google/protobuf/compiler/csharp/csharp_message_field.o google/protobuf/compiler/csharp/csharp_primitive_field.o google/protobuf/compiler/csharp/csharp_reflection_class.o google/protobuf/compiler/csharp/csharp_repeated_enum_field.o google/protobuf/compiler/csharp/csharp_repeated_message_field.o google/protobuf/compiler/csharp/csharp_repeated_primitive_field.o google/protobuf/compiler/csharp/csharp_source_generator_base.o google/protobuf/compiler/csharp/csharp_wrapper_field.o
- libtool: link: ranlib .libs/libprotoc.a
- libtool: link: ( cd ".libs" && rm -f "libprotoc.la" && ln -s "../libprotoc.la" "libprotoc.la" )
- libtool: link: g++ -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -o protoc google/protobuf/compiler/main.o  ./.libs/libprotobuf.a ./.libs/libprotoc.a /home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/src/.libs/libprotobuf.a
- libtool: link: ar cr .libs/libprotobuf-lite.a  google/protobuf/stubs/atomicops_internals_x86_gcc.o google/protobuf/stubs/atomicops_internals_x86_msvc.o google/protobuf/stubs/bytestream.o google/protobuf/stubs/common.o google/protobuf/stubs/int128.o google/protobuf/stubs/io_win32.o google/protobuf/stubs/once.o google/protobuf/stubs/status.o google/protobuf/stubs/statusor.o google/protobuf/stubs/stringpiece.o google/protobuf/stubs/stringprintf.o google/protobuf/stubs/structurally_valid.o google/protobuf/stubs/strutil.o google/protobuf/stubs/time.o google/protobuf/arena.o google/protobuf/arenastring.o google/protobuf/extension_set.o google/protobuf/generated_message_util.o google/protobuf/generated_message_table_driven_lite.o google/protobuf/message_lite.o google/protobuf/repeated_field.o google/protobuf/wire_format_lite.o google/protobuf/io/coded_stream.o google/protobuf/io/zero_copy_stream.o google/protobuf/io/zero_copy_stream_impl_lite.o
- libtool: link: ranlib .libs/libprotobuf-lite.a
- libtool: link: ( cd ".libs" && rm -f "libprotobuf-lite.la" && ln -s "../libprotobuf-lite.la" "libprotobuf-lite.la" )
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/timestamp.pb.h:25,
-                  from google/protobuf/timestamp.pb.cc:4:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/timestamp.pb.h:7:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/type.pb.h:25,
-                  from google/protobuf/type.pb.cc:4:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/type.pb.h:7:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite.h:49,
-                  from ./google/protobuf/wire_format.h:46,
-                  from google/protobuf/unknown_field_set.cc:43:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/unknown_field_set.h:42,
-                  from google/protobuf/unknown_field_set.cc:35:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/text_format.cc:52:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/algorithm:60,
-                  from google/protobuf/text_format.cc:35:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/wrappers.pb.h:25,
-                  from google/protobuf/wrappers.pb.cc:4:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/wrappers.pb.h:7:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite.h:49,
-                  from ./google/protobuf/wire_format.h:46,
-                  from google/protobuf/wire_format.cc:39:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/deque:60,
-                  from /usr/include/c++/12/stack:60,
-                  from google/protobuf/wire_format.cc:35:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from ./google/protobuf/compiler/parser.h:44,
-                  from ./google/protobuf/compiler/importer.h:46,
-                  from google/protobuf/compiler/importer.cc:52:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/algorithm:60,
-                  from google/protobuf/compiler/importer.cc:46:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from ./google/protobuf/compiler/parser.h:44,
-                  from google/protobuf/compiler/parser.cc:42:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/algorithm:60,
-                  from ./google/protobuf/stubs/common.h:38,
-                  from ./google/protobuf/stubs/hash.h:39,
-                  from google/protobuf/compiler/parser.cc:38:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/type.pb.h:25,
-                  from google/protobuf/util/type_resolver_util.cc:33:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/util/type_resolver_util.h:36,
-                  from google/protobuf/util/type_resolver_util.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/duration.pb.h:25,
-                  from ./google/protobuf/util/time_util.h:45,
-                  from google/protobuf/util/time_util.cc:31:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/ostream:38,
-                  from ./google/protobuf/util/time_util.h:37:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/util/message_differencer.cc:56:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/bits/stl_tree.h:63,
-                  from /usr/include/c++/12/map:60,
-                  from ./google/protobuf/util/message_differencer.h:45,
-                  from google/protobuf/util/message_differencer.cc:39:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/type.pb.h:25,
-                  from ./google/protobuf/util/internal/type_info.h:35,
-                  from ./google/protobuf/util/internal/default_value_objectwriter.h:43,
-                  from google/protobuf/util/json_util.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/message.h:114,
-                  from ./google/protobuf/util/json_util.h:36,
-                  from google/protobuf/util/json_util.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
- ...TRUNCATED BY DUNE...
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from ./google/protobuf/compiler/csharp/csharp_helpers.h:40,
-                  from google/protobuf/compiler/csharp/csharp_helpers.cc:40:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/algorithm:60,
-                  from google/protobuf/compiler/csharp/csharp_helpers.cc:35:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_message.cc:38:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_message.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_message_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_message_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_primitive_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_primitive_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_reflection_class.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_reflection_class.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_repeated_message_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_repeated_message_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_source_generator_base.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_source_generator_base.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_wrapper_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_wrapper_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- (cd _build/default/lib/deps/protobuf && /usr/bin/make clean)
- Making clean in .
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf'
- rm -rf .libs _libs
- Making clean in gmock
- make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock'
- Making clean in gtest
- make[3]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock/gtest'
-  rm -f samples/sample1_unittest samples/sample10_unittest test/gtest_all_test
- test -z "core" || rm -f core
- test -z "lib/libgtest.la lib/libgtest_main.la" || rm -f lib/libgtest.la lib/libgtest_main.la
- rm -f lib/so_locations
- rm -rf .libs _libs
- rm -rf lib/.libs lib/_libs
- rm -rf samples/.libs samples/_libs
- rm -rf src/.libs src/_libs
- rm -rf test/.libs test/_libs
- test -z "samples/libsamples.la" || rm -f samples/libsamples.la
- rm -f samples/so_locations
- rm -f *.o
- rm -f fused-src/gtest/*.o
- rm -f samples/*.o
- rm -f samples/*.lo
- rm -f src/*.o
- rm -f src/*.lo
- rm -f test/*.o
- test -z "samples/sample1_unittest.log samples/sample10_unittest.log test/gtest_all_test.log" || rm -f samples/sample1_unittest.log samples/sample10_unittest.log test/gtest_all_test.log
- test -z "samples/sample1_unittest.trs samples/sample10_unittest.trs test/gtest_all_test.trs" || rm -f samples/sample1_unittest.trs samples/sample10_unittest.trs test/gtest_all_test.trs
- test -z "test-suite.log" || rm -f test-suite.log
- rm -f *.lo
- make[3]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock/gtest'
- make[3]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock'
-  rm -f test/gmock-spec-builders_test test/gmock_link_test
- test -z "core" || rm -f core
- test -z "lib/libgmock.la lib/libgmock_main.la" || rm -f lib/libgmock.la lib/libgmock_main.la
- rm -f lib/so_locations
- rm -rf .libs _libs
- rm -rf lib/.libs lib/_libs
- rm -rf src/.libs src/_libs
- rm -rf test/.libs test/_libs
- rm -f *.o
- rm -f fused-src/*.o
- rm -f src/*.o
- rm -f src/*.lo
- rm -f test/*.o
- test -z "test/gmock-spec-builders_test.log test/gmock_link_test.log" || rm -f test/gmock-spec-builders_test.log test/gmock_link_test.log
- test -z "test/gmock-spec-builders_test.trs test/gmock_link_test.trs" || rm -f test/gmock-spec-builders_test.trs test/gmock_link_test.trs
- test -z "test-suite.log" || rm -f test-suite.log
- rm -f *.lo
- make[3]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock'
- make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock'
- rm -f *.lo
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf'
- Making clean in src
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/src'
-  rm -f protoc
-  rm -f protoc protobuf-test protobuf-lazy-descriptor-test protobuf-lite-test test_plugin protobuf-lite-arena-test no-warning-test
- test -z "google/protobuf/map_lite_unittest.pb.cc google/protobuf/map_lite_unittest.pb.h google/protobuf/unittest_lite.pb.cc google/protobuf/unittest_lite.pb.h google/protobuf/unittest_no_arena_lite.pb.cc google/protobuf/unittest_no_arena_lite.pb.h google/protobuf/unittest_import_lite.pb.cc google/protobuf/unittest_import_lite.pb.h google/protobuf/unittest_import_public_lite.pb.cc google/protobuf/unittest_import_public_lite.pb.h google/protobuf/any_test.pb.cc google/protobuf/any_test.pb.h google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.cc google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.cc google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.h google/protobuf/map_proto2_unittest.pb.cc google/protobuf/map_proto2_unittest.pb.h google/protobuf/map_unittest.pb.cc google/protobuf/map_unittest.pb.h google/protobuf/unittest_arena.pb.cc google/protobuf/unittest_arena.pb.h google/protobuf/unittest_custom_options.pb.cc google/protobuf/unittest_custom_options.pb.h google/protobuf/unittest_drop_unknown_fields.pb.cc google/protobuf/unittest_drop_unknown_fields.pb.h google/protobuf/unittest_embed_optimize_for.pb.cc google/protobuf/unittest_embed_optimize_for.pb.h google/protobuf/unittest_empty.pb.cc google/protobuf/unittest_empty.pb.h google/protobuf/unittest_enormous_descriptor.pb.cc google/protobuf/unittest_enormous_descriptor.pb.h google/protobuf/unittest_import.pb.cc google/protobuf/unittest_import.pb.h google/protobuf/unittest_import_public.pb.cc google/protobuf/unittest_import_public.pb.h google/protobuf/unittest_lazy_dependencies.pb.cc google/protobuf/unittest_lazy_dependencies.pb.h google/protobuf/unittest_lazy_dependencies_custom_option.pb.cc google/protobuf/unittest_lazy_dependencies_custom_option.pb.h google/protobuf/unittest_lazy_dependencies_enum.pb.cc google/protobuf/unittest_lazy_dependencies_enum.pb.h google/protobuf/unittest_lite_imports_nonlite.pb.cc google/protobuf/unittest_lite_imports_nonlite.pb.h google/protobuf/unittest_mset.pb.cc google/protobuf/unittest_mset.pb.h google/protobuf/unittest_mset_wire_format.pb.cc google/protobuf/unittest_mset_wire_format.pb.h google/protobuf/unittest_no_arena_import.pb.cc google/protobuf/unittest_no_arena_import.pb.h google/protobuf/unittest_no_arena.pb.cc google/protobuf/unittest_no_arena.pb.h google/protobuf/unittest_no_field_presence.pb.cc google/protobuf/unittest_no_field_presence.pb.h google/protobuf/unittest_no_generic_services.pb.cc google/protobuf/unittest_no_generic_services.pb.h google/protobuf/unittest_optimize_for.pb.cc google/protobuf/unittest_optimize_for.pb.h google/protobuf/unittest.pb.cc google/protobuf/unittest.pb.h google/protobuf/unittest_preserve_unknown_enum2.pb.cc google/protobuf/unittest_preserve_unknown_enum2.pb.h google/protobuf/unittest_preserve_unknown_enum.pb.cc google/protobuf/unittest_preserve_unknown_enum.pb.h google/protobuf/unittest_proto3_arena.pb.cc google/protobuf/unittest_proto3_arena.pb.h google/protobuf/unittest_proto3_arena_lite.pb.cc google/protobuf/unittest_proto3_arena_lite.pb.h google/protobuf/unittest_proto3_lite.pb.cc google/protobuf/unittest_proto3_lite.pb.h google/protobuf/unittest_well_known_types.pb.cc google/protobuf/unittest_well_known_types.pb.h google/protobuf/util/internal/testdata/anys.pb.cc google/protobuf/util/internal/testdata/anys.pb.h google/protobuf/util/internal/testdata/books.pb.cc google/protobuf/util/internal/testdata/books.pb.h google/protobuf/util/internal/testdata/default_value.pb.cc google/protobuf/util/internal/testdata/default_value.pb.h google/protobuf/util/internal/testdata/default_value_test.pb.cc google/protobuf/util/internal/testdata/default_value_test.pb.h google/protobuf/util/internal/testdata/field_mask.pb.cc google/protobuf/util/internal/testdata/field_mask.pb.h google/protobuf/util/internal/testdata/maps.pb.cc google/protobuf/util/internal/testdata/maps.pb.h google/protobuf/util/internal/testdata/oneofs.pb.cc google/protobuf/util/internal/testdata/oneofs.pb.h google/protobuf/util/internal/testdata/proto3.pb.cc google/protobuf/util/internal/testdata/proto3.pb.h google/protobuf/util/internal/testdata/struct.pb.cc google/protobuf/util/internal/testdata/struct.pb.h google/protobuf/util/internal/testdata/timestamp_duration.pb.cc google/protobuf/util/internal/testdata/timestamp_duration.pb.h google/protobuf/util/internal/testdata/wrappers.pb.cc google/protobuf/util/internal/testdata/wrappers.pb.h google/protobuf/util/json_format_proto3.pb.cc google/protobuf/util/json_format_proto3.pb.h google/protobuf/util/message_differencer_unittest.pb.cc google/protobuf/util/message_differencer_unittest.pb.h unittest_proto_middleman testzip.jar testzip.list testzip.proto testzip.zip no_warning_test.cc google/protobuf/compiler/js/well_known_types_embed.cc js_embed" || rm -f google/protobuf/map_lite_unittest.pb.cc google/protobuf/map_lite_unittest.pb.h google/protobuf/unittest_lite.pb.cc google/protobuf/unittest_lite.pb.h google/protobuf/unittest_no_arena_lite.pb.cc google/protobuf/unittest_no_arena_lite.pb.h google/protobuf/unittest_import_lite.pb.cc google/protobuf/unittest_import_lite.pb.h google/protobuf/unittest_import_public_lite.pb.cc google/protobuf/unittest_import_public_lite.pb.h google/protobuf/any_test.pb.cc google/protobuf/any_test.pb.h google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.cc google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.cc google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.h google/protobuf/map_proto2_unittest.pb.cc google/protobuf/map_proto2_unittest.pb.h google/protobuf/map_unittest.pb.cc google/protobuf/map_unittest.pb.h google/protobuf/unittest_arena.pb.cc google/protobuf/unittest_arena.pb.h google/protobuf/unittest_custom_options.pb.cc google/protobuf/unittest_custom_options.pb.h google/protobuf/unittest_drop_unknown_fields.pb.cc google/protobuf/unittest_drop_unknown_fields.pb.h google/protobuf/unittest_embed_optimize_for.pb.cc google/protobuf/unittest_embed_optimize_for.pb.h google/protobuf/unittest_empty.pb.cc google/protobuf/unittest_empty.pb.h google/protobuf/unittest_enormous_descriptor.pb.cc google/protobuf/unittest_enormous_descriptor.pb.h google/protobuf/unittest_import.pb.cc google/protobuf/unittest_import.pb.h google/protobuf/unittest_import_public.pb.cc google/protobuf/unittest_import_public.pb.h google/protobuf/unittest_lazy_dependencies.pb.cc google/protobuf/unittest_lazy_dependencies.pb.h google/protobuf/unittest_lazy_dependencies_custom_option.pb.cc google/protobuf/unittest_lazy_dependencies_custom_option.pb.h google/protobuf/unittest_lazy_dependencies_enum.pb.cc google/protobuf/unittest_lazy_dependencies_enum.pb.h google/protobuf/unittest_lite_imports_nonlite.pb.cc google/protobuf/unittest_lite_imports_nonlite.pb.h google/protobuf/unittest_mset.pb.cc google/protobuf/unittest_mset.pb.h google/protobuf/unittest_mset_wire_format.pb.cc google/protobuf/unittest_mset_wire_format.pb.h google/protobuf/unittest_no_arena_import.pb.cc google/protobuf/unittest_no_arena_import.pb.h google/protobuf/unittest_no_arena.pb.cc google/protobuf/unittest_no_arena.pb.h google/protobuf/unittest_no_field_presence.pb.cc google/protobuf/unittest_no_field_presence.pb.h google/protobuf/unittest_no_generic_services.pb.cc google/protobuf/unittest_no_generic_services.pb.h google/protobuf/unittest_optimize_for.pb.cc google/protobuf/unittest_optimize_for.pb.h google/protobuf/unittest.pb.cc google/protobuf/unittest.pb.h google/protobuf/unittest_preserve_unknown_enum2.pb.cc google/protobuf/unittest_preserve_unknown_enum2.pb.h google/protobuf/unittest_preserve_unknown_enum.pb.cc google/protobuf/unittest_preserve_unknown_enum.pb.h google/protobuf/unittest_proto3_arena.pb.cc google/protobuf/unittest_proto3_arena.pb.h google/protobuf/unittest_proto3_arena_lite.pb.cc google/protobuf/unittest_proto3_arena_lite.pb.h google/protobuf/unittest_proto3_lite.pb.cc google/protobuf/unittest_proto3_lite.pb.h google/protobuf/unittest_well_known_types.pb.cc google/protobuf/unittest_well_known_types.pb.h google/protobuf/util/internal/testdata/anys.pb.cc google/protobuf/util/internal/testdata/anys.pb.h google/protobuf/util/internal/testdata/books.pb.cc google/protobuf/util/internal/testdata/books.pb.h google/protobuf/util/internal/testdata/default_value.pb.cc google/protobuf/util/internal/testdata/default_value.pb.h google/protobuf/util/internal/testdata/default_value_test.pb.cc google/protobuf/util/internal/testdata/default_value_test.pb.h google/protobuf/util/internal/testdata/field_mask.pb.cc google/protobuf/util/internal/testdata/field_mask.pb.h google/protobuf/util/internal/testdata/maps.pb.cc google/protobuf/util/internal/testdata/maps.pb.h google/protobuf/util/internal/testdata/oneofs.pb.cc google/protobuf/util/internal/testdata/oneofs.pb.h google/protobuf/util/internal/testdata/proto3.pb.cc google/protobuf/util/internal/testdata/proto3.pb.h google/protobuf/util/internal/testdata/struct.pb.cc google/protobuf/util/internal/testdata/struct.pb.h google/protobuf/util/internal/testdata/timestamp_duration.pb.cc google/protobuf/util/internal/testdata/timestamp_duration.pb.h google/protobuf/util/internal/testdata/wrappers.pb.cc google/protobuf/util/internal/testdata/wrappers.pb.h google/protobuf/util/json_format_proto3.pb.cc google/protobuf/util/json_format_proto3.pb.h google/protobuf/util/message_differencer_unittest.pb.cc google/protobuf/util/message_differencer_unittest.pb.h unittest_proto_middleman testzip.jar testzip.list testzip.proto testzip.zip no_warning_test.cc google/protobuf/compiler/js/well_known_types_embed.cc js_embed
- test -z "libprotobuf-lite.la libprotobuf.la libprotoc.la" || rm -f libprotobuf-lite.la libprotobuf.la libprotoc.la
- rm -f ./so_locations
- rm -rf .libs _libs
- rm -rf google/protobuf/.libs google/protobuf/_libs
- rm -rf google/protobuf/compiler/.libs google/protobuf/compiler/_libs
- rm -rf google/protobuf/compiler/cpp/.libs google/protobuf/compiler/cpp/_libs
- rm -rf google/protobuf/compiler/csharp/.libs google/protobuf/compiler/csharp/_libs
- rm -rf google/protobuf/compiler/java/.libs google/protobuf/compiler/java/_libs
- rm -rf google/protobuf/compiler/javanano/.libs google/protobuf/compiler/javanano/_libs
- rm -rf google/protobuf/compiler/js/.libs google/protobuf/compiler/js/_libs
- rm -rf google/protobuf/compiler/objectivec/.libs google/protobuf/compiler/objectivec/_libs
- rm -rf google/protobuf/compiler/php/.libs google/protobuf/compiler/php/_libs
- rm -rf google/protobuf/compiler/python/.libs google/protobuf/compiler/python/_libs
- rm -rf google/protobuf/compiler/ruby/.libs google/protobuf/compiler/ruby/_libs
- rm -rf google/protobuf/io/.libs google/protobuf/io/_libs
- rm -rf google/protobuf/stubs/.libs google/protobuf/stubs/_libs
- rm -rf google/protobuf/util/.libs google/protobuf/util/_libs
- rm -rf google/protobuf/util/internal/.libs google/protobuf/util/internal/_libs
- rm -f *.loT
- rm -f *.o
- rm -f google/protobuf/*.o
- rm -f google/protobuf/*.lo
- rm -f google/protobuf/compiler/*.o
- rm -f google/protobuf/compiler/*.lo
- rm -f google/protobuf/compiler/cpp/*.o
- rm -f google/protobuf/compiler/cpp/*.lo
- rm -f google/protobuf/compiler/csharp/*.o
- rm -f google/protobuf/compiler/csharp/*.lo
- rm -f google/protobuf/compiler/java/*.o
- rm -f google/protobuf/compiler/java/*.lo
- rm -f google/protobuf/compiler/javanano/*.o
- rm -f google/protobuf/compiler/javanano/*.lo
- rm -f google/protobuf/compiler/js/*.o
- rm -f google/protobuf/compiler/js/*.lo
- rm -f google/protobuf/compiler/objectivec/*.o
- rm -f google/protobuf/compiler/objectivec/*.lo
- rm -f google/protobuf/compiler/php/*.o
- rm -f google/protobuf/compiler/php/*.lo
- rm -f google/protobuf/compiler/python/*.o
- rm -f google/protobuf/compiler/python/*.lo
- rm -f google/protobuf/compiler/ruby/*.o
- rm -f google/protobuf/compiler/ruby/*.lo
- rm -f google/protobuf/io/*.o
- rm -f google/protobuf/io/*.lo
- rm -f google/protobuf/stubs/*.o
- rm -f google/protobuf/stubs/*.lo
- rm -f google/protobuf/testing/*.o
- rm -f google/protobuf/util/*.o
- rm -f google/protobuf/util/*.lo
- rm -f google/protobuf/util/internal/*.o
- rm -f google/protobuf/util/internal/*.lo
- rm -f google/protobuf/util/internal/testdata/*.o
- test -z "protobuf-test.log protobuf-lazy-descriptor-test.log protobuf-lite-test.log google/protobuf/compiler/zip_output_unittest.sh.log protobuf-lite-arena-test.log no-warning-test.log" || rm -f protobuf-test.log protobuf-lazy-descriptor-test.log protobuf-lite-test.log google/protobuf/compiler/zip_output_unittest.sh.log protobuf-lite-arena-test.log no-warning-test.log
- test -z "protobuf-test.trs protobuf-lazy-descriptor-test.trs protobuf-lite-test.trs google/protobuf/compiler/zip_output_unittest.sh.trs protobuf-lite-arena-test.trs no-warning-test.trs" || rm -f protobuf-test.trs protobuf-lazy-descriptor-test.trs protobuf-lite-test.trs google/protobuf/compiler/zip_output_unittest.sh.trs protobuf-lite-arena-test.trs no-warning-test.trs
- test -z "test-suite.log" || rm -f test-suite.log
- rm -f *.lo
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/src'
- (cd _build/default/lib/deps/protobuf && ./configure CFLAGS=-fPIC CXXFLAGS=-fPIC DIST_LANG=cpp)
- checking whether to enable maintainer-specific portions of Makefiles... yes
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking target system type... x86_64-pc-linux-gnu
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking whether UID '1000' is supported by ustar format... yes
- checking whether GID '1000' is supported by ustar format... yes
- checking how to create a ustar tar archive... gnutar
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
- checking dependency style of g++... gcc3
- checking how to run the C preprocessor... gcc -E
- checking for gcc... gcc
- checking whether the compiler supports GNU C... (cached) yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... (cached) none needed
- checking whether gcc understands -c and -o together... (cached) yes
- checking dependency style of gcc... (cached) gcc3
- checking how to run the C preprocessor... gcc -E
- checking how to run the C++ preprocessor... g++ -E
- checking for g++... g++
- checking whether the compiler supports GNU C++... (cached) yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... (cached) none needed
- checking dependency style of g++... (cached) gcc3
- checking how to run the C++ preprocessor... g++ -E
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for wchar.h... yes
- checking for minix/config.h... no
- checking whether it is safe to define __EXTENSIONS__... yes
- checking whether _XOPEN_SOURCE should be defined... no
- checking for ar... ar
- checking the archiver (ar) interface... ar
- checking for gcc... gcc
- checking whether the compiler supports GNU Objective C... no
- checking whether gcc accepts -g... no
- checking dependency style of gcc... gcc3
- checking C++ compiler flags...... use user-supplied: -fPIC
- checking for g++ options needed to detect all undeclared functions... none needed
- checking whether __SUNPRO_CC is declared... no
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for archiver @FILE support... @
- checking for strip... strip
- checking for ranlib... ranlib
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... yes
- checking how to run the C++ preprocessor... g++ -E
- checking for ld used by g++... /usr/bin/ld -m elf_x86_64
- checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
- checking if g++ static flag -static works... yes
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... (cached) GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether the linker supports version scripts... yes
- checking for egrep... (cached) /usr/bin/grep -E
- checking for fcntl.h... yes
- checking for inttypes.h... (cached) yes
- checking for limits.h... yes
- checking for stdlib.h... (cached) yes
- checking for unistd.h... (cached) yes
- checking for working memcmp... yes
- checking for working strtod... yes
- checking for ftruncate... yes
- checking for memset... yes
- checking for mkdir... yes
- checking for strchr... yes
- checking for strerror... yes
- checking for strtol... yes
- checking zlib version... headers missing or too old (requires 1.2.0.4)
- checking for the pthreads library -lpthreads... no
- checking whether pthreads work without any flags... yes
- checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
- checking if more special flags are required for pthreads... no
- checking whether to check for GCC pthread/shared inconsistencies... yes
- checking whether -pthread is sufficient with -shared... yes
- checking whether what we have so far is sufficient with -nostdlib... yes
- checking the location of hash_map... <unordered_map>
- checking for library containing sched_yield... none required
- checking whether g++ supports C++11 features by default... yes
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating src/Makefile
- config.status: creating benchmarks/Makefile
- config.status: creating conformance/Makefile
- config.status: creating protobuf.pc
- config.status: creating protobuf-lite.pc
- config.status: creating config.h
- config.status: config.h is unchanged
- config.status: executing depfiles commands
- config.status: executing libtool commands
- === configuring in gmock (/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock)
- configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local'  'CFLAGS=-fPIC' 'CXXFLAGS=-fPIC' 'DIST_LANG=cpp' --cache-file=/dev/null --srcdir=.
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
- checking dependency style of g++... gcc3
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for ar... ar
- checking for archiver @FILE support... @
- checking for strip... strip
- checking for ranlib... ranlib
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... yes
- checking how to run the C++ preprocessor... g++ -E
- checking for ld used by g++... /usr/bin/ld -m elf_x86_64
- checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
- checking if g++ static flag -static works... yes
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... (cached) GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking for python... :
- checking for the pthreads library -lpthreads... no
- checking whether pthreads work without any flags... yes
- checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
- checking if more special flags are required for pthreads... no
- checking whether to check for GCC pthread/shared inconsistencies... yes
- checking whether -pthread is sufficient with -shared... yes
- checking for gtest-config... no
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating scripts/gmock-config
- config.status: creating build-aux/config.h
- config.status: build-aux/config.h is unchanged
- config.status: executing depfiles commands
- config.status: executing libtool commands
- === configuring in gtest (/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/gmock/gtest)
- configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr/local'  'CFLAGS=-fPIC' 'CXXFLAGS=-fPIC' 'DIST_LANG=cpp' --cache-file=/dev/null --srcdir=.
- checking for a BSD-compatible install... /usr/bin/install -c
- checking whether build environment is sane... yes
- checking for a race-free mkdir -p... /usr/bin/mkdir -p
- checking for gawk... no
- checking for mawk... mawk
- checking whether make sets $(MAKE)... yes
- checking whether make supports nested variables... yes
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking whether gcc understands -c and -o together... yes
- checking whether make supports the include directive... yes (GNU style)
- checking dependency style of gcc... gcc3
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
- checking dependency style of g++... gcc3
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
- checking how to print strings... printf
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld option to reload object files... -r
- checking for file... file
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for ar... ar
- checking for archiver @FILE support... @
- checking for strip... strip
- checking for ranlib... ranlib
- checking command to parse /usr/bin/nm -B output from gcc object... ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o... yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... yes
- checking how to run the C++ preprocessor... g++ -E
- checking for ld used by g++... /usr/bin/ld -m elf_x86_64
- checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking for g++ option to produce PIC... -fPIC -DPIC
- checking if g++ PIC flag -fPIC -DPIC works... yes
- checking if g++ static flag -static works... yes
- checking if g++ supports -c -o file.o... yes
- checking if g++ supports -c -o file.o... (cached) yes
- checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
- checking dynamic linker characteristics... (cached) GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking for python... :
- checking for the pthreads library -lpthreads... no
- checking whether pthreads work without any flags... yes
- checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
- checking if more special flags are required for pthreads... no
- checking whether to check for GCC pthread/shared inconsistencies... yes
- checking whether -pthread is sufficient with -shared... yes
- checking that generated files are newer than configure... done
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating scripts/gtest-config
- config.status: creating build-aux/config.h
- config.status: build-aux/config.h is unchanged
- config.status: executing depfiles commands
- config.status: executing libtool commands
- (cd _build/default/lib/deps/protobuf && /usr/bin/make -s -j6)
- Making all in .
- Making all in src
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/bytestream.lo -MD -MP -MF google/protobuf/stubs/.deps/bytestream.Tpo -c google/protobuf/stubs/bytestream.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/bytestream.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/atomicops_internals_x86_msvc.lo -MD -MP -MF google/protobuf/stubs/.deps/atomicops_internals_x86_msvc.Tpo -c google/protobuf/stubs/atomicops_internals_x86_msvc.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/atomicops_internals_x86_msvc.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/atomicops_internals_x86_gcc.lo -MD -MP -MF google/protobuf/stubs/.deps/atomicops_internals_x86_gcc.Tpo -c google/protobuf/stubs/atomicops_internals_x86_gcc.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/atomicops_internals_x86_gcc.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/int128.lo -MD -MP -MF google/protobuf/stubs/.deps/int128.Tpo -c google/protobuf/stubs/int128.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/int128.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/common.lo -MD -MP -MF google/protobuf/stubs/.deps/common.Tpo -c google/protobuf/stubs/common.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/common.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/atomicops_internals_x86_msvc.lo -MD -MP -MF google/protobuf/stubs/.deps/atomicops_internals_x86_msvc.Tpo -c google/protobuf/stubs/atomicops_internals_x86_msvc.cc -o google/protobuf/stubs/atomicops_internals_x86_msvc.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/atomicops_internals_x86_gcc.lo -MD -MP -MF google/protobuf/stubs/.deps/atomicops_internals_x86_gcc.Tpo -c google/protobuf/stubs/atomicops_internals_x86_gcc.cc -o google/protobuf/stubs/atomicops_internals_x86_gcc.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/int128.lo -MD -MP -MF google/protobuf/stubs/.deps/int128.Tpo -c google/protobuf/stubs/int128.cc -o google/protobuf/stubs/int128.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/bytestream.lo -MD -MP -MF google/protobuf/stubs/.deps/bytestream.Tpo -c google/protobuf/stubs/bytestream.cc -o google/protobuf/stubs/bytestream.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/common.lo -MD -MP -MF google/protobuf/stubs/.deps/common.Tpo -c google/protobuf/stubs/common.cc -o google/protobuf/stubs/common.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/io_win32.lo -MD -MP -MF google/protobuf/stubs/.deps/io_win32.Tpo -c google/protobuf/stubs/io_win32.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/io_win32.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/io_win32.lo -MD -MP -MF google/protobuf/stubs/.deps/io_win32.Tpo -c google/protobuf/stubs/io_win32.cc -o google/protobuf/stubs/io_win32.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/once.lo -MD -MP -MF google/protobuf/stubs/.deps/once.Tpo -c google/protobuf/stubs/once.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/once.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/status.lo -MD -MP -MF google/protobuf/stubs/.deps/status.Tpo -c google/protobuf/stubs/status.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/status.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/statusor.lo -MD -MP -MF google/protobuf/stubs/.deps/statusor.Tpo -c google/protobuf/stubs/statusor.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/statusor.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/stringpiece.lo -MD -MP -MF google/protobuf/stubs/.deps/stringpiece.Tpo -c google/protobuf/stubs/stringpiece.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/stringpiece.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/stringprintf.lo -MD -MP -MF google/protobuf/stubs/.deps/stringprintf.Tpo -c google/protobuf/stubs/stringprintf.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/stringprintf.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/once.lo -MD -MP -MF google/protobuf/stubs/.deps/once.Tpo -c google/protobuf/stubs/once.cc -o google/protobuf/stubs/once.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/status.lo -MD -MP -MF google/protobuf/stubs/.deps/status.Tpo -c google/protobuf/stubs/status.cc -o google/protobuf/stubs/status.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/statusor.lo -MD -MP -MF google/protobuf/stubs/.deps/statusor.Tpo -c google/protobuf/stubs/statusor.cc -o google/protobuf/stubs/statusor.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/structurally_valid.lo -MD -MP -MF google/protobuf/stubs/.deps/structurally_valid.Tpo -c google/protobuf/stubs/structurally_valid.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/structurally_valid.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/stringprintf.lo -MD -MP -MF google/protobuf/stubs/.deps/stringprintf.Tpo -c google/protobuf/stubs/stringprintf.cc -o google/protobuf/stubs/stringprintf.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/stringpiece.lo -MD -MP -MF google/protobuf/stubs/.deps/stringpiece.Tpo -c google/protobuf/stubs/stringpiece.cc -o google/protobuf/stubs/stringpiece.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/strutil.lo -MD -MP -MF google/protobuf/stubs/.deps/strutil.Tpo -c google/protobuf/stubs/strutil.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/strutil.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/time.lo -MD -MP -MF google/protobuf/stubs/.deps/time.Tpo -c google/protobuf/stubs/time.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/time.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/arena.lo -MD -MP -MF google/protobuf/.deps/arena.Tpo -c google/protobuf/arena.cc  -fPIC -DPIC -o google/protobuf/.libs/arena.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/structurally_valid.lo -MD -MP -MF google/protobuf/stubs/.deps/structurally_valid.Tpo -c google/protobuf/stubs/structurally_valid.cc -o google/protobuf/stubs/structurally_valid.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/arenastring.lo -MD -MP -MF google/protobuf/.deps/arenastring.Tpo -c google/protobuf/arenastring.cc  -fPIC -DPIC -o google/protobuf/.libs/arenastring.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/time.lo -MD -MP -MF google/protobuf/stubs/.deps/time.Tpo -c google/protobuf/stubs/time.cc -o google/protobuf/stubs/time.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/arena.lo -MD -MP -MF google/protobuf/.deps/arena.Tpo -c google/protobuf/arena.cc -o google/protobuf/arena.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/extension_set.lo -MD -MP -MF google/protobuf/.deps/extension_set.Tpo -c google/protobuf/extension_set.cc  -fPIC -DPIC -o google/protobuf/.libs/extension_set.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/arenastring.lo -MD -MP -MF google/protobuf/.deps/arenastring.Tpo -c google/protobuf/arenastring.cc -o google/protobuf/arenastring.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/strutil.lo -MD -MP -MF google/protobuf/stubs/.deps/strutil.Tpo -c google/protobuf/stubs/strutil.cc -o google/protobuf/stubs/strutil.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_util.lo -MD -MP -MF google/protobuf/.deps/generated_message_util.Tpo -c google/protobuf/generated_message_util.cc  -fPIC -DPIC -o google/protobuf/.libs/generated_message_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_table_driven_lite.lo -MD -MP -MF google/protobuf/.deps/generated_message_table_driven_lite.Tpo -c google/protobuf/generated_message_table_driven_lite.cc  -fPIC -DPIC -o google/protobuf/.libs/generated_message_table_driven_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/message_lite.lo -MD -MP -MF google/protobuf/.deps/message_lite.Tpo -c google/protobuf/message_lite.cc  -fPIC -DPIC -o google/protobuf/.libs/message_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/repeated_field.lo -MD -MP -MF google/protobuf/.deps/repeated_field.Tpo -c google/protobuf/repeated_field.cc  -fPIC -DPIC -o google/protobuf/.libs/repeated_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/wire_format_lite.lo -MD -MP -MF google/protobuf/.deps/wire_format_lite.Tpo -c google/protobuf/wire_format_lite.cc  -fPIC -DPIC -o google/protobuf/.libs/wire_format_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/repeated_field.lo -MD -MP -MF google/protobuf/.deps/repeated_field.Tpo -c google/protobuf/repeated_field.cc -o google/protobuf/repeated_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_util.lo -MD -MP -MF google/protobuf/.deps/generated_message_util.Tpo -c google/protobuf/generated_message_util.cc -o google/protobuf/generated_message_util.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/message_lite.lo -MD -MP -MF google/protobuf/.deps/message_lite.Tpo -c google/protobuf/message_lite.cc -o google/protobuf/message_lite.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/coded_stream.lo -MD -MP -MF google/protobuf/io/.deps/coded_stream.Tpo -c google/protobuf/io/coded_stream.cc  -fPIC -DPIC -o google/protobuf/io/.libs/coded_stream.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_table_driven_lite.lo -MD -MP -MF google/protobuf/.deps/generated_message_table_driven_lite.Tpo -c google/protobuf/generated_message_table_driven_lite.cc -o google/protobuf/generated_message_table_driven_lite.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/wire_format_lite.lo -MD -MP -MF google/protobuf/.deps/wire_format_lite.Tpo -c google/protobuf/wire_format_lite.cc -o google/protobuf/wire_format_lite.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/extension_set.lo -MD -MP -MF google/protobuf/.deps/extension_set.Tpo -c google/protobuf/extension_set.cc -o google/protobuf/extension_set.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/zero_copy_stream.lo -MD -MP -MF google/protobuf/io/.deps/zero_copy_stream.Tpo -c google/protobuf/io/zero_copy_stream.cc  -fPIC -DPIC -o google/protobuf/io/.libs/zero_copy_stream.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/coded_stream.lo -MD -MP -MF google/protobuf/io/.deps/coded_stream.Tpo -c google/protobuf/io/coded_stream.cc -o google/protobuf/io/coded_stream.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/zero_copy_stream_impl_lite.lo -MD -MP -MF google/protobuf/io/.deps/zero_copy_stream_impl_lite.Tpo -c google/protobuf/io/zero_copy_stream_impl_lite.cc  -fPIC -DPIC -o google/protobuf/io/.libs/zero_copy_stream_impl_lite.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/any.pb.lo -MD -MP -MF google/protobuf/.deps/any.pb.Tpo -c google/protobuf/any.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/any.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/zero_copy_stream.lo -MD -MP -MF google/protobuf/io/.deps/zero_copy_stream.Tpo -c google/protobuf/io/zero_copy_stream.cc -o google/protobuf/io/zero_copy_stream.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/api.pb.lo -MD -MP -MF google/protobuf/.deps/api.pb.Tpo -c google/protobuf/api.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/api.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/zero_copy_stream_impl_lite.lo -MD -MP -MF google/protobuf/io/.deps/zero_copy_stream_impl_lite.Tpo -c google/protobuf/io/zero_copy_stream_impl_lite.cc -o google/protobuf/io/zero_copy_stream_impl_lite.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/mathlimits.lo -MD -MP -MF google/protobuf/stubs/.deps/mathlimits.Tpo -c google/protobuf/stubs/mathlimits.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/mathlimits.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/any.lo -MD -MP -MF google/protobuf/.deps/any.Tpo -c google/protobuf/any.cc  -fPIC -DPIC -o google/protobuf/.libs/any.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/any.pb.lo -MD -MP -MF google/protobuf/.deps/any.pb.Tpo -c google/protobuf/any.pb.cc -o google/protobuf/any.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/descriptor.lo -MD -MP -MF google/protobuf/.deps/descriptor.Tpo -c google/protobuf/descriptor.cc  -fPIC -DPIC -o google/protobuf/.libs/descriptor.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/mathlimits.lo -MD -MP -MF google/protobuf/stubs/.deps/mathlimits.Tpo -c google/protobuf/stubs/mathlimits.cc -o google/protobuf/stubs/mathlimits.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/descriptor_database.lo -MD -MP -MF google/protobuf/.deps/descriptor_database.Tpo -c google/protobuf/descriptor_database.cc  -fPIC -DPIC -o google/protobuf/.libs/descriptor_database.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/any.lo -MD -MP -MF google/protobuf/.deps/any.Tpo -c google/protobuf/any.cc -o google/protobuf/any.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/api.pb.lo -MD -MP -MF google/protobuf/.deps/api.pb.Tpo -c google/protobuf/api.pb.cc -o google/protobuf/api.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/descriptor.pb.lo -MD -MP -MF google/protobuf/.deps/descriptor.pb.Tpo -c google/protobuf/descriptor.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/descriptor.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/duration.pb.lo -MD -MP -MF google/protobuf/.deps/duration.pb.Tpo -c google/protobuf/duration.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/duration.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/dynamic_message.lo -MD -MP -MF google/protobuf/.deps/dynamic_message.Tpo -c google/protobuf/dynamic_message.cc  -fPIC -DPIC -o google/protobuf/.libs/dynamic_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/duration.pb.lo -MD -MP -MF google/protobuf/.deps/duration.pb.Tpo -c google/protobuf/duration.pb.cc -o google/protobuf/duration.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/empty.pb.lo -MD -MP -MF google/protobuf/.deps/empty.pb.Tpo -c google/protobuf/empty.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/empty.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/descriptor_database.lo -MD -MP -MF google/protobuf/.deps/descriptor_database.Tpo -c google/protobuf/descriptor_database.cc -o google/protobuf/descriptor_database.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/dynamic_message.lo -MD -MP -MF google/protobuf/.deps/dynamic_message.Tpo -c google/protobuf/dynamic_message.cc -o google/protobuf/dynamic_message.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/extension_set_heavy.lo -MD -MP -MF google/protobuf/.deps/extension_set_heavy.Tpo -c google/protobuf/extension_set_heavy.cc  -fPIC -DPIC -o google/protobuf/.libs/extension_set_heavy.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/empty.pb.lo -MD -MP -MF google/protobuf/.deps/empty.pb.Tpo -c google/protobuf/empty.pb.cc -o google/protobuf/empty.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/field_mask.pb.lo -MD -MP -MF google/protobuf/.deps/field_mask.pb.Tpo -c google/protobuf/field_mask.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/field_mask.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_reflection.lo -MD -MP -MF google/protobuf/.deps/generated_message_reflection.Tpo -c google/protobuf/generated_message_reflection.cc  -fPIC -DPIC -o google/protobuf/.libs/generated_message_reflection.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_table_driven.lo -MD -MP -MF google/protobuf/.deps/generated_message_table_driven.Tpo -c google/protobuf/generated_message_table_driven.cc  -fPIC -DPIC -o google/protobuf/.libs/generated_message_table_driven.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/extension_set_heavy.lo -MD -MP -MF google/protobuf/.deps/extension_set_heavy.Tpo -c google/protobuf/extension_set_heavy.cc -o google/protobuf/extension_set_heavy.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/descriptor.pb.lo -MD -MP -MF google/protobuf/.deps/descriptor.pb.Tpo -c google/protobuf/descriptor.pb.cc -o google/protobuf/descriptor.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/field_mask.pb.lo -MD -MP -MF google/protobuf/.deps/field_mask.pb.Tpo -c google/protobuf/field_mask.pb.cc -o google/protobuf/field_mask.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_table_driven.lo -MD -MP -MF google/protobuf/.deps/generated_message_table_driven.Tpo -c google/protobuf/generated_message_table_driven.cc -o google/protobuf/generated_message_table_driven.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/descriptor.lo -MD -MP -MF google/protobuf/.deps/descriptor.Tpo -c google/protobuf/descriptor.cc -o google/protobuf/descriptor.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/map_field.lo -MD -MP -MF google/protobuf/.deps/map_field.Tpo -c google/protobuf/map_field.cc  -fPIC -DPIC -o google/protobuf/.libs/map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/message.lo -MD -MP -MF google/protobuf/.deps/message.Tpo -c google/protobuf/message.cc  -fPIC -DPIC -o google/protobuf/.libs/message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/generated_message_reflection.lo -MD -MP -MF google/protobuf/.deps/generated_message_reflection.Tpo -c google/protobuf/generated_message_reflection.cc -o google/protobuf/generated_message_reflection.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/reflection_ops.lo -MD -MP -MF google/protobuf/.deps/reflection_ops.Tpo -c google/protobuf/reflection_ops.cc  -fPIC -DPIC -o google/protobuf/.libs/reflection_ops.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/map_field.lo -MD -MP -MF google/protobuf/.deps/map_field.Tpo -c google/protobuf/map_field.cc -o google/protobuf/map_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/message.lo -MD -MP -MF google/protobuf/.deps/message.Tpo -c google/protobuf/message.cc -o google/protobuf/message.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/reflection_ops.lo -MD -MP -MF google/protobuf/.deps/reflection_ops.Tpo -c google/protobuf/reflection_ops.cc -o google/protobuf/reflection_ops.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/service.lo -MD -MP -MF google/protobuf/.deps/service.Tpo -c google/protobuf/service.cc  -fPIC -DPIC -o google/protobuf/.libs/service.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/source_context.pb.lo -MD -MP -MF google/protobuf/.deps/source_context.pb.Tpo -c google/protobuf/source_context.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/source_context.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/struct.pb.lo -MD -MP -MF google/protobuf/.deps/struct.pb.Tpo -c google/protobuf/struct.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/struct.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/service.lo -MD -MP -MF google/protobuf/.deps/service.Tpo -c google/protobuf/service.cc -o google/protobuf/service.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/substitute.lo -MD -MP -MF google/protobuf/stubs/.deps/substitute.Tpo -c google/protobuf/stubs/substitute.cc  -fPIC -DPIC -o google/protobuf/stubs/.libs/substitute.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/source_context.pb.lo -MD -MP -MF google/protobuf/.deps/source_context.pb.Tpo -c google/protobuf/source_context.pb.cc -o google/protobuf/source_context.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/text_format.lo -MD -MP -MF google/protobuf/.deps/text_format.Tpo -c google/protobuf/text_format.cc  -fPIC -DPIC -o google/protobuf/.libs/text_format.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/stubs/substitute.lo -MD -MP -MF google/protobuf/stubs/.deps/substitute.Tpo -c google/protobuf/stubs/substitute.cc -o google/protobuf/stubs/substitute.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/timestamp.pb.lo -MD -MP -MF google/protobuf/.deps/timestamp.pb.Tpo -c google/protobuf/timestamp.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/timestamp.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/struct.pb.lo -MD -MP -MF google/protobuf/.deps/struct.pb.Tpo -c google/protobuf/struct.pb.cc -o google/protobuf/struct.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/type.pb.lo -MD -MP -MF google/protobuf/.deps/type.pb.Tpo -c google/protobuf/type.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/type.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/unknown_field_set.lo -MD -MP -MF google/protobuf/.deps/unknown_field_set.Tpo -c google/protobuf/unknown_field_set.cc  -fPIC -DPIC -o google/protobuf/.libs/unknown_field_set.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/timestamp.pb.lo -MD -MP -MF google/protobuf/.deps/timestamp.pb.Tpo -c google/protobuf/timestamp.pb.cc -o google/protobuf/timestamp.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/wire_format.lo -MD -MP -MF google/protobuf/.deps/wire_format.Tpo -c google/protobuf/wire_format.cc  -fPIC -DPIC -o google/protobuf/.libs/wire_format.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/unknown_field_set.lo -MD -MP -MF google/protobuf/.deps/unknown_field_set.Tpo -c google/protobuf/unknown_field_set.cc -o google/protobuf/unknown_field_set.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/text_format.lo -MD -MP -MF google/protobuf/.deps/text_format.Tpo -c google/protobuf/text_format.cc -o google/protobuf/text_format.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/type.pb.lo -MD -MP -MF google/protobuf/.deps/type.pb.Tpo -c google/protobuf/type.pb.cc -o google/protobuf/type.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/wrappers.pb.lo -MD -MP -MF google/protobuf/.deps/wrappers.pb.Tpo -c google/protobuf/wrappers.pb.cc  -fPIC -DPIC -o google/protobuf/.libs/wrappers.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/gzip_stream.lo -MD -MP -MF google/protobuf/io/.deps/gzip_stream.Tpo -c google/protobuf/io/gzip_stream.cc  -fPIC -DPIC -o google/protobuf/io/.libs/gzip_stream.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/gzip_stream.lo -MD -MP -MF google/protobuf/io/.deps/gzip_stream.Tpo -c google/protobuf/io/gzip_stream.cc -o google/protobuf/io/gzip_stream.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/printer.lo -MD -MP -MF google/protobuf/io/.deps/printer.Tpo -c google/protobuf/io/printer.cc  -fPIC -DPIC -o google/protobuf/io/.libs/printer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/strtod.lo -MD -MP -MF google/protobuf/io/.deps/strtod.Tpo -c google/protobuf/io/strtod.cc  -fPIC -DPIC -o google/protobuf/io/.libs/strtod.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/strtod.lo -MD -MP -MF google/protobuf/io/.deps/strtod.Tpo -c google/protobuf/io/strtod.cc -o google/protobuf/io/strtod.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/printer.lo -MD -MP -MF google/protobuf/io/.deps/printer.Tpo -c google/protobuf/io/printer.cc -o google/protobuf/io/printer.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/wire_format.lo -MD -MP -MF google/protobuf/.deps/wire_format.Tpo -c google/protobuf/wire_format.cc -o google/protobuf/wire_format.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/tokenizer.lo -MD -MP -MF google/protobuf/io/.deps/tokenizer.Tpo -c google/protobuf/io/tokenizer.cc  -fPIC -DPIC -o google/protobuf/io/.libs/tokenizer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/zero_copy_stream_impl.lo -MD -MP -MF google/protobuf/io/.deps/zero_copy_stream_impl.Tpo -c google/protobuf/io/zero_copy_stream_impl.cc  -fPIC -DPIC -o google/protobuf/io/.libs/zero_copy_stream_impl.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/wrappers.pb.lo -MD -MP -MF google/protobuf/.deps/wrappers.pb.Tpo -c google/protobuf/wrappers.pb.cc -o google/protobuf/wrappers.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/importer.lo -MD -MP -MF google/protobuf/compiler/.deps/importer.Tpo -c google/protobuf/compiler/importer.cc  -fPIC -DPIC -o google/protobuf/compiler/.libs/importer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/zero_copy_stream_impl.lo -MD -MP -MF google/protobuf/io/.deps/zero_copy_stream_impl.Tpo -c google/protobuf/io/zero_copy_stream_impl.cc -o google/protobuf/io/zero_copy_stream_impl.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/io/tokenizer.lo -MD -MP -MF google/protobuf/io/.deps/tokenizer.Tpo -c google/protobuf/io/tokenizer.cc -o google/protobuf/io/tokenizer.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/parser.lo -MD -MP -MF google/protobuf/compiler/.deps/parser.Tpo -c google/protobuf/compiler/parser.cc  -fPIC -DPIC -o google/protobuf/compiler/.libs/parser.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/delimited_message_util.lo -MD -MP -MF google/protobuf/util/.deps/delimited_message_util.Tpo -c google/protobuf/util/delimited_message_util.cc  -fPIC -DPIC -o google/protobuf/util/.libs/delimited_message_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/field_comparator.lo -MD -MP -MF google/protobuf/util/.deps/field_comparator.Tpo -c google/protobuf/util/field_comparator.cc  -fPIC -DPIC -o google/protobuf/util/.libs/field_comparator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/field_mask_util.lo -MD -MP -MF google/protobuf/util/.deps/field_mask_util.Tpo -c google/protobuf/util/field_mask_util.cc  -fPIC -DPIC -o google/protobuf/util/.libs/field_mask_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/datapiece.lo -MD -MP -MF google/protobuf/util/internal/.deps/datapiece.Tpo -c google/protobuf/util/internal/datapiece.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/datapiece.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/importer.lo -MD -MP -MF google/protobuf/compiler/.deps/importer.Tpo -c google/protobuf/compiler/importer.cc -o google/protobuf/compiler/importer.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/delimited_message_util.lo -MD -MP -MF google/protobuf/util/.deps/delimited_message_util.Tpo -c google/protobuf/util/delimited_message_util.cc -o google/protobuf/util/delimited_message_util.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/field_comparator.lo -MD -MP -MF google/protobuf/util/.deps/field_comparator.Tpo -c google/protobuf/util/field_comparator.cc -o google/protobuf/util/field_comparator.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/field_mask_util.lo -MD -MP -MF google/protobuf/util/.deps/field_mask_util.Tpo -c google/protobuf/util/field_mask_util.cc -o google/protobuf/util/field_mask_util.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/default_value_objectwriter.lo -MD -MP -MF google/protobuf/util/internal/.deps/default_value_objectwriter.Tpo -c google/protobuf/util/internal/default_value_objectwriter.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/default_value_objectwriter.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/parser.lo -MD -MP -MF google/protobuf/compiler/.deps/parser.Tpo -c google/protobuf/compiler/parser.cc -o google/protobuf/compiler/parser.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/error_listener.lo -MD -MP -MF google/protobuf/util/internal/.deps/error_listener.Tpo -c google/protobuf/util/internal/error_listener.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/error_listener.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/datapiece.lo -MD -MP -MF google/protobuf/util/internal/.deps/datapiece.Tpo -c google/protobuf/util/internal/datapiece.cc -o google/protobuf/util/internal/datapiece.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/field_mask_utility.lo -MD -MP -MF google/protobuf/util/internal/.deps/field_mask_utility.Tpo -c google/protobuf/util/internal/field_mask_utility.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/field_mask_utility.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/error_listener.lo -MD -MP -MF google/protobuf/util/internal/.deps/error_listener.Tpo -c google/protobuf/util/internal/error_listener.cc -o google/protobuf/util/internal/error_listener.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/json_escaping.lo -MD -MP -MF google/protobuf/util/internal/.deps/json_escaping.Tpo -c google/protobuf/util/internal/json_escaping.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/json_escaping.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/field_mask_utility.lo -MD -MP -MF google/protobuf/util/internal/.deps/field_mask_utility.Tpo -c google/protobuf/util/internal/field_mask_utility.cc -o google/protobuf/util/internal/field_mask_utility.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/default_value_objectwriter.lo -MD -MP -MF google/protobuf/util/internal/.deps/default_value_objectwriter.Tpo -c google/protobuf/util/internal/default_value_objectwriter.cc -o google/protobuf/util/internal/default_value_objectwriter.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/json_objectwriter.lo -MD -MP -MF google/protobuf/util/internal/.deps/json_objectwriter.Tpo -c google/protobuf/util/internal/json_objectwriter.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/json_objectwriter.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/json_escaping.lo -MD -MP -MF google/protobuf/util/internal/.deps/json_escaping.Tpo -c google/protobuf/util/internal/json_escaping.cc -o google/protobuf/util/internal/json_escaping.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/json_stream_parser.lo -MD -MP -MF google/protobuf/util/internal/.deps/json_stream_parser.Tpo -c google/protobuf/util/internal/json_stream_parser.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/json_stream_parser.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/object_writer.lo -MD -MP -MF google/protobuf/util/internal/.deps/object_writer.Tpo -c google/protobuf/util/internal/object_writer.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/object_writer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/protostream_objectsource.lo -MD -MP -MF google/protobuf/util/internal/.deps/protostream_objectsource.Tpo -c google/protobuf/util/internal/protostream_objectsource.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/protostream_objectsource.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/protostream_objectwriter.lo -MD -MP -MF google/protobuf/util/internal/.deps/protostream_objectwriter.Tpo -c google/protobuf/util/internal/protostream_objectwriter.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/protostream_objectwriter.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/object_writer.lo -MD -MP -MF google/protobuf/util/internal/.deps/object_writer.Tpo -c google/protobuf/util/internal/object_writer.cc -o google/protobuf/util/internal/object_writer.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/json_objectwriter.lo -MD -MP -MF google/protobuf/util/internal/.deps/json_objectwriter.Tpo -c google/protobuf/util/internal/json_objectwriter.cc -o google/protobuf/util/internal/json_objectwriter.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/json_stream_parser.lo -MD -MP -MF google/protobuf/util/internal/.deps/json_stream_parser.Tpo -c google/protobuf/util/internal/json_stream_parser.cc -o google/protobuf/util/internal/json_stream_parser.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/proto_writer.lo -MD -MP -MF google/protobuf/util/internal/.deps/proto_writer.Tpo -c google/protobuf/util/internal/proto_writer.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/proto_writer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/type_info.lo -MD -MP -MF google/protobuf/util/internal/.deps/type_info.Tpo -c google/protobuf/util/internal/type_info.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/type_info.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/protostream_objectsource.lo -MD -MP -MF google/protobuf/util/internal/.deps/protostream_objectsource.Tpo -c google/protobuf/util/internal/protostream_objectsource.cc -o google/protobuf/util/internal/protostream_objectsource.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/type_info_test_helper.lo -MD -MP -MF google/protobuf/util/internal/.deps/type_info_test_helper.Tpo -c google/protobuf/util/internal/type_info_test_helper.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/type_info_test_helper.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/utility.lo -MD -MP -MF google/protobuf/util/internal/.deps/utility.Tpo -c google/protobuf/util/internal/utility.cc  -fPIC -DPIC -o google/protobuf/util/internal/.libs/utility.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/protostream_objectwriter.lo -MD -MP -MF google/protobuf/util/internal/.deps/protostream_objectwriter.Tpo -c google/protobuf/util/internal/protostream_objectwriter.cc -o google/protobuf/util/internal/protostream_objectwriter.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/proto_writer.lo -MD -MP -MF google/protobuf/util/internal/.deps/proto_writer.Tpo -c google/protobuf/util/internal/proto_writer.cc -o google/protobuf/util/internal/proto_writer.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/type_info.lo -MD -MP -MF google/protobuf/util/internal/.deps/type_info.Tpo -c google/protobuf/util/internal/type_info.cc -o google/protobuf/util/internal/type_info.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/type_info_test_helper.lo -MD -MP -MF google/protobuf/util/internal/.deps/type_info_test_helper.Tpo -c google/protobuf/util/internal/type_info_test_helper.cc -o google/protobuf/util/internal/type_info_test_helper.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/json_util.lo -MD -MP -MF google/protobuf/util/.deps/json_util.Tpo -c google/protobuf/util/json_util.cc  -fPIC -DPIC -o google/protobuf/util/.libs/json_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/internal/utility.lo -MD -MP -MF google/protobuf/util/internal/.deps/utility.Tpo -c google/protobuf/util/internal/utility.cc -o google/protobuf/util/internal/utility.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/message_differencer.lo -MD -MP -MF google/protobuf/util/.deps/message_differencer.Tpo -c google/protobuf/util/message_differencer.cc  -fPIC -DPIC -o google/protobuf/util/.libs/message_differencer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/time_util.lo -MD -MP -MF google/protobuf/util/.deps/time_util.Tpo -c google/protobuf/util/time_util.cc  -fPIC -DPIC -o google/protobuf/util/.libs/time_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/type_resolver_util.lo -MD -MP -MF google/protobuf/util/.deps/type_resolver_util.Tpo -c google/protobuf/util/type_resolver_util.cc  -fPIC -DPIC -o google/protobuf/util/.libs/type_resolver_util.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/code_generator.lo -MD -MP -MF google/protobuf/compiler/.deps/code_generator.Tpo -c google/protobuf/compiler/code_generator.cc  -fPIC -DPIC -o google/protobuf/compiler/.libs/code_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/json_util.lo -MD -MP -MF google/protobuf/util/.deps/json_util.Tpo -c google/protobuf/util/json_util.cc -o google/protobuf/util/json_util.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/time_util.lo -MD -MP -MF google/protobuf/util/.deps/time_util.Tpo -c google/protobuf/util/time_util.cc -o google/protobuf/util/time_util.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/command_line_interface.lo -MD -MP -MF google/protobuf/compiler/.deps/command_line_interface.Tpo -c google/protobuf/compiler/command_line_interface.cc  -fPIC -DPIC -o google/protobuf/compiler/.libs/command_line_interface.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/type_resolver_util.lo -MD -MP -MF google/protobuf/util/.deps/type_resolver_util.Tpo -c google/protobuf/util/type_resolver_util.cc -o google/protobuf/util/type_resolver_util.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/code_generator.lo -MD -MP -MF google/protobuf/compiler/.deps/code_generator.Tpo -c google/protobuf/compiler/code_generator.cc -o google/protobuf/compiler/code_generator.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/plugin.lo -MD -MP -MF google/protobuf/compiler/.deps/plugin.Tpo -c google/protobuf/compiler/plugin.cc  -fPIC -DPIC -o google/protobuf/compiler/.libs/plugin.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/util/message_differencer.lo -MD -MP -MF google/protobuf/util/.deps/message_differencer.Tpo -c google/protobuf/util/message_differencer.cc -o google/protobuf/util/message_differencer.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/plugin.pb.lo -MD -MP -MF google/protobuf/compiler/.deps/plugin.pb.Tpo -c google/protobuf/compiler/plugin.pb.cc  -fPIC -DPIC -o google/protobuf/compiler/.libs/plugin.pb.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/subprocess.lo -MD -MP -MF google/protobuf/compiler/.deps/subprocess.Tpo -c google/protobuf/compiler/subprocess.cc  -fPIC -DPIC -o google/protobuf/compiler/.libs/subprocess.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/plugin.lo -MD -MP -MF google/protobuf/compiler/.deps/plugin.Tpo -c google/protobuf/compiler/plugin.cc -o google/protobuf/compiler/plugin.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/zip_writer.lo -MD -MP -MF google/protobuf/compiler/.deps/zip_writer.Tpo -c google/protobuf/compiler/zip_writer.cc  -fPIC -DPIC -o google/protobuf/compiler/.libs/zip_writer.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/plugin.pb.lo -MD -MP -MF google/protobuf/compiler/.deps/plugin.pb.Tpo -c google/protobuf/compiler/plugin.pb.cc -o google/protobuf/compiler/plugin.pb.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/zip_writer.lo -MD -MP -MF google/protobuf/compiler/.deps/zip_writer.Tpo -c google/protobuf/compiler/zip_writer.cc -o google/protobuf/compiler/zip_writer.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/subprocess.lo -MD -MP -MF google/protobuf/compiler/.deps/subprocess.Tpo -c google/protobuf/compiler/subprocess.cc -o google/protobuf/compiler/subprocess.o >/dev/null 2>&1
- ...TRUNCATED BY DUNE...
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_file.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_file.Tpo -c google/protobuf/compiler/javanano/javanano_file.cc -o google/protobuf/compiler/javanano/javanano_file.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_generator.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_generator.Tpo -c google/protobuf/compiler/javanano/javanano_generator.cc  -fPIC -DPIC -o google/protobuf/compiler/javanano/.libs/javanano_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_helpers.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_helpers.Tpo -c google/protobuf/compiler/javanano/javanano_helpers.cc  -fPIC -DPIC -o google/protobuf/compiler/javanano/.libs/javanano_helpers.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_map_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_map_field.Tpo -c google/protobuf/compiler/javanano/javanano_map_field.cc  -fPIC -DPIC -o google/protobuf/compiler/javanano/.libs/javanano_map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_message.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_message.Tpo -c google/protobuf/compiler/javanano/javanano_message.cc  -fPIC -DPIC -o google/protobuf/compiler/javanano/.libs/javanano_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_message_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_message_field.Tpo -c google/protobuf/compiler/javanano/javanano_message_field.cc  -fPIC -DPIC -o google/protobuf/compiler/javanano/.libs/javanano_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_primitive_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_primitive_field.Tpo -c google/protobuf/compiler/javanano/javanano_primitive_field.cc  -fPIC -DPIC -o google/protobuf/compiler/javanano/.libs/javanano_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_generator.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_generator.Tpo -c google/protobuf/compiler/javanano/javanano_generator.cc -o google/protobuf/compiler/javanano/javanano_generator.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_helpers.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_helpers.Tpo -c google/protobuf/compiler/javanano/javanano_helpers.cc -o google/protobuf/compiler/javanano/javanano_helpers.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_map_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_map_field.Tpo -c google/protobuf/compiler/javanano/javanano_map_field.cc -o google/protobuf/compiler/javanano/javanano_map_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_message_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_message_field.Tpo -c google/protobuf/compiler/javanano/javanano_message_field.cc -o google/protobuf/compiler/javanano/javanano_message_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_message.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_message.Tpo -c google/protobuf/compiler/javanano/javanano_message.cc -o google/protobuf/compiler/javanano/javanano_message.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_enum.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_enum.Tpo -c google/protobuf/compiler/objectivec/objectivec_enum.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_enum.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/javanano/javanano_primitive_field.lo -MD -MP -MF google/protobuf/compiler/javanano/.deps/javanano_primitive_field.Tpo -c google/protobuf/compiler/javanano/javanano_primitive_field.cc -o google/protobuf/compiler/javanano/javanano_primitive_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_enum_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_enum_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_enum_field.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_enum_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_extension.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_extension.Tpo -c google/protobuf/compiler/objectivec/objectivec_extension.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_extension.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_field.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_file.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_file.Tpo -c google/protobuf/compiler/objectivec/objectivec_file.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_file.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_enum.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_enum.Tpo -c google/protobuf/compiler/objectivec/objectivec_enum.cc -o google/protobuf/compiler/objectivec/objectivec_enum.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_generator.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_generator.Tpo -c google/protobuf/compiler/objectivec/objectivec_generator.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_enum_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_enum_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_enum_field.cc -o google/protobuf/compiler/objectivec/objectivec_enum_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_extension.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_extension.Tpo -c google/protobuf/compiler/objectivec/objectivec_extension.cc -o google/protobuf/compiler/objectivec/objectivec_extension.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_field.cc -o google/protobuf/compiler/objectivec/objectivec_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_file.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_file.Tpo -c google/protobuf/compiler/objectivec/objectivec_file.cc -o google/protobuf/compiler/objectivec/objectivec_file.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_helpers.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_helpers.Tpo -c google/protobuf/compiler/objectivec/objectivec_helpers.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_helpers.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_generator.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_generator.Tpo -c google/protobuf/compiler/objectivec/objectivec_generator.cc -o google/protobuf/compiler/objectivec/objectivec_generator.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_map_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_map_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_map_field.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_message.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_message.Tpo -c google/protobuf/compiler/objectivec/objectivec_message.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_message_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_message_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_message_field.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_oneof.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_oneof.Tpo -c google/protobuf/compiler/objectivec/objectivec_oneof.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_oneof.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_primitive_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_primitive_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_primitive_field.cc  -fPIC -DPIC -o google/protobuf/compiler/objectivec/.libs/objectivec_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_helpers.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_helpers.Tpo -c google/protobuf/compiler/objectivec/objectivec_helpers.cc -o google/protobuf/compiler/objectivec/objectivec_helpers.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_map_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_map_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_map_field.cc -o google/protobuf/compiler/objectivec/objectivec_map_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_message_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_message_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_message_field.cc -o google/protobuf/compiler/objectivec/objectivec_message_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_oneof.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_oneof.Tpo -c google/protobuf/compiler/objectivec/objectivec_oneof.cc -o google/protobuf/compiler/objectivec/objectivec_oneof.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_primitive_field.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_primitive_field.Tpo -c google/protobuf/compiler/objectivec/objectivec_primitive_field.cc -o google/protobuf/compiler/objectivec/objectivec_primitive_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/objectivec/objectivec_message.lo -MD -MP -MF google/protobuf/compiler/objectivec/.deps/objectivec_message.Tpo -c google/protobuf/compiler/objectivec/objectivec_message.cc -o google/protobuf/compiler/objectivec/objectivec_message.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/php/php_generator.lo -MD -MP -MF google/protobuf/compiler/php/.deps/php_generator.Tpo -c google/protobuf/compiler/php/php_generator.cc  -fPIC -DPIC -o google/protobuf/compiler/php/.libs/php_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/python/python_generator.lo -MD -MP -MF google/protobuf/compiler/python/.deps/python_generator.Tpo -c google/protobuf/compiler/python/python_generator.cc  -fPIC -DPIC -o google/protobuf/compiler/python/.libs/python_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/ruby/ruby_generator.lo -MD -MP -MF google/protobuf/compiler/ruby/.deps/ruby_generator.Tpo -c google/protobuf/compiler/ruby/ruby_generator.cc  -fPIC -DPIC -o google/protobuf/compiler/ruby/.libs/ruby_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_doc_comment.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_doc_comment.Tpo -c google/protobuf/compiler/csharp/csharp_doc_comment.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_doc_comment.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_enum.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_enum.Tpo -c google/protobuf/compiler/csharp/csharp_enum.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_enum.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_enum_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_enum_field.Tpo -c google/protobuf/compiler/csharp/csharp_enum_field.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_enum_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_doc_comment.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_doc_comment.Tpo -c google/protobuf/compiler/csharp/csharp_doc_comment.cc -o google/protobuf/compiler/csharp/csharp_doc_comment.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/ruby/ruby_generator.lo -MD -MP -MF google/protobuf/compiler/ruby/.deps/ruby_generator.Tpo -c google/protobuf/compiler/ruby/ruby_generator.cc -o google/protobuf/compiler/ruby/ruby_generator.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/php/php_generator.lo -MD -MP -MF google/protobuf/compiler/php/.deps/php_generator.Tpo -c google/protobuf/compiler/php/php_generator.cc -o google/protobuf/compiler/php/php_generator.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/python/python_generator.lo -MD -MP -MF google/protobuf/compiler/python/.deps/python_generator.Tpo -c google/protobuf/compiler/python/python_generator.cc -o google/protobuf/compiler/python/python_generator.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_enum.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_enum.Tpo -c google/protobuf/compiler/csharp/csharp_enum.cc -o google/protobuf/compiler/csharp/csharp_enum.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_field_base.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_field_base.Tpo -c google/protobuf/compiler/csharp/csharp_field_base.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_field_base.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_enum_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_enum_field.Tpo -c google/protobuf/compiler/csharp/csharp_enum_field.cc -o google/protobuf/compiler/csharp/csharp_enum_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_generator.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_generator.Tpo -c google/protobuf/compiler/csharp/csharp_generator.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_generator.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_helpers.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_helpers.Tpo -c google/protobuf/compiler/csharp/csharp_helpers.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_helpers.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_map_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_map_field.Tpo -c google/protobuf/compiler/csharp/csharp_map_field.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_map_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_field_base.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_field_base.Tpo -c google/protobuf/compiler/csharp/csharp_field_base.cc -o google/protobuf/compiler/csharp/csharp_field_base.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_message.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_message.Tpo -c google/protobuf/compiler/csharp/csharp_message.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_message.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_message_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_message_field.Tpo -c google/protobuf/compiler/csharp/csharp_message_field.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_generator.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_generator.Tpo -c google/protobuf/compiler/csharp/csharp_generator.cc -o google/protobuf/compiler/csharp/csharp_generator.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_helpers.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_helpers.Tpo -c google/protobuf/compiler/csharp/csharp_helpers.cc -o google/protobuf/compiler/csharp/csharp_helpers.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_map_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_map_field.Tpo -c google/protobuf/compiler/csharp/csharp_map_field.cc -o google/protobuf/compiler/csharp/csharp_map_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_primitive_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_primitive_field.Tpo -c google/protobuf/compiler/csharp/csharp_primitive_field.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_reflection_class.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_reflection_class.Tpo -c google/protobuf/compiler/csharp/csharp_reflection_class.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_reflection_class.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_message_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_message_field.Tpo -c google/protobuf/compiler/csharp/csharp_message_field.cc -o google/protobuf/compiler/csharp/csharp_message_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_message.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_message.Tpo -c google/protobuf/compiler/csharp/csharp_message.cc -o google/protobuf/compiler/csharp/csharp_message.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_repeated_enum_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_repeated_enum_field.Tpo -c google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_repeated_enum_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_repeated_message_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_repeated_message_field.Tpo -c google/protobuf/compiler/csharp/csharp_repeated_message_field.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_repeated_message_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_reflection_class.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_reflection_class.Tpo -c google/protobuf/compiler/csharp/csharp_reflection_class.cc -o google/protobuf/compiler/csharp/csharp_reflection_class.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_primitive_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_primitive_field.Tpo -c google/protobuf/compiler/csharp/csharp_primitive_field.cc -o google/protobuf/compiler/csharp/csharp_primitive_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_repeated_primitive_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_repeated_primitive_field.Tpo -c google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_repeated_primitive_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_repeated_enum_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_repeated_enum_field.Tpo -c google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc -o google/protobuf/compiler/csharp/csharp_repeated_enum_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_source_generator_base.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_source_generator_base.Tpo -c google/protobuf/compiler/csharp/csharp_source_generator_base.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_source_generator_base.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_repeated_message_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_repeated_message_field.Tpo -c google/protobuf/compiler/csharp/csharp_repeated_message_field.cc -o google/protobuf/compiler/csharp/csharp_repeated_message_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_wrapper_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_wrapper_field.Tpo -c google/protobuf/compiler/csharp/csharp_wrapper_field.cc  -fPIC -DPIC -o google/protobuf/compiler/csharp/.libs/csharp_wrapper_field.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_repeated_primitive_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_repeated_primitive_field.Tpo -c google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc -o google/protobuf/compiler/csharp/csharp_repeated_primitive_field.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_source_generator_base.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_source_generator_base.Tpo -c google/protobuf/compiler/csharp/csharp_source_generator_base.cc -o google/protobuf/compiler/csharp/csharp_source_generator_base.o >/dev/null 2>&1
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/js/well_known_types_embed.lo -MD -MP -MF google/protobuf/compiler/js/.deps/well_known_types_embed.Tpo -c google/protobuf/compiler/js/well_known_types_embed.cc  -fPIC -DPIC -o google/protobuf/compiler/js/.libs/well_known_types_embed.o
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/js/well_known_types_embed.lo -MD -MP -MF google/protobuf/compiler/js/.deps/well_known_types_embed.Tpo -c google/protobuf/compiler/js/well_known_types_embed.cc -o google/protobuf/compiler/js/well_known_types_embed.o >/dev/null 2>&1
- libtool: link: g++  -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o  google/protobuf/stubs/.libs/atomicops_internals_x86_gcc.o google/protobuf/stubs/.libs/atomicops_internals_x86_msvc.o google/protobuf/stubs/.libs/bytestream.o google/protobuf/stubs/.libs/common.o google/protobuf/stubs/.libs/int128.o google/protobuf/stubs/.libs/io_win32.o google/protobuf/stubs/.libs/once.o google/protobuf/stubs/.libs/status.o google/protobuf/stubs/.libs/statusor.o google/protobuf/stubs/.libs/stringpiece.o google/protobuf/stubs/.libs/stringprintf.o google/protobuf/stubs/.libs/structurally_valid.o google/protobuf/stubs/.libs/strutil.o google/protobuf/stubs/.libs/time.o google/protobuf/.libs/arena.o google/protobuf/.libs/arenastring.o google/protobuf/.libs/extension_set.o google/protobuf/.libs/generated_message_util.o google/protobuf/.libs/generated_message_table_driven_lite.o google/protobuf/.libs/message_lite.o google/protobuf/.libs/repeated_field.o google/protobuf/.libs/wire_format_lite.o google/protobuf/io/.libs/coded_stream.o google/protobuf/io/.libs/zero_copy_stream.o google/protobuf/io/.libs/zero_copy_stream_impl_lite.o google/protobuf/.libs/any.pb.o google/protobuf/.libs/api.pb.o google/protobuf/stubs/.libs/mathlimits.o google/protobuf/.libs/any.o google/protobuf/.libs/descriptor.o google/protobuf/.libs/descriptor_database.o google/protobuf/.libs/descriptor.pb.o google/protobuf/.libs/duration.pb.o google/protobuf/.libs/dynamic_message.o google/protobuf/.libs/empty.pb.o google/protobuf/.libs/extension_set_heavy.o google/protobuf/.libs/field_mask.pb.o google/protobuf/.libs/generated_message_reflection.o google/protobuf/.libs/generated_message_table_driven.o google/protobuf/.libs/map_field.o google/protobuf/.libs/message.o google/protobuf/.libs/reflection_ops.o google/protobuf/.libs/service.o google/protobuf/.libs/source_context.pb.o google/protobuf/.libs/struct.pb.o google/protobuf/stubs/.libs/substitute.o google/protobuf/.libs/text_format.o google/protobuf/.libs/timestamp.pb.o google/protobuf/.libs/type.pb.o google/protobuf/.libs/unknown_field_set.o google/protobuf/.libs/wire_format.o google/protobuf/.libs/wrappers.pb.o google/protobuf/io/.libs/gzip_stream.o google/protobuf/io/.libs/printer.o google/protobuf/io/.libs/strtod.o google/protobuf/io/.libs/tokenizer.o google/protobuf/io/.libs/zero_copy_stream_impl.o google/protobuf/compiler/.libs/importer.o google/protobuf/compiler/.libs/parser.o google/protobuf/util/.libs/delimited_message_util.o google/protobuf/util/.libs/field_comparator.o google/protobuf/util/.libs/field_mask_util.o google/protobuf/util/internal/.libs/datapiece.o google/protobuf/util/internal/.libs/default_value_objectwriter.o google/protobuf/util/internal/.libs/error_listener.o google/protobuf/util/internal/.libs/field_mask_utility.o google/protobuf/util/internal/.libs/json_escaping.o google/protobuf/util/internal/.libs/json_objectwriter.o google/protobuf/util/internal/.libs/json_stream_parser.o google/protobuf/util/internal/.libs/object_writer.o google/protobuf/util/internal/.libs/protostream_objectsource.o google/protobuf/util/internal/.libs/protostream_objectwriter.o google/protobuf/util/internal/.libs/proto_writer.o google/protobuf/util/internal/.libs/type_info.o google/protobuf/util/internal/.libs/type_info_test_helper.o google/protobuf/util/internal/.libs/utility.o google/protobuf/util/.libs/json_util.o google/protobuf/util/.libs/message_differencer.o google/protobuf/util/.libs/time_util.o google/protobuf/util/.libs/type_resolver_util.o   -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o  -Wl,--version-script=./libprotobuf.map   -Wl,-soname -Wl,libprotobuf.so.15 -o .libs/libprotobuf.so.15.0.1
- libtool: link: (cd ".libs" && rm -f "libprotobuf.so.15" && ln -s "libprotobuf.so.15.0.1" "libprotobuf.so.15")
- libtool: link: (cd ".libs" && rm -f "libprotobuf.so" && ln -s "libprotobuf.so.15.0.1" "libprotobuf.so")
- libtool: link: ar cr .libs/libprotobuf.a  google/protobuf/stubs/atomicops_internals_x86_gcc.o google/protobuf/stubs/atomicops_internals_x86_msvc.o google/protobuf/stubs/bytestream.o google/protobuf/stubs/common.o google/protobuf/stubs/int128.o google/protobuf/stubs/io_win32.o google/protobuf/stubs/once.o google/protobuf/stubs/status.o google/protobuf/stubs/statusor.o google/protobuf/stubs/stringpiece.o google/protobuf/stubs/stringprintf.o google/protobuf/stubs/structurally_valid.o google/protobuf/stubs/strutil.o google/protobuf/stubs/time.o google/protobuf/arena.o google/protobuf/arenastring.o google/protobuf/extension_set.o google/protobuf/generated_message_util.o google/protobuf/generated_message_table_driven_lite.o google/protobuf/message_lite.o google/protobuf/repeated_field.o google/protobuf/wire_format_lite.o google/protobuf/io/coded_stream.o google/protobuf/io/zero_copy_stream.o google/protobuf/io/zero_copy_stream_impl_lite.o google/protobuf/any.pb.o google/protobuf/api.pb.o google/protobuf/stubs/mathlimits.o google/protobuf/any.o google/protobuf/descriptor.o google/protobuf/descriptor_database.o google/protobuf/descriptor.pb.o google/protobuf/duration.pb.o google/protobuf/dynamic_message.o google/protobuf/empty.pb.o google/protobuf/extension_set_heavy.o google/protobuf/field_mask.pb.o google/protobuf/generated_message_reflection.o google/protobuf/generated_message_table_driven.o google/protobuf/map_field.o google/protobuf/message.o google/protobuf/reflection_ops.o google/protobuf/service.o google/protobuf/source_context.pb.o google/protobuf/struct.pb.o google/protobuf/stubs/substitute.o google/protobuf/text_format.o google/protobuf/timestamp.pb.o google/protobuf/type.pb.o google/protobuf/unknown_field_set.o google/protobuf/wire_format.o google/protobuf/wrappers.pb.o google/protobuf/io/gzip_stream.o google/protobuf/io/printer.o google/protobuf/io/strtod.o google/protobuf/io/tokenizer.o google/protobuf/io/zero_copy_stream_impl.o google/protobuf/compiler/importer.o google/protobuf/compiler/parser.o google/protobuf/util/delimited_message_util.o google/protobuf/util/field_comparator.o google/protobuf/util/field_mask_util.o google/protobuf/util/internal/datapiece.o google/protobuf/util/internal/default_value_objectwriter.o google/protobuf/util/internal/error_listener.o google/protobuf/util/internal/field_mask_utility.o google/protobuf/util/internal/json_escaping.o google/protobuf/util/internal/json_objectwriter.o google/protobuf/util/internal/json_stream_parser.o google/protobuf/util/internal/object_writer.o google/protobuf/util/internal/protostream_objectsource.o google/protobuf/util/internal/protostream_objectwriter.o google/protobuf/util/internal/proto_writer.o google/protobuf/util/internal/type_info.o google/protobuf/util/internal/type_info_test_helper.o google/protobuf/util/internal/utility.o google/protobuf/util/json_util.o google/protobuf/util/message_differencer.o google/protobuf/util/time_util.o google/protobuf/util/type_resolver_util.o
- libtool: link: ranlib .libs/libprotobuf.a
- libtool: link: ( cd ".libs" && rm -f "libprotobuf.la" && ln -s "../libprotobuf.la" "libprotobuf.la" )
- libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I.. -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -MT google/protobuf/compiler/csharp/csharp_wrapper_field.lo -MD -MP -MF google/protobuf/compiler/csharp/.deps/csharp_wrapper_field.Tpo -c google/protobuf/compiler/csharp/csharp_wrapper_field.cc -o google/protobuf/compiler/csharp/csharp_wrapper_field.o >/dev/null 2>&1
- libtool: link: g++  -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o  google/protobuf/compiler/.libs/code_generator.o google/protobuf/compiler/.libs/command_line_interface.o google/protobuf/compiler/.libs/plugin.o google/protobuf/compiler/.libs/plugin.pb.o google/protobuf/compiler/.libs/subprocess.o google/protobuf/compiler/.libs/zip_writer.o google/protobuf/compiler/cpp/.libs/cpp_enum.o google/protobuf/compiler/cpp/.libs/cpp_enum_field.o google/protobuf/compiler/cpp/.libs/cpp_extension.o google/protobuf/compiler/cpp/.libs/cpp_field.o google/protobuf/compiler/cpp/.libs/cpp_file.o google/protobuf/compiler/cpp/.libs/cpp_generator.o google/protobuf/compiler/cpp/.libs/cpp_helpers.o google/protobuf/compiler/cpp/.libs/cpp_map_field.o google/protobuf/compiler/cpp/.libs/cpp_message.o google/protobuf/compiler/cpp/.libs/cpp_message_field.o google/protobuf/compiler/cpp/.libs/cpp_padding_optimizer.o google/protobuf/compiler/cpp/.libs/cpp_primitive_field.o google/protobuf/compiler/cpp/.libs/cpp_service.o google/protobuf/compiler/cpp/.libs/cpp_string_field.o google/protobuf/compiler/java/.libs/java_context.o google/protobuf/compiler/java/.libs/java_enum.o google/protobuf/compiler/java/.libs/java_enum_lite.o google/protobuf/compiler/java/.libs/java_enum_field.o google/protobuf/compiler/java/.libs/java_enum_field_lite.o google/protobuf/compiler/java/.libs/java_extension.o google/protobuf/compiler/java/.libs/java_extension_lite.o google/protobuf/compiler/java/.libs/java_field.o google/protobuf/compiler/java/.libs/java_file.o google/protobuf/compiler/java/.libs/java_generator.o google/protobuf/compiler/java/.libs/java_generator_factory.o google/protobuf/compiler/java/.libs/java_helpers.o google/protobuf/compiler/java/.libs/java_lazy_message_field.o google/protobuf/compiler/java/.libs/java_lazy_message_field_lite.o google/protobuf/compiler/java/.libs/java_map_field.o google/protobuf/compiler/java/.libs/java_map_field_lite.o google/protobuf/compiler/java/.libs/java_message.o google/protobuf/compiler/java/.libs/java_message_lite.o google/protobuf/compiler/java/.libs/java_message_builder.o google/protobuf/compiler/java/.libs/java_message_builder_lite.o google/protobuf/compiler/java/.libs/java_message_field.o google/protobuf/compiler/java/.libs/java_message_field_lite.o google/protobuf/compiler/java/.libs/java_name_resolver.o google/protobuf/compiler/java/.libs/java_primitive_field.o google/protobuf/compiler/java/.libs/java_primitive_field_lite.o google/protobuf/compiler/java/.libs/java_shared_code_generator.o google/protobuf/compiler/java/.libs/java_service.o google/protobuf/compiler/java/.libs/java_string_field.o google/protobuf/compiler/java/.libs/java_string_field_lite.o google/protobuf/compiler/java/.libs/java_doc_comment.o google/protobuf/compiler/js/.libs/js_generator.o google/protobuf/compiler/js/.libs/well_known_types_embed.o google/protobuf/compiler/javanano/.libs/javanano_enum.o google/protobuf/compiler/javanano/.libs/javanano_enum_field.o google/protobuf/compiler/javanano/.libs/javanano_extension.o google/protobuf/compiler/javanano/.libs/javanano_field.o google/protobuf/compiler/javanano/.libs/javanano_file.o google/protobuf/compiler/javanano/.libs/javanano_generator.o google/protobuf/compiler/javanano/.libs/javanano_helpers.o google/protobuf/compiler/javanano/.libs/javanano_map_field.o google/protobuf/compiler/javanano/.libs/javanano_message.o google/protobuf/compiler/javanano/.libs/javanano_message_field.o google/protobuf/compiler/javanano/.libs/javanano_primitive_field.o google/protobuf/compiler/objectivec/.libs/objectivec_enum.o google/protobuf/compiler/objectivec/.libs/objectivec_enum_field.o google/protobuf/compiler/objectivec/.libs/objectivec_extension.o google/protobuf/compiler/objectivec/.libs/objectivec_field.o google/protobuf/compiler/objectivec/.libs/objectivec_file.o google/protobuf/compiler/objectivec/.libs/objectivec_generator.o google/protobuf/compiler/objectivec/.libs/objectivec_helpers.o google/protobuf/compiler/objectivec/.libs/objectivec_map_field.o google/protobuf/compiler/objectivec/.libs/objectivec_message.o google/protobuf/compiler/objectivec/.libs/objectivec_message_field.o google/protobuf/compiler/objectivec/.libs/objectivec_oneof.o google/protobuf/compiler/objectivec/.libs/objectivec_primitive_field.o google/protobuf/compiler/php/.libs/php_generator.o google/protobuf/compiler/python/.libs/python_generator.o google/protobuf/compiler/ruby/.libs/ruby_generator.o google/protobuf/compiler/csharp/.libs/csharp_doc_comment.o google/protobuf/compiler/csharp/.libs/csharp_enum.o google/protobuf/compiler/csharp/.libs/csharp_enum_field.o google/protobuf/compiler/csharp/.libs/csharp_field_base.o google/protobuf/compiler/csharp/.libs/csharp_generator.o google/protobuf/compiler/csharp/.libs/csharp_helpers.o google/protobuf/compiler/csharp/.libs/csharp_map_field.o google/protobuf/compiler/csharp/.libs/csharp_message.o google/protobuf/compiler/csharp/.libs/csharp_message_field.o google/protobuf/compiler/csharp/.libs/csharp_primitive_field.o google/protobuf/compiler/csharp/.libs/csharp_reflection_class.o google/protobuf/compiler/csharp/.libs/csharp_repeated_enum_field.o google/protobuf/compiler/csharp/.libs/csharp_repeated_message_field.o google/protobuf/compiler/csharp/.libs/csharp_repeated_primitive_field.o google/protobuf/compiler/csharp/.libs/csharp_source_generator_base.o google/protobuf/compiler/csharp/.libs/csharp_wrapper_field.o   -Wl,-rpath -Wl,/home/opam/.opam/4.14/.opam-switch/build/opsian.0.1/_build/default/lib/deps/protobuf/src/.libs ./.libs/libprotobuf.so -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o  -Wl,--version-script=./libprotoc.map   -Wl,-soname -Wl,libprotoc.so.15 -o .libs/libprotoc.so.15.0.1
- libtool: link: (cd ".libs" && rm -f "libprotoc.so.15" && ln -s "libprotoc.so.15.0.1" "libprotoc.so.15")
- libtool: link: (cd ".libs" && rm -f "libprotoc.so" && ln -s "libprotoc.so.15.0.1" "libprotoc.so")
- libtool: link: ar cr .libs/libprotoc.a  google/protobuf/compiler/code_generator.o google/protobuf/compiler/command_line_interface.o google/protobuf/compiler/plugin.o google/protobuf/compiler/plugin.pb.o google/protobuf/compiler/subprocess.o google/protobuf/compiler/zip_writer.o google/protobuf/compiler/cpp/cpp_enum.o google/protobuf/compiler/cpp/cpp_enum_field.o google/protobuf/compiler/cpp/cpp_extension.o google/protobuf/compiler/cpp/cpp_field.o google/protobuf/compiler/cpp/cpp_file.o google/protobuf/compiler/cpp/cpp_generator.o google/protobuf/compiler/cpp/cpp_helpers.o google/protobuf/compiler/cpp/cpp_map_field.o google/protobuf/compiler/cpp/cpp_message.o google/protobuf/compiler/cpp/cpp_message_field.o google/protobuf/compiler/cpp/cpp_padding_optimizer.o google/protobuf/compiler/cpp/cpp_primitive_field.o google/protobuf/compiler/cpp/cpp_service.o google/protobuf/compiler/cpp/cpp_string_field.o google/protobuf/compiler/java/java_context.o google/protobuf/compiler/java/java_enum.o google/protobuf/compiler/java/java_enum_lite.o google/protobuf/compiler/java/java_enum_field.o google/protobuf/compiler/java/java_enum_field_lite.o google/protobuf/compiler/java/java_extension.o google/protobuf/compiler/java/java_extension_lite.o google/protobuf/compiler/java/java_field.o google/protobuf/compiler/java/java_file.o google/protobuf/compiler/java/java_generator.o google/protobuf/compiler/java/java_generator_factory.o google/protobuf/compiler/java/java_helpers.o google/protobuf/compiler/java/java_lazy_message_field.o google/protobuf/compiler/java/java_lazy_message_field_lite.o google/protobuf/compiler/java/java_map_field.o google/protobuf/compiler/java/java_map_field_lite.o google/protobuf/compiler/java/java_message.o google/protobuf/compiler/java/java_message_lite.o google/protobuf/compiler/java/java_message_builder.o google/protobuf/compiler/java/java_message_builder_lite.o google/protobuf/compiler/java/java_message_field.o google/protobuf/compiler/java/java_message_field_lite.o google/protobuf/compiler/java/java_name_resolver.o google/protobuf/compiler/java/java_primitive_field.o google/protobuf/compiler/java/java_primitive_field_lite.o google/protobuf/compiler/java/java_shared_code_generator.o google/protobuf/compiler/java/java_service.o google/protobuf/compiler/java/java_string_field.o google/protobuf/compiler/java/java_string_field_lite.o google/protobuf/compiler/java/java_doc_comment.o google/protobuf/compiler/js/js_generator.o google/protobuf/compiler/js/well_known_types_embed.o google/protobuf/compiler/javanano/javanano_enum.o google/protobuf/compiler/javanano/javanano_enum_field.o google/protobuf/compiler/javanano/javanano_extension.o google/protobuf/compiler/javanano/javanano_field.o google/protobuf/compiler/javanano/javanano_file.o google/protobuf/compiler/javanano/javanano_generator.o google/protobuf/compiler/javanano/javanano_helpers.o google/protobuf/compiler/javanano/javanano_map_field.o google/protobuf/compiler/javanano/javanano_message.o google/protobuf/compiler/javanano/javanano_message_field.o google/protobuf/compiler/javanano/javanano_primitive_field.o google/protobuf/compiler/objectivec/objectivec_enum.o google/protobuf/compiler/objectivec/objectivec_enum_field.o google/protobuf/compiler/objectivec/objectivec_extension.o google/protobuf/compiler/objectivec/objectivec_field.o google/protobuf/compiler/objectivec/objectivec_file.o google/protobuf/compiler/objectivec/objectivec_generator.o google/protobuf/compiler/objectivec/objectivec_helpers.o google/protobuf/compiler/objectivec/objectivec_map_field.o google/protobuf/compiler/objectivec/objectivec_message.o google/protobuf/compiler/objectivec/objectivec_message_field.o google/protobuf/compiler/objectivec/objectivec_oneof.o google/protobuf/compiler/objectivec/objectivec_primitive_field.o google/protobuf/compiler/php/php_generator.o google/protobuf/compiler/python/python_generator.o google/protobuf/compiler/ruby/ruby_generator.o google/protobuf/compiler/csharp/csharp_doc_comment.o google/protobuf/compiler/csharp/csharp_enum.o google/protobuf/compiler/csharp/csharp_enum_field.o google/protobuf/compiler/csharp/csharp_field_base.o google/protobuf/compiler/csharp/csharp_generator.o google/protobuf/compiler/csharp/csharp_helpers.o google/protobuf/compiler/csharp/csharp_map_field.o google/protobuf/compiler/csharp/csharp_message.o google/protobuf/compiler/csharp/csharp_message_field.o google/protobuf/compiler/csharp/csharp_primitive_field.o google/protobuf/compiler/csharp/csharp_reflection_class.o google/protobuf/compiler/csharp/csharp_repeated_enum_field.o google/protobuf/compiler/csharp/csharp_repeated_message_field.o google/protobuf/compiler/csharp/csharp_repeated_primitive_field.o google/protobuf/compiler/csharp/csharp_source_generator_base.o google/protobuf/compiler/csharp/csharp_wrapper_field.o
- libtool: link: ranlib .libs/libprotoc.a
- libtool: link: ( cd ".libs" && rm -f "libprotoc.la" && ln -s "../libprotoc.la" "libprotoc.la" )
- libtool: link: g++ -DHAVE_PTHREAD=1 -Wall -Wno-sign-compare -fPIC -o .libs/protoc google/protobuf/compiler/main.o  ./.libs/libprotobuf.so ./.libs/libprotoc.so
- libtool: link: g++  -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o  google/protobuf/stubs/.libs/atomicops_internals_x86_gcc.o google/protobuf/stubs/.libs/atomicops_internals_x86_msvc.o google/protobuf/stubs/.libs/bytestream.o google/protobuf/stubs/.libs/common.o google/protobuf/stubs/.libs/int128.o google/protobuf/stubs/.libs/io_win32.o google/protobuf/stubs/.libs/once.o google/protobuf/stubs/.libs/status.o google/protobuf/stubs/.libs/statusor.o google/protobuf/stubs/.libs/stringpiece.o google/protobuf/stubs/.libs/stringprintf.o google/protobuf/stubs/.libs/structurally_valid.o google/protobuf/stubs/.libs/strutil.o google/protobuf/stubs/.libs/time.o google/protobuf/.libs/arena.o google/protobuf/.libs/arenastring.o google/protobuf/.libs/extension_set.o google/protobuf/.libs/generated_message_util.o google/protobuf/.libs/generated_message_table_driven_lite.o google/protobuf/.libs/message_lite.o google/protobuf/.libs/repeated_field.o google/protobuf/.libs/wire_format_lite.o google/protobuf/io/.libs/coded_stream.o google/protobuf/io/.libs/zero_copy_stream.o google/protobuf/io/.libs/zero_copy_stream_impl_lite.o   -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o  -Wl,--version-script=./libprotobuf-lite.map   -Wl,-soname -Wl,libprotobuf-lite.so.15 -o .libs/libprotobuf-lite.so.15.0.1
- libtool: link: (cd ".libs" && rm -f "libprotobuf-lite.so.15" && ln -s "libprotobuf-lite.so.15.0.1" "libprotobuf-lite.so.15")
- libtool: link: (cd ".libs" && rm -f "libprotobuf-lite.so" && ln -s "libprotobuf-lite.so.15.0.1" "libprotobuf-lite.so")
- libtool: link: ar cr .libs/libprotobuf-lite.a  google/protobuf/stubs/atomicops_internals_x86_gcc.o google/protobuf/stubs/atomicops_internals_x86_msvc.o google/protobuf/stubs/bytestream.o google/protobuf/stubs/common.o google/protobuf/stubs/int128.o google/protobuf/stubs/io_win32.o google/protobuf/stubs/once.o google/protobuf/stubs/status.o google/protobuf/stubs/statusor.o google/protobuf/stubs/stringpiece.o google/protobuf/stubs/stringprintf.o google/protobuf/stubs/structurally_valid.o google/protobuf/stubs/strutil.o google/protobuf/stubs/time.o google/protobuf/arena.o google/protobuf/arenastring.o google/protobuf/extension_set.o google/protobuf/generated_message_util.o google/protobuf/generated_message_table_driven_lite.o google/protobuf/message_lite.o google/protobuf/repeated_field.o google/protobuf/wire_format_lite.o google/protobuf/io/coded_stream.o google/protobuf/io/zero_copy_stream.o google/protobuf/io/zero_copy_stream_impl_lite.o
- libtool: link: ranlib .libs/libprotobuf-lite.a
- libtool: link: ( cd ".libs" && rm -f "libprotobuf-lite.la" && ln -s "../libprotobuf-lite.la" "libprotobuf-lite.la" )
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/map_entry_lite.h:37,
-                  from ./google/protobuf/generated_message_util.h:50,
-                  from google/protobuf/generated_message_util.cc:35:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/generated_message_util.h:43:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/extension_set.h:51,
-                  from google/protobuf/extension_set.cc:38:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/algorithm:60,
-                  from ./google/protobuf/stubs/common.h:38,
-                  from ./google/protobuf/stubs/hash.h:39,
-                  from google/protobuf/extension_set.cc:35:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/map_entry_lite.h:37,
-                  from ./google/protobuf/generated_message_util.h:50,
-                  from google/protobuf/message_lite.cc:39:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/algorithm:60,
-                  from ./google/protobuf/stubs/common.h:38,
-                  from ./google/protobuf/stubs/atomicops.h:59,
-                  from ./google/protobuf/stubs/atomic_sequence_num.h:33,
-                  from ./google/protobuf/arena_impl.h:38,
-                  from ./google/protobuf/arena.h:54,
-                  from google/protobuf/message_lite.cc:38:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from google/protobuf/repeated_field.cc:37:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/algorithm:60,
-                  from google/protobuf/repeated_field.cc:35:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/generated_message_table_driven_lite.h:34,
-                  from google/protobuf/generated_message_table_driven_lite.cc:31:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/iterator:61,
-                  from ./google/protobuf/map.h:40:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from google/protobuf/wire_format_lite.cc:35:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/algorithm:60,
-                  from ./google/protobuf/wire_format_lite_inl.h:39:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/any.pb.h:25,
-                  from google/protobuf/any.pb.cc:4:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/any.pb.h:7:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/api.pb.h:25,
-                  from google/protobuf/api.pb.cc:4:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/api.pb.h:7:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/map_entry_lite.h:37,
-                  from ./google/protobuf/generated_message_util.h:50,
-                  from google/protobuf/any.cc:33:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/any.h:34,
-                  from google/protobuf/any.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/descriptor.cc:57:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/algorithm:60,
-                  from ./google/protobuf/stubs/common.h:38,
-                  from ./google/protobuf/stubs/hash.h:39,
-                  from google/protobuf/descriptor.cc:35:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/descriptor_database.cc:39:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/bits/stl_algobase.h:65,
-                  from /usr/include/c++/12/bits/stl_tree.h:63,
-                  from /usr/include/c++/12/map:60,
-                  from ./google/protobuf/descriptor_database.h:40,
-                  from google/protobuf/descriptor_database.cc:35:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/descriptor.pb.cc:4:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from ./google/protobuf/descriptor.pb.h:7:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
- ...TRUNCATED BY DUNE...
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_map_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_map_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_message.cc:38:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_message.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_message_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_message_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_reflection_class.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_reflection_class.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_primitive_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_primitive_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_repeated_message_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_repeated_message_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_source_generator_base.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_source_generator_base.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- In file included from ./google/protobuf/wire_format_lite_inl.h:44,
-                  from ./google/protobuf/map_type_handler.h:35,
-                  from ./google/protobuf/map.h:48,
-                  from ./google/protobuf/generated_message_table_driven.h:34,
-                  from ./google/protobuf/descriptor.pb.h:25,
-                  from google/protobuf/compiler/csharp/csharp_wrapper_field.cc:36:
- ./google/protobuf/repeated_field.h:2234:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2234 |     : public std::iterator<
-       |                   ^~~~~~~~
- In file included from /usr/include/c++/12/string:45,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from google/protobuf/compiler/csharp/csharp_wrapper_field.cc:31:
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2238:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2238 |   typedef std::iterator<
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2330:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2330 |     : public std::iterator<std::random_access_iterator_tag, Element> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2333:16: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2333 |   typedef std::iterator<std::random_access_iterator_tag, Element> superclass;
-       |                ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2481:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2481 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2507:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2507 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2545:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2545 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- ./google/protobuf/repeated_field.h:2575:19: warning: 'template<class _Category, class _Tp, class _Distance, class _Pointer, class _Reference> struct std::iterator' is deprecated [-Wdeprecated-declarations]
-  2575 |     : public std::iterator<std::output_iterator_tag, T> {
-       |                   ^~~~~~~~
- /usr/include/c++/12/bits/stl_iterator_base_types.h:127:34: note: declared here
-   127 |     struct _GLIBCXX17_DEPRECATED iterator
-       |                                  ^~~~~~~~
- (cd _build/default/lib && /usr/bin/gcc -I. -Ideps/protobuf/src -Ideps/openssl/include -Ideps/libunwind/include -Ideps/boost/libs/asio/include -Ideps/boost/libs/chrono/include -Ideps/boost/libs/random/include -Ideps/boost/libs/format/include -Ideps/boost/libs/convert/include -Ideps/boost/libs/algorithm/include -Ideps/boost/libs/container_hash/include -Ideps/boost/libs/thread/include -Ideps/boost/libs/lambda/include -Ideps/boost/libs/foreach/include -Ideps/boost/libs/bind/include -Ideps/boost/libs/lexical_cast/include -Ideps/boost/libs/iterator/include -Ideps/boost/libs/config/include -Ideps/boost/libs/system/include -Ideps/boost/libs/throw_exception/include -Ideps/boost/libs/assert/include -Ideps/boost/libs/predef/include -Ideps/boost/libs/mpl/include -Ideps/boost/libs/preprocessor/include -Ideps/boost/libs/ratio/include -Ideps/boost/libs/type_traits/include -Ideps/boost/libs/core/include -Ideps/boost/libs/integer/include -Ideps/boost/libs/static_assert/include -Ideps/boost/libs/date_time/include -Ideps/boost/libs/smart_ptr/include -Ideps/boost/libs/utility/include -Ideps/boost/libs/numeric/conversion/include -Ideps/boost/libs/regex/include -Ideps/boost/libs/detail/include -Ideps/boost/libs/move/include -Ideps/boost/libs/optional/include -Ideps/boost/libs/tuple/include -Ideps/boost/libs/range/include -Ideps/boost/libs/concept_check/include -Ideps/boost/libs/array/include -Ideps/boost/libs/container/include -Ideps/boost/libs/math/include -Ideps/boost/libs/function/include -Ideps/boost/libs/type_index/include -fPIC -pthread -Wall -Wformat-security -Wno-char-subscripts -Wno-sign-compare -Wno-strict-overflow -Wwrite-strings -funsigned-char -std=c++0x -g -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ocaml/threads -o cpudata_reader.o -c cpudata_reader.cpp)
- In file included from deps/boost/libs/concept_check/include/boost/concept/assert.hpp:35,
-                  from deps/boost/libs/concept_check/include/boost/concept_check.hpp:20,
-                  from deps/boost/libs/range/include/boost/range/concepts.hpp:19,
-                  from deps/boost/libs/range/include/boost/range/size_type.hpp:20,
-                  from deps/boost/libs/range/include/boost/range/size.hpp:21,
-                  from deps/boost/libs/range/include/boost/range/functions.hpp:20,
-                  from deps/boost/libs/range/include/boost/range/iterator_range_core.hpp:38,
-                  from deps/boost/libs/lexical_cast/include/boost/lexical_cast.hpp:30,
-                  from cpudata_reader.cpp:5:
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp: In instantiation of 'static void boost::concepts::constraint<Model>::failed() [with Model = boost::algorithm::FinderConcept<boost::algorithm::detail::token_finderF<boost::algorithm::detail::is_any_ofF<char> >, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]':
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:77:13:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:47:52: warning: 'this' pointer is null [-Wnonnull]
-    47 |     static void failed() { ((Model*)0)->constraints(); }
-       |                            ~~~~~~~~~~~~~~~~~~~~~~~~^~
- In file included from deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:26,
-                  from deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:16,
-                  from cpudata_reader.cpp:8:
- deps/boost/libs/algorithm/include/boost/algorithm/string/concept.hpp:40:18: note: in a call to non-static member function 'void boost::algorithm::FinderConcept<FinderT, IteratorT>::constraints() [with FinderT = boost::algorithm::detail::token_finderF<boost::algorithm::detail::is_any_ofF<char> >; IteratorT = __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> >]'
-    40 |             void constraints()
-       |                  ^~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp: In instantiation of 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::CopyConstructible<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]':
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:167:5:   required from 'struct boost::CopyConstructible<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/range/include/boost/range/concepts.hpp:125:16:   required from 'struct boost::range_detail::IncrementableIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/range/include/boost/range/concepts.hpp:147:16:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47: warning: 'this' pointer is null [-Wnonnull]
-    39 |     static void failed() { ((Model*)0)->~Model(); }
-       |                            ~~~~~~~~~~~~~~~~~~~^~
- In file included from deps/boost/libs/concept_check/include/boost/concept_check.hpp:31:
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:5: note: in a call to non-static member function 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::CopyConstructible<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |     ^
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp: In instantiation of 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag> >]':
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:208:5:   required from 'struct boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag>'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag>]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag> >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag> >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   required from 'struct boost::concepts::requirement_<void (*)(boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag>)>'
- deps/boost/libs/iterator/include/boost/iterator/iterator_concepts.hpp:114:7:   [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47: warning: 'this' pointer is null [-Wnonnull]
-    39 |     static void failed() { ((Model*)0)->~Model(); }
-       |                            ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:5: note: in a call to non-static member function 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag>]'
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |     ^
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp: In instantiation of 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag>]':
- deps/boost/libs/iterator/include/boost/iterator/iterator_concepts.hpp:114:7:   required from 'struct boost::range_detail::IncrementableIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/range/include/boost/range/concepts.hpp:147:16:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47: warning: 'this' pointer is null [-Wnonnull]
-    39 |     static void failed() { ((Model*)0)->~Model(); }
-       |                            ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::Convertible<X, Y>::~Convertible() [with X = boost::iterators::random_access_traversal_tag; Y = boost::iterators::incrementable_traversal_tag]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:208:5: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   208 |     BOOST_CONCEPT_USAGE(Convertible) {
-       |     ^~~~~~~~~~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp: In instantiation of 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::range_detail::IncrementableIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]':
- deps/boost/libs/range/include/boost/range/concepts.hpp:136:13:   required from 'struct boost::range_detail::IncrementableIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/range/include/boost/range/concepts.hpp:147:16:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47: warning: 'this' pointer is null [-Wnonnull]
-    39 |     static void failed() { ((Model*)0)->~Model(); }
-       |                            ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:5: note: in a call to non-static member function 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::range_detail::IncrementableIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |     ^
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp: In instantiation of 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::EqualityComparable<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]':
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:233:5:   required from 'struct boost::EqualityComparable<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/range/include/boost/range/concepts.hpp:147:16:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47: warning: 'this' pointer is null [-Wnonnull]
-    39 |     static void failed() { ((Model*)0)->~Model(); }
-       |                            ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:5: note: in a call to non-static member function 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::EqualityComparable<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |     ^
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp: In instantiation of 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag> >]':
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:208:5:   required from 'struct boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag>'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag>]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag> >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag> >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   required from 'struct boost::concepts::requirement_<void (*)(boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag>)>'
- deps/boost/libs/range/include/boost/range/concepts.hpp:152:13:   [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47: warning: 'this' pointer is null [-Wnonnull]
-    39 |     static void failed() { ((Model*)0)->~Model(); }
-       |                            ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:5: note: in a call to non-static member function 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag>]'
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |     ^
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp: In instantiation of 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag>]':
- deps/boost/libs/range/include/boost/range/concepts.hpp:152:13:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   required from 'struct boost::concepts::requirement_<void (*)(boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >)>'
- deps/boost/libs/range/include/boost/range/concepts.hpp:278:9:   [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47: warning: 'this' pointer is null [-Wnonnull]
-    39 |     static void failed() { ((Model*)0)->~Model(); }
-       |                            ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::Convertible<X, Y>::~Convertible() [with X = boost::iterators::random_access_traversal_tag; Y = boost::iterators::single_pass_traversal_tag]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:208:5: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   208 |     BOOST_CONCEPT_USAGE(Convertible) {
-       |     ^~~~~~~~~~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp: In instantiation of 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]':
- deps/boost/libs/range/include/boost/range/concepts.hpp:158:13:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   required from 'struct boost::concepts::requirement_<void (*)(boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >)>'
- deps/boost/libs/range/include/boost/range/concepts.hpp:278:9:   [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- ...TRUNCATED BY DUNE...
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:900:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator==(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >; V1 = const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >; TC1 = forward_traversal_tag; Reference1 = const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >&; Difference1 = long int; Derived2 = boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >; V2 = const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >; TC2 = forward_traversal_tag; Reference2 = const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >&; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- deps/boost/libs/iterator/include/boost/iterator/iterator_adaptor.hpp:305:29:   [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47: warning: 'this' pointer is null [-Wnonnull]
-    39 |     static void failed() { ((Model*)0)->~Model(); }
-       |                            ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::SinglePassRangeConcept<T>::~SinglePassRangeConcept() [with T = const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/range/include/boost/range/concepts.hpp:284:9: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   284 |         BOOST_CONCEPT_USAGE(SinglePassRangeConcept)
-       |         ^~~~~~~~~~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp: In instantiation of 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::CopyConstructible<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]':
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47:   required from 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::CopyConstructible<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]'
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:167:5:   required from 'struct boost::CopyConstructible<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/range/include/boost/range/concepts.hpp:125:16:   required from 'struct boost::range_detail::IncrementableIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/range/include/boost/range/concepts.hpp:147:16:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:48: warning: 'this' pointer is null [-Wnonnull]
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |                             ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::CopyConstructible<TT>::~CopyConstructible() [with TT = __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> >]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:167:5: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   167 |     BOOST_CONCEPT_USAGE(CopyConstructible) {
-       |     ^~~~~~~~~~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp: In instantiation of 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag>]':
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47:   required from 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag> >]'
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:208:5:   required from 'struct boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag>'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag>]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag> >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::incrementable_traversal_tag> >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:48: warning: 'this' pointer is null [-Wnonnull]
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |                             ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::Convertible<X, Y>::~Convertible() [with X = boost::iterators::random_access_traversal_tag; Y = boost::iterators::incrementable_traversal_tag]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:208:5: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   208 |     BOOST_CONCEPT_USAGE(Convertible) {
-       |     ^~~~~~~~~~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp: In instantiation of 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::range_detail::IncrementableIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]':
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47:   required from 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::range_detail::IncrementableIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]'
- deps/boost/libs/range/include/boost/range/concepts.hpp:136:13:   required from 'struct boost::range_detail::IncrementableIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/range/include/boost/range/concepts.hpp:147:16:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:48: warning: 'this' pointer is null [-Wnonnull]
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |                             ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::range_detail::IncrementableIteratorConcept<Iterator>::~IncrementableIteratorConcept() [with Iterator = __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> >]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/range/include/boost/range/concepts.hpp:136:13: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   136 |             BOOST_CONCEPT_USAGE(IncrementableIteratorConcept)
-       |             ^~~~~~~~~~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp: In instantiation of 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::EqualityComparable<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]':
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47:   required from 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::EqualityComparable<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]'
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:233:5:   required from 'struct boost::EqualityComparable<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/range/include/boost/range/concepts.hpp:147:16:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:48: warning: 'this' pointer is null [-Wnonnull]
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |                             ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::EqualityComparable<TT>::~EqualityComparable() [with TT = __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> >]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:233:5: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   233 |     BOOST_CONCEPT_USAGE(EqualityComparable) {
-       |     ^~~~~~~~~~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp: In instantiation of 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag>]':
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47:   required from 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag> >]'
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:208:5:   required from 'struct boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag>'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag>]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag> >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::Convertible<boost::iterators::random_access_traversal_tag, boost::iterators::single_pass_traversal_tag> >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:48: warning: 'this' pointer is null [-Wnonnull]
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |                             ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::Convertible<X, Y>::~Convertible() [with X = boost::iterators::random_access_traversal_tag; Y = boost::iterators::single_pass_traversal_tag]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/concept_check/include/boost/concept_check.hpp:208:5: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   208 |     BOOST_CONCEPT_USAGE(Convertible) {
-       |     ^~~~~~~~~~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp: In instantiation of 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]':
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47:   required from 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]'
- deps/boost/libs/range/include/boost/range/concepts.hpp:158:13:   required from 'struct boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::range_detail::SinglePassIteratorConcept<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:48: warning: 'this' pointer is null [-Wnonnull]
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |                             ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::range_detail::SinglePassIteratorConcept<Iterator>::~SinglePassIteratorConcept() [with Iterator = __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> >]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/range/include/boost/range/concepts.hpp:158:13: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   158 |             BOOST_CONCEPT_USAGE(SinglePassIteratorConcept)
-       |             ^~~~~~~~~~~~~~~~~~~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp: In instantiation of 'boost::concepts::usage_requirements<Model>::~usage_requirements() [with Model = boost::SinglePassRangeConcept<const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]':
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:39:47:   required from 'static void boost::concepts::requirement<boost::concepts::failed************ Model::************>::failed() [with Model = boost::concepts::usage_requirements<boost::SinglePassRangeConcept<const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > > >]'
- deps/boost/libs/range/include/boost/range/concepts.hpp:284:9:   required from 'struct boost::SinglePassRangeConcept<const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:32:62:   required by substitution of 'template<class Model> boost::concepts::detail::yes boost::concepts::detail::has_constraints_(Model*, wrap_constraints<Model, (& Model::constraints)>*) [with Model = boost::SinglePassRangeConcept<const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > >]'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:42:5:   required from 'const bool boost::concepts::not_satisfied<boost::SinglePassRangeConcept<const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > > >::value'
- deps/boost/libs/concept_check/include/boost/concept/detail/has_constraints.hpp:45:51:   required from 'struct boost::concepts::not_satisfied<boost::SinglePassRangeConcept<const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > > > >'
- deps/boost/libs/concept_check/include/boost/concept/detail/general.hpp:51:8:   [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- deps/boost/libs/iterator/include/boost/iterator/iterator_facade.hpp:901:3:   required from 'typename boost::iterators::detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<boost::iterators::detail::always_bool2, Derived1, Derived2>::type>::type boost::iterators::operator!=(const iterator_facade<Derived1, V1, TC1, Reference1, Difference1>&, const iterator_facade<Derived2, V2, TC2, Reference2, Difference2>&) [with Derived1 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V1 = std::__cxx11::basic_string<char>; TC1 = forward_traversal_tag; Reference1 = std::__cxx11::basic_string<char>; Difference1 = long int; Derived2 = transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, use_default, use_default>; V2 = std::__cxx11::basic_string<char>; TC2 = forward_traversal_tag; Reference2 = std::__cxx11::basic_string<char>; Difference2 = long int; typename detail::enable_if_interoperable<Derived1, Derived2, typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type>::type = bool; typename boost::mpl::apply2<detail::always_bool2, Derived1, Derived2>::type = bool]'
- /usr/include/c++/12/bits/stl_vector.h:1666:21:   required from 'void std::vector<_Tp, _Alloc>::_M_range_initialize(_InputIterator, _InputIterator, std::input_iterator_tag) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >]'
- /usr/include/c++/12/bits/stl_vector.h:706:23:   required from 'std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with _InputIterator = boost::iterators::transform_iterator<boost::algorithm::detail::copy_iterator_rangeF<std::__cxx11::basic_string<char>, __gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::algorithm::split_iterator<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >, boost::iterators::use_default, boost::iterators::use_default>; <template-parameter-2-2> = void; _Tp = std::__cxx11::basic_string<char>; _Alloc = std::allocator<std::__cxx11::basic_string<char> >; allocator_type = std::allocator<std::__cxx11::basic_string<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/iter_find.hpp:178:31:   required from 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; FinderT = detail::token_finderF<detail::is_any_ofF<char> >]'
- deps/boost/libs/algorithm/include/boost/algorithm/string/split.hpp:146:50:   required from 'SequenceSequenceT& boost::algorithm::split(SequenceSequenceT&, RangeT&, PredicateT, token_compress_mode_type) [with SequenceSequenceT = std::vector<std::__cxx11::basic_string<char> >; RangeT = std::__cxx11::basic_string<char>; PredicateT = detail::is_any_ofF<char>]'
- cpudata_reader.cpp:104:29:   required from here
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:16:48: warning: 'this' pointer is null [-Wnonnull]
-    16 |     ~usage_requirements() { ((Model*)0)->~Model(); }
-       |                             ~~~~~~~~~~~~~~~~~~~^~
- deps/boost/libs/concept_check/include/boost/concept/usage.hpp:30:7: note: in a call to non-static member function 'boost::SinglePassRangeConcept<T>::~SinglePassRangeConcept() [with T = const boost::iterator_range<__gnu_cxx::__normal_iterator<char*, std::__cxx11::basic_string<char> > >]'
-    30 |       ~model()
-       |       ^
- deps/boost/libs/range/include/boost/range/concepts.hpp:284:9: note: in expansion of macro 'BOOST_CONCEPT_USAGE'
-   284 |         BOOST_CONCEPT_USAGE(SinglePassRangeConcept)
-       |         ^~~~~~~~~~~~~~~~~~~
- (cd _build/default/lib && /usr/bin/gcc -I. -Ideps/protobuf/src -Ideps/openssl/include -Ideps/libunwind/include -Ideps/boost/libs/asio/include -Ideps/boost/libs/chrono/include -Ideps/boost/libs/random/include -Ideps/boost/libs/format/include -Ideps/boost/libs/convert/include -Ideps/boost/libs/algorithm/include -Ideps/boost/libs/container_hash/include -Ideps/boost/libs/thread/include -Ideps/boost/libs/lambda/include -Ideps/boost/libs/foreach/include -Ideps/boost/libs/bind/include -Ideps/boost/libs/lexical_cast/include -Ideps/boost/libs/iterator/include -Ideps/boost/libs/config/include -Ideps/boost/libs/system/include -Ideps/boost/libs/throw_exception/include -Ideps/boost/libs/assert/include -Ideps/boost/libs/predef/include -Ideps/boost/libs/mpl/include -Ideps/boost/libs/preprocessor/include -Ideps/boost/libs/ratio/include -Ideps/boost/libs/type_traits/include -Ideps/boost/libs/core/include -Ideps/boost/libs/integer/include -Ideps/boost/libs/static_assert/include -Ideps/boost/libs/date_time/include -Ideps/boost/libs/smart_ptr/include -Ideps/boost/libs/utility/include -Ideps/boost/libs/numeric/conversion/include -Ideps/boost/libs/regex/include -Ideps/boost/libs/detail/include -Ideps/boost/libs/move/include -Ideps/boost/libs/optional/include -Ideps/boost/libs/tuple/include -Ideps/boost/libs/range/include -Ideps/boost/libs/concept_check/include -Ideps/boost/libs/array/include -Ideps/boost/libs/container/include -Ideps/boost/libs/math/include -Ideps/boost/libs/function/include -Ideps/boost/libs/type_index/include -fPIC -pthread -Wall -Wformat-security -Wno-char-subscripts -Wno-sign-compare -Wno-strict-overflow -Wwrite-strings -funsigned-char -std=c++0x -g -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ocaml/threads -o lib_opsian.o -c lib_opsian.cpp)
- In file included from deps/boost/libs/container_hash/include/boost/functional/hash.hpp:6,
-                  from log_writer.h:15,
-                  from metrics.h:11,
-                  from collector_controller.h:12,
-                  from profiler.h:13,
-                  from lib_opsian.cpp:3:
- deps/boost/libs/container_hash/include/boost/container_hash/hash.hpp:130:33: warning: 'template<class _Arg, class _Result> struct std::unary_function' is deprecated [-Wdeprecated-declarations]
-   130 |         struct hash_base : std::unary_function<T, std::size_t> {};
-       |                                 ^~~~~~~~~~~~~~
- In file included from /usr/include/c++/12/string:48,
-                  from globals.h:8,
-                  from lib_opsian.cpp:2:
- /usr/include/c++/12/bits/stl_function.h:117:12: note: declared here
-   117 |     struct unary_function
-       |            ^~~~~~~~~~~~~~
- (cd _build/default/lib && /usr/bin/gcc -I. -Ideps/protobuf/src -Ideps/openssl/include -Ideps/libunwind/include -Ideps/boost/libs/asio/include -Ideps/boost/libs/chrono/include -Ideps/boost/libs/random/include -Ideps/boost/libs/format/include -Ideps/boost/libs/convert/include -Ideps/boost/libs/algorithm/include -Ideps/boost/libs/container_hash/include -Ideps/boost/libs/thread/include -Ideps/boost/libs/lambda/include -Ideps/boost/libs/foreach/include -Ideps/boost/libs/bind/include -Ideps/boost/libs/lexical_cast/include -Ideps/boost/libs/iterator/include -Ideps/boost/libs/config/include -Ideps/boost/libs/system/include -Ideps/boost/libs/throw_exception/include -Ideps/boost/libs/assert/include -Ideps/boost/libs/predef/include -Ideps/boost/libs/mpl/include -Ideps/boost/libs/preprocessor/include -Ideps/boost/libs/ratio/include -Ideps/boost/libs/type_traits/include -Ideps/boost/libs/core/include -Ideps/boost/libs/integer/include -Ideps/boost/libs/static_assert/include -Ideps/boost/libs/date_time/include -Ideps/boost/libs/smart_ptr/include -Ideps/boost/libs/utility/include -Ideps/boost/libs/numeric/conversion/include -Ideps/boost/libs/regex/include -Ideps/boost/libs/detail/include -Ideps/boost/libs/move/include -Ideps/boost/libs/optional/include -Ideps/boost/libs/tuple/include -Ideps/boost/libs/range/include -Ideps/boost/libs/concept_check/include -Ideps/boost/libs/array/include -Ideps/boost/libs/container/include -Ideps/boost/libs/math/include -Ideps/boost/libs/function/include -Ideps/boost/libs/type_index/include -fPIC -pthread -Wall -Wformat-security -Wno-char-subscripts -Wno-sign-compare -Wno-strict-overflow -Wwrite-strings -funsigned-char -std=c++0x -g -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ocaml/threads -o processor.o -c processor.cpp)
- In file included from deps/boost/libs/container_hash/include/boost/functional/hash.hpp:6,
-                  from log_writer.h:15,
-                  from metrics.h:11,
-                  from collector_controller.h:12,
-                  from processor.h:6,
-                  from processor.cpp:3:
- deps/boost/libs/container_hash/include/boost/container_hash/hash.hpp:130:33: warning: 'template<class _Arg, class _Result> struct std::unary_function' is deprecated [-Wdeprecated-declarations]
-   130 |         struct hash_base : std::unary_function<T, std::size_t> {};
-       |                                 ^~~~~~~~~~~~~~
- In file included from /usr/include/c++/12/bits/refwrap.h:39,
-                  from /usr/include/c++/12/bits/std_thread.h:42,
-                  from /usr/include/c++/12/thread:43,
-                  from processor.cpp:1:
- /usr/include/c++/12/bits/stl_function.h:117:12: note: declared here
-   117 |     struct unary_function
-       |            ^~~~~~~~~~~~~~
- (cd _build/default/lib && /usr/bin/gcc -I. -Ideps/protobuf/src -Ideps/openssl/include -Ideps/libunwind/include -Ideps/boost/libs/asio/include -Ideps/boost/libs/chrono/include -Ideps/boost/libs/random/include -Ideps/boost/libs/format/include -Ideps/boost/libs/convert/include -Ideps/boost/libs/algorithm/include -Ideps/boost/libs/container_hash/include -Ideps/boost/libs/thread/include -Ideps/boost/libs/lambda/include -Ideps/boost/libs/foreach/include -Ideps/boost/libs/bind/include -Ideps/boost/libs/lexical_cast/include -Ideps/boost/libs/iterator/include -Ideps/boost/libs/config/include -Ideps/boost/libs/system/include -Ideps/boost/libs/throw_exception/include -Ideps/boost/libs/assert/include -Ideps/boost/libs/predef/include -Ideps/boost/libs/mpl/include -Ideps/boost/libs/preprocessor/include -Ideps/boost/libs/ratio/include -Ideps/boost/libs/type_traits/include -Ideps/boost/libs/core/include -Ideps/boost/libs/integer/include -Ideps/boost/libs/static_assert/include -Ideps/boost/libs/date_time/include -Ideps/boost/libs/smart_ptr/include -Ideps/boost/libs/utility/include -Ideps/boost/libs/numeric/conversion/include -Ideps/boost/libs/regex/include -Ideps/boost/libs/detail/include -Ideps/boost/libs/move/include -Ideps/boost/libs/optional/include -Ideps/boost/libs/tuple/include -Ideps/boost/libs/range/include -Ideps/boost/libs/concept_check/include -Ideps/boost/libs/array/include -Ideps/boost/libs/container/include -Ideps/boost/libs/math/include -Ideps/boost/libs/function/include -Ideps/boost/libs/type_index/include -fPIC -pthread -Wall -Wformat-security -Wno-char-subscripts -Wno-sign-compare -Wno-strict-overflow -Wwrite-strings -funsigned-char -std=c++0x -g -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ocaml/threads -o collector_controller.o -c collector_controller.cpp)
- In file included from deps/boost/libs/container_hash/include/boost/functional/hash.hpp:6,
-                  from log_writer.h:15,
-                  from metrics.h:11,
-                  from collector_controller.h:12,
-                  from collector_controller.cpp:1:
- deps/boost/libs/container_hash/include/boost/container_hash/hash.hpp:130:33: warning: 'template<class _Arg, class _Result> struct std::unary_function' is deprecated [-Wdeprecated-declarations]
-   130 |         struct hash_base : std::unary_function<T, std::size_t> {};
-       |                                 ^~~~~~~~~~~~~~
- In file included from /usr/include/c++/12/string:48,
-                  from globals.h:8,
-                  from protocol_handler.h:4,
-                  from collector_controller.h:4:
- /usr/include/c++/12/bits/stl_function.h:117:12: note: declared here
-   117 |     struct unary_function
-       |            ^~~~~~~~~~~~~~
- In file included from deps/boost/libs/config/include/boost/config/header_deprecated.hpp:18,
-                  from deps/boost/libs/integer/include/boost/pending/integer_log2.hpp:5,
-                  from deps/boost/libs/random/include/boost/random/detail/integer_log2.hpp:19,
-                  from deps/boost/libs/random/include/boost/random/detail/large_arithmetic.hpp:19,
-                  from deps/boost/libs/random/include/boost/random/detail/const_mod.hpp:23,
-                  from deps/boost/libs/random/include/boost/random/detail/seed_impl.hpp:26,
-                  from deps/boost/libs/random/include/boost/random/mersenne_twister.hpp:30,
-                  from collector_controller.cpp:7:
- deps/boost/libs/config/include/boost/config/pragma_message.hpp:24:34: note: '#pragma message: This header is deprecated. Use <boost/integer/integer_log2.hpp> instead.'
-    24 | # define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))
-       |                                  ^~~~~~~
- deps/boost/libs/config/include/boost/config/pragma_message.hpp:24:34: note: in definition of macro 'BOOST_PRAGMA_MESSAGE'
-    24 | # define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x)))
-       |                                  ^~~~~~~
- deps/boost/libs/integer/include/boost/pending/integer_log2.hpp:7:1: note: in expansion of macro 'BOOST_HEADER_DEPRECATED'
-     7 | BOOST_HEADER_DEPRECATED("<boost/integer/integer_log2.hpp>");
-       | ^~~~~~~~~~~~~~~~~~~~~~~
- (cd _build/default/lib && /usr/bin/gcc -I. -Ideps/protobuf/src -Ideps/openssl/include -Ideps/libunwind/include -Ideps/boost/libs/asio/include -Ideps/boost/libs/chrono/include -Ideps/boost/libs/random/include -Ideps/boost/libs/format/include -Ideps/boost/libs/convert/include -Ideps/boost/libs/algorithm/include -Ideps/boost/libs/container_hash/include -Ideps/boost/libs/thread/include -Ideps/boost/libs/lambda/include -Ideps/boost/libs/foreach/include -Ideps/boost/libs/bind/include -Ideps/boost/libs/lexical_cast/include -Ideps/boost/libs/iterator/include -Ideps/boost/libs/config/include -Ideps/boost/libs/system/include -Ideps/boost/libs/throw_exception/include -Ideps/boost/libs/assert/include -Ideps/boost/libs/predef/include -Ideps/boost/libs/mpl/include -Ideps/boost/libs/preprocessor/include -Ideps/boost/libs/ratio/include -Ideps/boost/libs/type_traits/include -Ideps/boost/libs/core/include -Ideps/boost/libs/integer/include -Ideps/boost/libs/static_assert/include -Ideps/boost/libs/date_time/include -Ideps/boost/libs/smart_ptr/include -Ideps/boost/libs/utility/include -Ideps/boost/libs/numeric/conversion/include -Ideps/boost/libs/regex/include -Ideps/boost/libs/detail/include -Ideps/boost/libs/move/include -Ideps/boost/libs/optional/include -Ideps/boost/libs/tuple/include -Ideps/boost/libs/range/include -Ideps/boost/libs/concept_check/include -Ideps/boost/libs/array/include -Ideps/boost/libs/container/include -Ideps/boost/libs/math/include -Ideps/boost/libs/function/include -Ideps/boost/libs/type_index/include -fPIC -pthread -Wall -Wformat-security -Wno-char-subscripts -Wno-sign-compare -Wno-strict-overflow -Wwrite-strings -funsigned-char -std=c++0x -g -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ocaml/threads -o metrics.o -c metrics.cpp)
- In file included from deps/boost/libs/container_hash/include/boost/functional/hash.hpp:6,
-                  from log_writer.h:15,
-                  from metrics.h:11,
-                  from metrics.cpp:1:
- deps/boost/libs/container_hash/include/boost/container_hash/hash.hpp:130:33: warning: 'template<class _Arg, class _Result> struct std::unary_function' is deprecated [-Wdeprecated-declarations]
-   130 |         struct hash_base : std::unary_function<T, std::size_t> {};
-       |                                 ^~~~~~~~~~~~~~
- In file included from /usr/include/c++/12/bits/refwrap.h:39,
-                  from /usr/include/c++/12/vector:66,
-                  from metrics.h:4:
- /usr/include/c++/12/bits/stl_function.h:117:12: note: declared here
-   117 |     struct unary_function
-       |            ^~~~~~~~~~~~~~
- (cd _build/default/lib && /usr/bin/gcc -I. -Ideps/protobuf/src -Ideps/openssl/include -Ideps/libunwind/include -Ideps/boost/libs/asio/include -Ideps/boost/libs/chrono/include -Ideps/boost/libs/random/include -Ideps/boost/libs/format/include -Ideps/boost/libs/convert/include -Ideps/boost/libs/algorithm/include -Ideps/boost/libs/container_hash/include -Ideps/boost/libs/thread/include -Ideps/boost/libs/lambda/include -Ideps/boost/libs/foreach/include -Ideps/boost/libs/bind/include -Ideps/boost/libs/lexical_cast/include -Ideps/boost/libs/iterator/include -Ideps/boost/libs/config/include -Ideps/boost/libs/system/include -Ideps/boost/libs/throw_exception/include -Ideps/boost/libs/assert/include -Ideps/boost/libs/predef/include -Ideps/boost/libs/mpl/include -Ideps/boost/libs/preprocessor/include -Ideps/boost/libs/ratio/include -Ideps/boost/libs/type_traits/include -Ideps/boost/libs/core/include -Ideps/boost/libs/integer/include -Ideps/boost/libs/static_assert/include -Ideps/boost/libs/date_time/include -Ideps/boost/libs/smart_ptr/include -Ideps/boost/libs/utility/include -Ideps/boost/libs/numeric/conversion/include -Ideps/boost/libs/regex/include -Ideps/boost/libs/detail/include -Ideps/boost/libs/move/include -Ideps/boost/libs/optional/include -Ideps/boost/libs/tuple/include -Ideps/boost/libs/range/include -Ideps/boost/libs/concept_check/include -Ideps/boost/libs/array/include -Ideps/boost/libs/container/include -Ideps/boost/libs/math/include -Ideps/boost/libs/function/include -Ideps/boost/libs/type_index/include -fPIC -pthread -Wall -Wformat-security -Wno-char-subscripts -Wno-sign-compare -Wno-strict-overflow -Wwrite-strings -funsigned-char -std=c++0x -g -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ocaml/threads -o log_writer.o -c log_writer.cpp)
- In file included from deps/boost/libs/container_hash/include/boost/functional/hash.hpp:6,
-                  from log_writer.h:15,
-                  from log_writer.cpp:1:
- deps/boost/libs/container_hash/include/boost/container_hash/hash.hpp:130:33: warning: 'template<class _Arg, class _Result> struct std::unary_function' is deprecated [-Wdeprecated-declarations]
-   130 |         struct hash_base : std::unary_function<T, std::size_t> {};
-       |                                 ^~~~~~~~~~~~~~
- In file included from /usr/include/c++/12/string:48,
-                  from globals.h:8,
-                  from circular_queue.h:9,
-                  from log_writer.h:6:
- /usr/include/c++/12/bits/stl_function.h:117:12: note: declared here
-   117 |     struct unary_function
-       |            ^~~~~~~~~~~~~~
- (cd _build/default/lib && /usr/bin/gcc -I. -Ideps/protobuf/src -Ideps/openssl/include -Ideps/libunwind/include -Ideps/boost/libs/asio/include -Ideps/boost/libs/chrono/include -Ideps/boost/libs/random/include -Ideps/boost/libs/format/include -Ideps/boost/libs/convert/include -Ideps/boost/libs/algorithm/include -Ideps/boost/libs/container_hash/include -Ideps/boost/libs/thread/include -Ideps/boost/libs/lambda/include -Ideps/boost/libs/foreach/include -Ideps/boost/libs/bind/include -Ideps/boost/libs/lexical_cast/include -Ideps/boost/libs/iterator/include -Ideps/boost/libs/config/include -Ideps/boost/libs/system/include -Ideps/boost/libs/throw_exception/include -Ideps/boost/libs/assert/include -Ideps/boost/libs/predef/include -Ideps/boost/libs/mpl/include -Ideps/boost/libs/preprocessor/include -Ideps/boost/libs/ratio/include -Ideps/boost/libs/type_traits/include -Ideps/boost/libs/core/include -Ideps/boost/libs/integer/include -Ideps/boost/libs/static_assert/include -Ideps/boost/libs/date_time/include -Ideps/boost/libs/smart_ptr/include -Ideps/boost/libs/utility/include -Ideps/boost/libs/numeric/conversion/include -Ideps/boost/libs/regex/include -Ideps/boost/libs/detail/include -Ideps/boost/libs/move/include -Ideps/boost/libs/optional/include -Ideps/boost/libs/tuple/include -Ideps/boost/libs/range/include -Ideps/boost/libs/concept_check/include -Ideps/boost/libs/array/include -Ideps/boost/libs/container/include -Ideps/boost/libs/math/include -Ideps/boost/libs/function/include -Ideps/boost/libs/type_index/include -fPIC -pthread -Wall -Wformat-security -Wno-char-subscripts -Wno-sign-compare -Wno-strict-overflow -Wwrite-strings -funsigned-char -std=c++0x -g -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ocaml/threads -o profiler.o -c profiler.cpp)
- In file included from deps/boost/libs/container_hash/include/boost/functional/hash.hpp:6,
-                  from log_writer.h:15,
-                  from metrics.h:11,
-                  from collector_controller.h:12,
-                  from profiler.h:13,
-                  from profiler.cpp:1:
- deps/boost/libs/container_hash/include/boost/container_hash/hash.hpp:130:33: warning: 'template<class _Arg, class _Result> struct std::unary_function' is deprecated [-Wdeprecated-declarations]
-   130 |         struct hash_base : std::unary_function<T, std::size_t> {};
-       |                                 ^~~~~~~~~~~~~~
- In file included from /usr/include/c++/12/string:48,
-                  from /usr/include/c++/12/bits/locale_classes.h:40,
-                  from /usr/include/c++/12/bits/ios_base.h:41,
-                  from /usr/include/c++/12/ios:42,
-                  from /usr/include/c++/12/istream:38,
-                  from /usr/include/c++/12/sstream:38,
-                  from profiler.h:7:
- /usr/include/c++/12/bits/stl_function.h:117:12: note: declared here
-   117 |     struct unary_function
-       |            ^~~~~~~~~~~~~~
- (cd _build/default/lib/deps/openssl && /usr/bin/make -s)
- ar: creating apps/libapps.a
- ar: creating libcrypto.a
- ar: creating libssl.a
- ar: creating test/libtestutil.a
- (cd _build/default/lib && /usr/bin/gcc -I. -Ideps/protobuf/src -Ideps/openssl/include -Ideps/libunwind/include -Ideps/boost/libs/asio/include -Ideps/boost/libs/chrono/include -Ideps/boost/libs/random/include -Ideps/boost/libs/format/include -Ideps/boost/libs/convert/include -Ideps/boost/libs/algorithm/include -Ideps/boost/libs/container_hash/include -Ideps/boost/libs/thread/include -Ideps/boost/libs/lambda/include -Ideps/boost/libs/foreach/include -Ideps/boost/libs/bind/include -Ideps/boost/libs/lexical_cast/include -Ideps/boost/libs/iterator/include -Ideps/boost/libs/config/include -Ideps/boost/libs/system/include -Ideps/boost/libs/throw_exception/include -Ideps/boost/libs/assert/include -Ideps/boost/libs/predef/include -Ideps/boost/libs/mpl/include -Ideps/boost/libs/preprocessor/include -Ideps/boost/libs/ratio/include -Ideps/boost/libs/type_traits/include -Ideps/boost/libs/core/include -Ideps/boost/libs/integer/include -Ideps/boost/libs/static_assert/include -Ideps/boost/libs/date_time/include -Ideps/boost/libs/smart_ptr/include -Ideps/boost/libs/utility/include -Ideps/boost/libs/numeric/conversion/include -Ideps/boost/libs/regex/include -Ideps/boost/libs/detail/include -Ideps/boost/libs/move/include -Ideps/boost/libs/optional/include -Ideps/boost/libs/tuple/include -Ideps/boost/libs/range/include -Ideps/boost/libs/concept_check/include -Ideps/boost/libs/array/include -Ideps/boost/libs/container/include -Ideps/boost/libs/math/include -Ideps/boost/libs/function/include -Ideps/boost/libs/type_index/include -fPIC -pthread -Wall -Wformat-security -Wno-char-subscripts -Wno-sign-compare -Wno-strict-overflow -Wwrite-strings -funsigned-char -std=c++0x -g -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ocaml/threads -o network.o -c network.cpp)
- In file included from deps/boost/libs/container_hash/include/boost/functional/hash.hpp:6,
-                  from log_writer.h:15,
-                  from metrics.h:11,
-                  from collector_controller.h:12,
-                  from network.cpp:3:
- deps/boost/libs/container_hash/include/boost/container_hash/hash.hpp:130:33: warning: 'template<class _Arg, class _Result> struct std::unary_function' is deprecated [-Wdeprecated-declarations]
-   130 |         struct hash_base : std::unary_function<T, std::size_t> {};
-       |                                 ^~~~~~~~~~~~~~
- In file included from /usr/include/c++/12/string:48,
-                  from globals.h:8,
-                  from network.h:4,
-                  from network.cpp:1:
- /usr/include/c++/12/bits/stl_function.h:117:12: note: declared here
-   117 |     struct unary_function
-       |            ^~~~~~~~~~~~~~
-> compiled  opsian.0.1
-> removed   opsian.0.1
-> installed opsian.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 21:57.35 ---> saved as "f32020702d4f9d2c3f138c9663ac4c032066d88758a22b872f8240119e6e1aba"
Job succeeded
2025-08-05 21:57.46: Job succeeded