postgres likely remains stuck in a busy-poll loop. A diagnosis report and patch proposal were created locally.
Published session
Prompt
## Plan Pass
You are planning a fixer patch before any edits happen.
Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. The original pre-edit snapshot is available at `./source` if you need to inspect it. For interpreter processes, plan from the script/application entrypoint evidence first and include the runtime only as a second investigation target unless the evidence proves a runtime bug.
Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`, `meson setup build-fix && meson compile -C build-fix && meson test -C build-fix`, `make` and, if available, `make check`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.
Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `postgresql-18` upstream patch, not just a Debian-local workaround. Inspect the relevant code, nearby callers, project contribution docs, and local helper/compat APIs, but do not edit files in this pass.
Return a short markdown plan with these exact sections:
## Problem
## Evidence Confidence
## Proposed Subject
## Patch Plan
## Risks
## Validation
Classify `## Evidence Confidence` as exactly one of `reproduced`, `observed`, or `inferred`. Use `inferred` only for a no-patch diagnosis/report plan unless you can name the extra evidence you will collect before editing; inferred source patches are blocked by Fixer because they are not pull-request-ready. For `observed` source-patch plans, plan to say in the final `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. The plan must explain how the proposed code change addresses the observed issue evidence, call out any prior Fixer patch that should be improved or replaced, reject awkward control flow such as avoidable `goto` if there is a cleaner bounded alternative, name any local helper APIs or maintainer conventions the patch should follow, and keep the intended maintainer-facing explanation clear enough that someone unfamiliar with the local complaint wording can still follow the fix. In `## Validation`, name the reproducible configure/build/test entrypoint you will try from the workspace root before any focused leaf compile or smoke check, and include one bounded independent reproduction attempt for the collected failure signal when it is safe and cheap. Do not plan to claim `reproduced` unless that reproduction command or test can actually show the failure.
## Patch Pass
You are working on a bounded fixer proposal.
Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Produce the smallest reasonable patch for the target repository, keep the change upstreamable, prefer the clearest control flow available, and do not keep avoidable `goto` when a simpler structure would read better. Before introducing new file, process, allocation, locking, networking, or platform APIs, inspect nearby code and project contribution docs for existing helpers or compatibility wrappers and use those local patterns unless you can explain why they do not fit. Validate from a reproducible workspace-root entrypoint before falling back to focused leaf commands; if a build or test cannot run, report the exact command, the exact blocker, and any narrower check you ran instead. During validation, also try one bounded independent reproduction of the collected failure signal when it is safe and cheap, such as a failing test, smoke command, perf/strace comparison, or before/after runtime check. Only use `reproduced` if that command or test actually reproduced the failure; otherwise keep `observed` and report the reproduction blocker. The final explanation must connect the observed issue evidence to the actual code change, not just paraphrase the diff. Write like a maintainer is going to read the patch mail cold: explain the bug in plain language, define subsystem-specific jargon the first time you need it, and make the causal story obvious. Explicitly classify evidence confidence as `reproduced`, `observed`, or `inferred`: `reproduced` means you reproduced the failure locally; `observed` means Fixer has direct crash/log/trace evidence but you did not independently reproduce it; `inferred` means the source patch is not pull-request-ready, so do not leave a source diff unless you first gather stronger observed/reproduced evidence; otherwise return a no-patch diagnosis/report. For any source-changing `observed` patch, say explicitly in `## Issue Connection` that the failure was observed by Fixer and not independently reproduced. If you introduce non-obvious state translation, index remapping, or backend split logic, add a short source comment that explains the invariant being preserved.
Start by explaining the likely root cause from the collected perf, strace, and /proc evidence. If you cannot land a safe patch, leave a diagnosis that is strong enough for an upstream bug report.
Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`, `meson setup build-fix && meson compile -C build-fix && meson test -C build-fix`, `make` and, if available, `make check`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout.
Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `postgresql-18` upstream patch, not just a Debian-local workaround.
Keep the change narrowly scoped and summarize validation clearly.
In every authoring pass, your final response must start with `Subject: <single-line git commit subject>` and then include these markdown sections exactly:
## Commit Message
A short upstream-friendly explanation of what changed and why. Write it in plain language that a maintainer can follow without local complaint context. If you use subsystem jargon, define it immediately.
## Evidence Confidence
Exactly one word: `reproduced`, `observed`, or `inferred`. Use `reproduced` only when you reproduced the failure locally with a command or test, and include that command/test in `## Validation`. Use `observed` when Fixer has direct crash/log/trace evidence but you did not independently reproduce it. If `## Git Add Paths` lists source files for an `observed` patch, `## Issue Connection` must explicitly say the failure was observed by Fixer and not independently reproduced. Use `inferred` for profiler/strace/indirect evidence; inferred responses may be no-patch diagnoses or reports, but inferred source patches are not pull-request-ready until stronger evidence is gathered.
## Issue Connection
Write this as maintainer-facing patch mail, not as local Fixer notes. Cover four things explicitly in readable sentences: the user-visible symptom or the exact collected signal, the code-level cause or the cautious inference from evidence, the specific change you made, and the expected effect. Do not invent a reproducer, command line, crash, or user-visible failure that is not present in the evidence bundle. If the evidence is direct-but-not-reproduced, say it was observed by Fixer and not independently reproduced. If the evidence is indirect and you did not gather stronger evidence, do not leave a source diff; write a no-patch diagnosis/report instead. Include an explicit effect sentence such as `The expected effect is ...`, `This should reduce ...`, or `This prevents ...` for source patches. If the logic is non-obvious in code, mention that you added a short explanatory comment.
## Git Add Paths
List the repo-relative paths that belong in the final patch, one per line. Use `None` only when you intentionally made no source changes. Include intentionally new files, and do not list generated build artifacts.
## Validation
List the checks you ran, or say clearly that you could not run them. Include the independent reproduction command/test and result when `## Evidence Confidence` is `reproduced`; if reproduction was attempted but blocked, name the exact blocker and keep confidence at `observed` or `inferred`.
Before editing, read the plan at `./plan-output.txt` and follow it unless the code proves part of it wrong. If you change course, say so explicitly in the final write-up instead of silently drifting from the plan.
## Review Pass 1
You are reviewing a freshly generated fixer patch.
Read the evidence bundle at `./evidence.json`. The prepared workspace is `./workspace` and it was acquired via `debian-source`. Review the first patch pass. The original pre-edit snapshot is available at `./source` for diffing.
Upstream-style expectation: before planning or editing, check for contribution/style docs (`CONTRIBUTING`, `HACKING`, `README-hacking`, `README.md`, `docs/`, `dev-docs/`) and scan the touched subsystem for local helpers. If the project has wrappers for file IO, path-relative IO, process spawning, memory allocation, logging, locking, or platform compatibility, prefer those wrappers over generic libc/std APIs. Do not invent a reproducer or user-visible failure that is not in the evidence bundle; if the evidence is profiler-only or indirect, describe it as a targeted mitigation or stop with a diagnosis instead of presenting a speculative patch as a confirmed bug fix. In the plan and final validation, name any such helper, convention, or evidence limit you found, or say that no relevant local helper was found. Treat this as a `postgresql-18` upstream patch, not just a Debian-local workaround.
Validation expectation: try the project-level build/test entrypoint from the workspace root before reporting only a focused leaf compile. Detected candidate(s): `./configure && make`, `meson setup build-fix && meson compile -C build-fix && meson test -C build-fix`, `make` and, if available, `make check`. If the project-level command fails because dependencies or generated files are missing, include the exact command and failure reason in `## Validation`, then run the narrowest relevant compile/test that is still reproducible from a clean checkout. The latest author response is at `./patch-output.txt`. Inspect the current code and changed paths like a strict code reviewer. Focus on correctness, regressions, maintainability, awkward control flow such as avoidable `goto`, missing validation, weak or non-gittable commit message text, and explanations that fail to connect the observed issue evidence to the code change. Also review the maintainer experience: the patch mail should be easy to accept upstream, the user-visible bug should be explained in plain language, subsystem-specific jargon should be defined when first used, and any non-obvious state translation or index remapping in code should have a short explanatory comment. Reject patches that omit `## Evidence Confidence`, use anything other than `reproduced`, `observed`, or `inferred`, or sound more certain than that evidence level allows. Reject patches that claim `reproduced` unless `## Validation` names the concrete reproduction command or test and its result. Reject patches that invent a reproducer, command line, crash, or user-visible failure not present in the evidence bundle; indirect profiler or strace evidence may justify a cautious mitigation, but the author must say it is indirect instead of presenting it as a confirmed upstream bug. Reject patches that introduce generic libc/std APIs when nearby code or project docs provide a local compat/helper API for the same job, unless the author explicitly justifies the exception. Reject validation that only reports a leaf object/syntax build when a project-level configure/build/test entrypoint exists and was not attempted; if a full build cannot run, the author must show the exact failed command and blocker.
Do not apply code changes in this pass.
Return a short markdown review report. The first non-empty line must be exactly one of:
RESULT: ok
RESULT: fix-needed
If you choose `RESULT: fix-needed`, add a `## Findings` section with concrete, actionable items.
Response
## Plan Pass
## Problem
Fixer observed the `postgres` postmaster in `WaitEventSetWait()`/`epoll_wait()` and classified it as a likely busy poll loop, but the bundle shows only one `epoll_wait` strace line, process state `S (sleeping)`, `wchan=do_epoll_wait`, and total sampled CPU around 0.7%. The visible code path is the normal postmaster idle loop in `src/backend/postmaster/postmaster.c`, using PostgreSQL’s `WaitEventSet` helper abstraction from `src/backend/storage/ipc/waiteventset.c`.
## Evidence Confidence
inferred
## Proposed Subject
No source patch yet: diagnose Fixer’s postmaster `epoll_wait` busy-poll report as non-actionable without an independently reproduced zero-timeout or repeated-wakeup signal.
## Patch Plan
Do not edit in this pass. The current evidence does not prove a PostgreSQL runtime bug: `DetermineSleepTime()` bounds the postmaster sleep to at most 60 seconds, `ServerLoop()` waits through `WaitEventSetWait()`, and the epoll backend blocks in `epoll_wait()` with the computed timeout.
Before any future patch, collect extra evidence that can distinguish normal blocking from a real wakeup loop: repeated `strace -tt -T -e epoll_wait -p <postmaster-pid>` samples showing immediate returns, plus wait-set caller context if possible. If that evidence shows a PostgreSQL issue, patch the smallest implicated caller or `WaitEventSet` path using existing helpers (`WaitEventSetWait`, `ResetLatch`, `TimestampDifferenceMilliseconds`, PostgreSQL `ereport`/`elog` style) and avoid awkward control flow such as adding a `goto` around the bounded event loop.
No prior Fixer patch was present in the workspace (`git status --short` was clean), so there is no existing patch to improve or replace. Style docs found: `README.md`, `src/DEVELOPERS`, `src/tools/pgindent/README`, and PostgreSQL build/test docs under `doc/src/sgml/`; maintainer convention is upstream PostgreSQL C style with `pgindent`.
## Risks
A source patch from the current bundle would be speculative and likely paper over normal postmaster idle behavior. Adding sleeps, suppressing waits, or changing latch handling without reproduction risks delaying shutdown/reload/child-exit handling or connection acceptance.
## Validation
If later evidence justifies a patch, first try the project-level entrypoint from the workspace root: `./configure && make`, followed by `make check` if the build succeeds. If dependencies or generated files block that, record the exact failure and then run the narrowest relevant compile, likely the backend objects touching `src/backend/postmaster/postmaster.c` or `src/backend/storage/ipc/waiteventset.c`.
Bounded independent reproduction attempt before editing: run a local postmaster/initdb smoke test if the build is available, then sample the postmaster with `strace -tt -T -e epoll_wait` for a few seconds to verify whether `epoll_wait` repeatedly returns immediately. Do not claim `reproduced` unless that command actually shows repeated wakeups.
## Patch Pass
Subject: Diagnose postmaster epoll_wait sample without source changes
## Commit Message
No source change. The collected signal points at the PostgreSQL postmaster sleeping in `epoll_wait`, not at a proven busy loop. The relevant code already uses PostgreSQL’s `WaitEventSet` wait abstraction, with the postmaster sleep bounded by `DetermineSleepTime()`.
## Evidence Confidence
inferred
## Issue Connection
The likely root cause from the perf, strace, and `/proc` evidence is a false positive in the busy-poll classification. Fixer sampled the postmaster in `WaitEventSetWait()` and then `epoll_wait`, but `/proc` reported state `S (sleeping)`, `wchan=do_epoll_wait`, total CPU around 0.7%, and strace captured only one `epoll_wait` line over five seconds rather than repeated immediate returns.
At code level, the implicated path is the normal postmaster idle loop: `ServerLoop()` calls `WaitEventSetWait()` with `DetermineSleepTime()`, and `DetermineSleepTime()` bounds normal sleeps to 60 seconds. `WaitEventSet` is PostgreSQL’s local portability helper for epoll/poll/kqueue/Win32 waiting, so replacing or bypassing it would be less upstreamable than using the existing abstraction.
I followed the saved plan and did not change course: without stronger evidence showing repeated zero-duration wakeups, there is no safe source patch to land. No explanatory source comment was added because there is no non-obvious new logic.
The expected effect of leaving the tree unchanged is to avoid a speculative change that could delay shutdown, reload, child-exit handling, or connection acceptance in the postmaster.
## Git Add Paths
None
## Validation
`meson setup build-fix`: passed from the workspace root.
`meson compile -C build-fix`: failed initially before compiling PostgreSQL code because `ccache` reported `Read-only file system`.
`CCACHE_DISABLE=1 meson compile -C build-fix`: passed, including `src/backend/postgres`.
`CCACHE_DISABLE=1 meson test -C build-fix`: failed. Exact blocker: the suite setup test `setup - postgresql:initdb_cache` failed with `initdb: error: cannot be run as root`, which cascaded into most database tests.
Independent reproduction attempt: tried to start a minimal unprivileged `/tmp` cluster and trace `epoll_wait`. `runuser -u nobody ...` failed with `cannot set groups: Operation not permitted`; `setpriv --reuid=... --regid=... --clear-groups ...` failed with `setresuid failed: Invalid argument`. The original sampled PID `1142101` is not present, so I could not independently reproduce the wakeup signal.
## Review Pass 1
RESULT: ok
No findings. The first pass leaves no source diff, uses `inferred` confidence, does not claim reproduction, and correctly treats the profiler/strace evidence as insufficient for an upstream PostgreSQL source patch.
I confirmed the workspace has no tracked changes. The author attempted a project-level Meson configure/build/test path, reported the `ccache` and root `initdb` blockers, and documented a bounded but blocked independent reproduction attempt. The explanation also names the relevant local helper abstraction, `WaitEventSet`, and avoids presenting the indirect evidence as a confirmed PostgreSQL bug.
Diff
--- a/build-fix/build.ninja 1970-01-01 04:00:00.000000000 +0400
+++ b/build-fix/build.ninja 2026-05-13 01:47:39.049864335 +0400
@@ -0,0 +1,12337 @@
+# This is the build file for project "postgresql"
+# It is autogenerated by the Meson build system.
+# Do not edit by hand.
+
+ninja_required_version = 1.8.2
+
+# Rules for module scanning.
+
+# Rules for compiling.
+
+rule c_COMPILER
+ command = /usr/bin/ccache cc $ARGS -MD -MQ $out -MF $DEPFILE -o $out -c $in
+ deps = gcc
+ depfile = $DEPFILE_UNQUOTED
+ description = Compiling C object $out
+
+# Rules for linking.
+
+rule STATIC_LINKER
+ command = rm -f $out && gcc-ar $LINK_ARGS $out $in
+ description = Linking static target $out
+
+rule STATIC_LINKER_RSP
+ command = rm -f $out && gcc-ar $LINK_ARGS $out @$out.rsp
+ rspfile = $out.rsp
+ rspfile_content = $in
+ description = Linking static target $out
+
+rule c_LINKER
+ command = cc $ARGS -o $out $in $LINK_ARGS
+ description = Linking target $out
+
+rule c_LINKER_RSP
+ command = cc @$out.rsp
+ rspfile = $out.rsp
+ rspfile_content = $ARGS -o $out $in $LINK_ARGS
+ description = Linking target $out
+
+rule SHSYM
+ command = /usr/bin/meson --internal symbolextractor b/build-fix $in $IMPLIB $out $CROSS
+ description = Generating symbol file $out
+ restat = 1
+
+# Other rules
+
+rule CUSTOM_COMMAND
+ command = $COMMAND
+ description = $DESC
+ restat = 1
+
+rule CUSTOM_COMMAND_DEP
+ command = $COMMAND
+ deps = gcc
+ depfile = $DEPFILE_UNQUOTED
+ description = $DESC
+ restat = 1
+
+rule REGENERATE_BUILD
+ command = /usr/bin/meson --internal regenerate b .
+ description = Regenerating build files
+ generator = 1
+
+# Phony build target, always out of date
+
+build PHONY: phony
+
+# Build rules for targets
+
+build src/include/catalog/postgres.bki src/include/catalog/system_constraints.sql src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_fk_info.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h: CUSTOM_COMMAND ../src/include/catalog/pg_proc.h ../src/include/catalog/pg_type.h ../src/include/catalog/pg_attribute.h ../src/include/catalog/pg_class.h ../src/include/catalog/pg_attrdef.h ../src/include/catalog/pg_constraint.h ../src/include/catalog/pg_inherits.h ../src/include/catalog/pg_index.h ../src/include/catalog/pg_operator.h ../src/include/catalog/pg_opfamily.h ../src/include/catalog/pg_opclass.h ../src/include/catalog/pg_am.h ../src/include/catalog/pg_amop.h ../src/include/catalog/pg_amproc.h ../src/include/catalog/pg_language.h ../src/include/catalog/pg_largeobject_metadata.h ../src/include/catalog/pg_largeobject.h ../src/include/catalog/pg_aggregate.h ../src/include/catalog/pg_statistic.h ../src/include/catalog/pg_statistic_ext.h ../src/include/catalog/pg_statistic_ext_data.h ../src/include/catalog/pg_rewrite.h ../src/include/catalog/pg_trigger.h ../src/include/catalog/pg_event_trigger.h ../src/include/catalog/pg_description.h ../src/include/catalog/pg_cast.h ../src/include/catalog/pg_enum.h ../src/include/catalog/pg_namespace.h ../src/include/catalog/pg_conversion.h ../src/include/catalog/pg_depend.h ../src/include/catalog/pg_database.h ../src/include/catalog/pg_db_role_setting.h ../src/include/catalog/pg_tablespace.h ../src/include/catalog/pg_authid.h ../src/include/catalog/pg_auth_members.h ../src/include/catalog/pg_shdepend.h ../src/include/catalog/pg_shdescription.h ../src/include/catalog/pg_ts_config.h ../src/include/catalog/pg_ts_config_map.h ../src/include/catalog/pg_ts_dict.h ../src/include/catalog/pg_ts_parser.h ../src/include/catalog/pg_ts_template.h ../src/include/catalog/pg_extension.h ../src/include/catalog/pg_foreign_data_wrapper.h ../src/include/catalog/pg_foreign_server.h ../src/include/catalog/pg_user_mapping.h ../src/include/catalog/pg_foreign_table.h ../src/include/catalog/pg_policy.h ../src/include/catalog/pg_replication_origin.h ../src/include/catalog/pg_default_acl.h ../src/include/catalog/pg_init_privs.h ../src/include/catalog/pg_seclabel.h ../src/include/catalog/pg_shseclabel.h ../src/include/catalog/pg_collation.h ../src/include/catalog/pg_parameter_acl.h ../src/include/catalog/pg_partitioned_table.h ../src/include/catalog/pg_range.h ../src/include/catalog/pg_transform.h ../src/include/catalog/pg_sequence.h ../src/include/catalog/pg_publication.h ../src/include/catalog/pg_publication_namespace.h ../src/include/catalog/pg_publication_rel.h ../src/include/catalog/pg_subscription.h ../src/include/catalog/pg_subscription_rel.h | ../src/backend/catalog/Catalog.pm ../src/include/catalog/../../backend/catalog/genbki.pl ../src/include/catalog/pg_aggregate.dat ../src/include/catalog/pg_am.dat ../src/include/catalog/pg_amop.dat ../src/include/catalog/pg_amproc.dat ../src/include/catalog/pg_authid.dat ../src/include/catalog/pg_cast.dat ../src/include/catalog/pg_class.dat ../src/include/catalog/pg_collation.dat ../src/include/catalog/pg_conversion.dat ../src/include/catalog/pg_database.dat ../src/include/catalog/pg_language.dat ../src/include/catalog/pg_namespace.dat ../src/include/catalog/pg_opclass.dat ../src/include/catalog/pg_operator.dat ../src/include/catalog/pg_opfamily.dat ../src/include/catalog/pg_proc.dat ../src/include/catalog/pg_range.dat ../src/include/catalog/pg_tablespace.dat ../src/include/catalog/pg_ts_config.dat ../src/include/catalog/pg_ts_config_map.dat ../src/include/catalog/pg_ts_dict.dat ../src/include/catalog/pg_ts_parser.dat ../src/include/catalog/pg_ts_template.dat ../src/include/catalog/pg_type.dat /usr/bin/perl
+ COMMAND = /usr/bin/perl ../src/include/catalog/../../backend/catalog/genbki.pl --include-path=../src/include --set-version=18 --output=src/include/catalog ../src/include/catalog/pg_proc.h ../src/include/catalog/pg_type.h ../src/include/catalog/pg_attribute.h ../src/include/catalog/pg_class.h ../src/include/catalog/pg_attrdef.h ../src/include/catalog/pg_constraint.h ../src/include/catalog/pg_inherits.h ../src/include/catalog/pg_index.h ../src/include/catalog/pg_operator.h ../src/include/catalog/pg_opfamily.h ../src/include/catalog/pg_opclass.h ../src/include/catalog/pg_am.h ../src/include/catalog/pg_amop.h ../src/include/catalog/pg_amproc.h ../src/include/catalog/pg_language.h ../src/include/catalog/pg_largeobject_metadata.h ../src/include/catalog/pg_largeobject.h ../src/include/catalog/pg_aggregate.h ../src/include/catalog/pg_statistic.h ../src/include/catalog/pg_statistic_ext.h ../src/include/catalog/pg_statistic_ext_data.h ../src/include/catalog/pg_rewrite.h ../src/include/catalog/pg_trigger.h ../src/include/catalog/pg_event_trigger.h ../src/include/catalog/pg_description.h ../src/include/catalog/pg_cast.h ../src/include/catalog/pg_enum.h ../src/include/catalog/pg_namespace.h ../src/include/catalog/pg_conversion.h ../src/include/catalog/pg_depend.h ../src/include/catalog/pg_database.h ../src/include/catalog/pg_db_role_setting.h ../src/include/catalog/pg_tablespace.h ../src/include/catalog/pg_authid.h ../src/include/catalog/pg_auth_members.h ../src/include/catalog/pg_shdepend.h ../src/include/catalog/pg_shdescription.h ../src/include/catalog/pg_ts_config.h ../src/include/catalog/pg_ts_config_map.h ../src/include/catalog/pg_ts_dict.h ../src/include/catalog/pg_ts_parser.h ../src/include/catalog/pg_ts_template.h ../src/include/catalog/pg_extension.h ../src/include/catalog/pg_foreign_data_wrapper.h ../src/include/catalog/pg_foreign_server.h ../src/include/catalog/pg_user_mapping.h ../src/include/catalog/pg_foreign_table.h ../src/include/catalog/pg_policy.h ../src/include/catalog/pg_replication_origin.h ../src/include/catalog/pg_default_acl.h ../src/include/catalog/pg_init_privs.h ../src/include/catalog/pg_seclabel.h ../src/include/catalog/pg_shseclabel.h ../src/include/catalog/pg_collation.h ../src/include/catalog/pg_parameter_acl.h ../src/include/catalog/pg_partitioned_table.h ../src/include/catalog/pg_range.h ../src/include/catalog/pg_transform.h ../src/include/catalog/pg_sequence.h ../src/include/catalog/pg_publication.h ../src/include/catalog/pg_publication_namespace.h ../src/include/catalog/pg_publication_rel.h ../src/include/catalog/pg_subscription.h ../src/include/catalog/pg_subscription_rel.h
+ description = Generating$ src/include/catalog/generated_catalog_headers$ with$ a$ custom$ command
+
+build reformat-dat-files: phony meson-internal__reformat-dat-files
+
+build meson-internal__reformat-dat-files: CUSTOM_COMMAND | ../src/include/catalog/pg_aggregate.dat ../src/include/catalog/pg_am.dat ../src/include/catalog/pg_amop.dat ../src/include/catalog/pg_amproc.dat ../src/include/catalog/pg_authid.dat ../src/include/catalog/pg_cast.dat ../src/include/catalog/pg_class.dat ../src/include/catalog/pg_collation.dat ../src/include/catalog/pg_conversion.dat ../src/include/catalog/pg_database.dat ../src/include/catalog/pg_language.dat ../src/include/catalog/pg_namespace.dat ../src/include/catalog/pg_opclass.dat ../src/include/catalog/pg_operator.dat ../src/include/catalog/pg_opfamily.dat ../src/include/catalog/pg_proc.dat ../src/include/catalog/pg_range.dat ../src/include/catalog/pg_tablespace.dat ../src/include/catalog/pg_ts_config.dat ../src/include/catalog/pg_ts_config_map.dat ../src/include/catalog/pg_ts_dict.dat ../src/include/catalog/pg_ts_parser.dat ../src/include/catalog/pg_ts_template.dat ../src/include/catalog/pg_type.dat ../src/include/catalog/reformat_dat_file.pl /usr/bin/perl
+ COMMAND = env MESON_SOURCE_ROOT=b MESON_BUILD_ROOT=b/build-fix MESON_SUBDIR=src/include/catalog 'MESONINTROSPECT=/usr/bin/meson$ introspect' /usr/bin/perl ../src/include/catalog/reformat_dat_file.pl --output ../src/include/catalog ../src/include/catalog/pg_aggregate.dat ../src/include/catalog/pg_am.dat ../src/include/catalog/pg_amop.dat ../src/include/catalog/pg_amproc.dat ../src/include/catalog/pg_authid.dat ../src/include/catalog/pg_cast.dat ../src/include/catalog/pg_class.dat ../src/include/catalog/pg_collation.dat ../src/include/catalog/pg_conversion.dat ../src/include/catalog/pg_database.dat ../src/include/catalog/pg_language.dat ../src/include/catalog/pg_namespace.dat ../src/include/catalog/pg_opclass.dat ../src/include/catalog/pg_operator.dat ../src/include/catalog/pg_opfamily.dat ../src/include/catalog/pg_proc.dat ../src/include/catalog/pg_range.dat ../src/include/catalog/pg_tablespace.dat ../src/include/catalog/pg_ts_config.dat ../src/include/catalog/pg_ts_config_map.dat ../src/include/catalog/pg_ts_dict.dat ../src/include/catalog/pg_ts_parser.dat ../src/include/catalog/pg_ts_template.dat ../src/include/catalog/pg_type.dat
+ description = Running$ external$ command$ reformat-dat-files$ (wrapped$ by$ meson$ to$ set$ env)
+ pool = console
+
+build expand-dat-files: phony meson-internal__expand-dat-files
+
+build meson-internal__expand-dat-files: CUSTOM_COMMAND | ../src/include/catalog/pg_aggregate.dat ../src/include/catalog/pg_am.dat ../src/include/catalog/pg_amop.dat ../src/include/catalog/pg_amproc.dat ../src/include/catalog/pg_authid.dat ../src/include/catalog/pg_cast.dat ../src/include/catalog/pg_class.dat ../src/include/catalog/pg_collation.dat ../src/include/catalog/pg_conversion.dat ../src/include/catalog/pg_database.dat ../src/include/catalog/pg_language.dat ../src/include/catalog/pg_namespace.dat ../src/include/catalog/pg_opclass.dat ../src/include/catalog/pg_operator.dat ../src/include/catalog/pg_opfamily.dat ../src/include/catalog/pg_proc.dat ../src/include/catalog/pg_range.dat ../src/include/catalog/pg_tablespace.dat ../src/include/catalog/pg_ts_config.dat ../src/include/catalog/pg_ts_config_map.dat ../src/include/catalog/pg_ts_dict.dat ../src/include/catalog/pg_ts_parser.dat ../src/include/catalog/pg_ts_template.dat ../src/include/catalog/pg_type.dat ../src/include/catalog/reformat_dat_file.pl /usr/bin/perl
+ COMMAND = env MESON_SOURCE_ROOT=b MESON_BUILD_ROOT=b/build-fix MESON_SUBDIR=src/include/catalog 'MESONINTROSPECT=/usr/bin/meson$ introspect' /usr/bin/perl ../src/include/catalog/reformat_dat_file.pl --output ../src/include/catalog ../src/include/catalog/pg_aggregate.dat ../src/include/catalog/pg_am.dat ../src/include/catalog/pg_amop.dat ../src/include/catalog/pg_amproc.dat ../src/include/catalog/pg_authid.dat ../src/include/catalog/pg_cast.dat ../src/include/catalog/pg_class.dat ../src/include/catalog/pg_collation.dat ../src/include/catalog/pg_conversion.dat ../src/include/catalog/pg_database.dat ../src/include/catalog/pg_language.dat ../src/include/catalog/pg_namespace.dat ../src/include/catalog/pg_opclass.dat ../src/include/catalog/pg_operator.dat ../src/include/catalog/pg_opfamily.dat ../src/include/catalog/pg_proc.dat ../src/include/catalog/pg_range.dat ../src/include/catalog/pg_tablespace.dat ../src/include/catalog/pg_ts_config.dat ../src/include/catalog/pg_ts_config_map.dat ../src/include/catalog/pg_ts_dict.dat ../src/include/catalog/pg_ts_parser.dat ../src/include/catalog/pg_ts_template.dat ../src/include/catalog/pg_type.dat --full-tuples
+ description = Running$ external$ command$ expand-dat-files$ (wrapped$ by$ meson$ to$ set$ env)
+ pool = console
+
+build src/include/nodes/nodetags.h src/include/nodes/outfuncs.funcs.c src/include/nodes/outfuncs.switch.c src/include/nodes/readfuncs.funcs.c src/include/nodes/readfuncs.switch.c src/include/nodes/copyfuncs.funcs.c src/include/nodes/copyfuncs.switch.c src/include/nodes/equalfuncs.funcs.c src/include/nodes/equalfuncs.switch.c src/include/nodes/queryjumblefuncs.funcs.c src/include/nodes/queryjumblefuncs.switch.c: CUSTOM_COMMAND b/src/include/nodes/nodes.h b/src/include/nodes/primnodes.h b/src/include/nodes/parsenodes.h b/src/include/nodes/pathnodes.h b/src/include/nodes/plannodes.h b/src/include/nodes/execnodes.h b/src/include/access/amapi.h b/src/include/access/cmptype.h b/src/include/access/sdir.h b/src/include/access/tableam.h b/src/include/access/tsmapi.h b/src/include/commands/event_trigger.h b/src/include/commands/trigger.h b/src/include/executor/tuptable.h b/src/include/foreign/fdwapi.h b/src/include/nodes/bitmapset.h b/src/include/nodes/extensible.h b/src/include/nodes/lockoptions.h b/src/include/nodes/miscnodes.h b/src/include/nodes/replnodes.h b/src/include/nodes/supportnodes.h b/src/include/nodes/value.h b/src/include/utils/rel.h | ../src/backend/catalog/Catalog.pm ../src/include/nodes/../../backend/nodes/gen_node_support.pl /usr/bin/perl
+ COMMAND = /usr/bin/perl ../src/include/nodes/../../backend/nodes/gen_node_support.pl -o src/include/nodes b/src/include/nodes/nodes.h b/src/include/nodes/primnodes.h b/src/include/nodes/parsenodes.h b/src/include/nodes/pathnodes.h b/src/include/nodes/plannodes.h b/src/include/nodes/execnodes.h b/src/include/access/amapi.h b/src/include/access/cmptype.h b/src/include/access/sdir.h b/src/include/access/tableam.h b/src/include/access/tsmapi.h b/src/include/commands/event_trigger.h b/src/include/commands/trigger.h b/src/include/executor/tuptable.h b/src/include/foreign/fdwapi.h b/src/include/nodes/bitmapset.h b/src/include/nodes/extensible.h b/src/include/nodes/lockoptions.h b/src/include/nodes/miscnodes.h b/src/include/nodes/replnodes.h b/src/include/nodes/supportnodes.h b/src/include/nodes/value.h b/src/include/utils/rel.h
+ description = Generating$ src/include/nodes/nodetags.h$ with$ a$ custom$ command
+
+build src/include/storage/lwlocknames.h: CUSTOM_COMMAND ../src/include/storage/../../include/storage/lwlocklist.h ../src/include/storage/../../backend/utils/activity/wait_event_names.txt | ../src/include/storage/../../backend/storage/lmgr/generate-lwlocknames.pl /usr/bin/perl
+ COMMAND = /usr/bin/perl ../src/include/storage/../../backend/storage/lmgr/generate-lwlocknames.pl -o src/include/storage ../src/include/storage/../../include/storage/lwlocklist.h ../src/include/storage/../../backend/utils/activity/wait_event_names.txt
+ description = Generating$ src/include/storage/lwlocknames_h$ with$ a$ custom$ command
+
+build src/include/utils/wait_event_types.h src/include/utils/pgstat_wait_event.c src/include/utils/wait_event_funcs_data.c: CUSTOM_COMMAND ../src/include/utils/../../backend/utils/activity/wait_event_names.txt | ../src/include/utils/../../backend/utils/activity/generate-wait_event_types.pl /usr/bin/perl
+ COMMAND = /usr/bin/perl ../src/include/utils/../../backend/utils/activity/generate-wait_event_types.pl --outdir src/include/utils --code ../src/include/utils/../../backend/utils/activity/wait_event_names.txt
+ description = Generating$ src/include/utils/wait_event_names$ with$ a$ custom$ command
+
+build src/include/utils/errcodes.h: CUSTOM_COMMAND ../src/include/utils/../../backend/utils/errcodes.txt | ../src/include/utils/../../backend/utils/generate-errcodes.pl /usr/bin/perl
+ COMMAND = /usr/bin/perl ../src/include/utils/../../backend/utils/generate-errcodes.pl --outfile src/include/utils/errcodes.h ../src/include/utils/../../backend/utils/errcodes.txt
+ description = Generating$ src/include/utils/errcodes$ with$ a$ custom$ command
+
+build src/include/utils/probes.h: CUSTOM_COMMAND ../src/include/utils/../../backend/utils/probes.d | ../src/include/utils/../../backend/utils/Gen_dummy_probes.pl /usr/bin/perl
+ COMMAND = /usr/bin/meson --internal exe --capture src/include/utils/probes.h -- /usr/bin/perl -n ../src/include/utils/../../backend/utils/Gen_dummy_probes.pl ../src/include/utils/../../backend/utils/probes.d
+ description = Generating$ src/include/utils/probes.h$ with$ a$ custom$ command$ (wrapped$ by$ meson$ to$ capture$ output)
+
+build src/include/utils/fmgroids.h src/include/utils/fmgrprotos.h src/include/utils/fmgrtab.c: CUSTOM_COMMAND ../src/include/utils/../catalog/pg_proc.dat | ../src/backend/catalog/Catalog.pm ../src/include/utils/../../backend/utils/Gen_fmgrtab.pl /usr/bin/perl
+ COMMAND = /usr/bin/perl -I ../src/backend/catalog/ ../src/include/utils/../../backend/utils/Gen_fmgrtab.pl --include-path=../src/include --output=src/include/utils ../src/include/utils/../catalog/pg_proc.dat
+ description = Generating$ src/include/utils/fmgrtab$ with$ a$ custom$ command
+
+build src/port/libpgport_srv.a.p/bsearch_arg.c.o: c_COMPILER ../src/port/bsearch_arg.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/bsearch_arg.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/bsearch_arg.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/chklocale.c.o: c_COMPILER ../src/port/chklocale.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/chklocale.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/chklocale.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/inet_net_ntop.c.o: c_COMPILER ../src/port/inet_net_ntop.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/inet_net_ntop.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/inet_net_ntop.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/noblock.c.o: c_COMPILER ../src/port/noblock.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/noblock.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/noblock.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/path.c.o: c_COMPILER ../src/port/path.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/path.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/path.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pg_bitutils.c.o: c_COMPILER ../src/port/pg_bitutils.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pg_bitutils.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pg_bitutils.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pg_localeconv_r.c.o: c_COMPILER ../src/port/pg_localeconv_r.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pg_localeconv_r.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pg_localeconv_r.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pg_numa.c.o: c_COMPILER ../src/port/pg_numa.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pg_numa.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pg_numa.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pg_popcount_aarch64.c.o: c_COMPILER ../src/port/pg_popcount_aarch64.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pg_popcount_aarch64.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pg_popcount_aarch64.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pg_popcount_avx512.c.o: c_COMPILER ../src/port/pg_popcount_avx512.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pg_popcount_avx512.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pg_popcount_avx512.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pg_strong_random.c.o: c_COMPILER ../src/port/pg_strong_random.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pg_strong_random.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pg_strong_random.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pgcheckdir.c.o: c_COMPILER ../src/port/pgcheckdir.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pgcheckdir.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pgcheckdir.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pgmkdirp.c.o: c_COMPILER ../src/port/pgmkdirp.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pgmkdirp.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pgmkdirp.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pgsleep.c.o: c_COMPILER ../src/port/pgsleep.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pgsleep.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pgsleep.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pgstrcasecmp.c.o: c_COMPILER ../src/port/pgstrcasecmp.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pgstrcasecmp.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pgstrcasecmp.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pgstrsignal.c.o: c_COMPILER ../src/port/pgstrsignal.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pgstrsignal.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pgstrsignal.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pqsignal.c.o: c_COMPILER ../src/port/pqsignal.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pqsignal.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pqsignal.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/qsort.c.o: c_COMPILER ../src/port/qsort.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/qsort.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/qsort.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/qsort_arg.c.o: c_COMPILER ../src/port/qsort_arg.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/qsort_arg.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/qsort_arg.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/quotes.c.o: c_COMPILER ../src/port/quotes.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/quotes.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/quotes.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/snprintf.c.o: c_COMPILER ../src/port/snprintf.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/snprintf.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/snprintf.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/strerror.c.o: c_COMPILER ../src/port/strerror.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/strerror.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/strerror.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/tar.c.o: c_COMPILER ../src/port/tar.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/tar.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/tar.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/getpeereid.c.o: c_COMPILER ../src/port/getpeereid.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/getpeereid.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/getpeereid.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/timingsafe_bcmp.c.o: c_COMPILER ../src/port/timingsafe_bcmp.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/timingsafe_bcmp.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/timingsafe_bcmp.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pg_crc32c_sse42.c.o: c_COMPILER ../src/port/pg_crc32c_sse42.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pg_crc32c_sse42.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pg_crc32c_sse42.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pg_crc32c_sse42_choose.c.o: c_COMPILER ../src/port/pg_crc32c_sse42_choose.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pg_crc32c_sse42_choose.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pg_crc32c_sse42_choose.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a.p/pg_crc32c_sb8.c.o: c_COMPILER ../src/port/pg_crc32c_sb8.c || src/include/utils/errcodes.h
+ DEPFILE = src/port/libpgport_srv.a.p/pg_crc32c_sb8.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_srv.a.p/pg_crc32c_sb8.c.o.d
+ ARGS = -Isrc/port/libpgport_srv.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/port/libpgport_srv.a: STATIC_LINKER src/port/libpgport_srv.a.p/bsearch_arg.c.o src/port/libpgport_srv.a.p/chklocale.c.o src/port/libpgport_srv.a.p/inet_net_ntop.c.o src/port/libpgport_srv.a.p/noblock.c.o src/port/libpgport_srv.a.p/path.c.o src/port/libpgport_srv.a.p/pg_bitutils.c.o src/port/libpgport_srv.a.p/pg_localeconv_r.c.o src/port/libpgport_srv.a.p/pg_numa.c.o src/port/libpgport_srv.a.p/pg_popcount_aarch64.c.o src/port/libpgport_srv.a.p/pg_popcount_avx512.c.o src/port/libpgport_srv.a.p/pg_strong_random.c.o src/port/libpgport_srv.a.p/pgcheckdir.c.o src/port/libpgport_srv.a.p/pgmkdirp.c.o src/port/libpgport_srv.a.p/pgsleep.c.o src/port/libpgport_srv.a.p/pgstrcasecmp.c.o src/port/libpgport_srv.a.p/pgstrsignal.c.o src/port/libpgport_srv.a.p/pqsignal.c.o src/port/libpgport_srv.a.p/qsort.c.o src/port/libpgport_srv.a.p/qsort_arg.c.o src/port/libpgport_srv.a.p/quotes.c.o src/port/libpgport_srv.a.p/snprintf.c.o src/port/libpgport_srv.a.p/strerror.c.o src/port/libpgport_srv.a.p/tar.c.o src/port/libpgport_srv.a.p/getpeereid.c.o src/port/libpgport_srv.a.p/timingsafe_bcmp.c.o src/port/libpgport_srv.a.p/pg_crc32c_sse42.c.o src/port/libpgport_srv.a.p/pg_crc32c_sse42_choose.c.o src/port/libpgport_srv.a.p/pg_crc32c_sb8.c.o
+ LINK_ARGS = csrDT
+
+build src/port/libpgport.a.p/bsearch_arg.c.o: c_COMPILER ../src/port/bsearch_arg.c
+ DEPFILE = src/port/libpgport.a.p/bsearch_arg.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/bsearch_arg.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/chklocale.c.o: c_COMPILER ../src/port/chklocale.c
+ DEPFILE = src/port/libpgport.a.p/chklocale.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/chklocale.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/inet_net_ntop.c.o: c_COMPILER ../src/port/inet_net_ntop.c
+ DEPFILE = src/port/libpgport.a.p/inet_net_ntop.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/inet_net_ntop.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/noblock.c.o: c_COMPILER ../src/port/noblock.c
+ DEPFILE = src/port/libpgport.a.p/noblock.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/noblock.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/path.c.o: c_COMPILER ../src/port/path.c
+ DEPFILE = src/port/libpgport.a.p/path.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/path.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pg_bitutils.c.o: c_COMPILER ../src/port/pg_bitutils.c
+ DEPFILE = src/port/libpgport.a.p/pg_bitutils.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pg_bitutils.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pg_localeconv_r.c.o: c_COMPILER ../src/port/pg_localeconv_r.c
+ DEPFILE = src/port/libpgport.a.p/pg_localeconv_r.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pg_localeconv_r.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pg_numa.c.o: c_COMPILER ../src/port/pg_numa.c
+ DEPFILE = src/port/libpgport.a.p/pg_numa.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pg_numa.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pg_popcount_aarch64.c.o: c_COMPILER ../src/port/pg_popcount_aarch64.c
+ DEPFILE = src/port/libpgport.a.p/pg_popcount_aarch64.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pg_popcount_aarch64.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pg_popcount_avx512.c.o: c_COMPILER ../src/port/pg_popcount_avx512.c
+ DEPFILE = src/port/libpgport.a.p/pg_popcount_avx512.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pg_popcount_avx512.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pg_strong_random.c.o: c_COMPILER ../src/port/pg_strong_random.c
+ DEPFILE = src/port/libpgport.a.p/pg_strong_random.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pg_strong_random.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pgcheckdir.c.o: c_COMPILER ../src/port/pgcheckdir.c
+ DEPFILE = src/port/libpgport.a.p/pgcheckdir.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pgcheckdir.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pgmkdirp.c.o: c_COMPILER ../src/port/pgmkdirp.c
+ DEPFILE = src/port/libpgport.a.p/pgmkdirp.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pgmkdirp.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pgsleep.c.o: c_COMPILER ../src/port/pgsleep.c
+ DEPFILE = src/port/libpgport.a.p/pgsleep.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pgsleep.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pgstrcasecmp.c.o: c_COMPILER ../src/port/pgstrcasecmp.c
+ DEPFILE = src/port/libpgport.a.p/pgstrcasecmp.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pgstrcasecmp.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pgstrsignal.c.o: c_COMPILER ../src/port/pgstrsignal.c
+ DEPFILE = src/port/libpgport.a.p/pgstrsignal.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pgstrsignal.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pqsignal.c.o: c_COMPILER ../src/port/pqsignal.c
+ DEPFILE = src/port/libpgport.a.p/pqsignal.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pqsignal.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/qsort.c.o: c_COMPILER ../src/port/qsort.c
+ DEPFILE = src/port/libpgport.a.p/qsort.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/qsort.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/qsort_arg.c.o: c_COMPILER ../src/port/qsort_arg.c
+ DEPFILE = src/port/libpgport.a.p/qsort_arg.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/qsort_arg.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/quotes.c.o: c_COMPILER ../src/port/quotes.c
+ DEPFILE = src/port/libpgport.a.p/quotes.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/quotes.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/snprintf.c.o: c_COMPILER ../src/port/snprintf.c
+ DEPFILE = src/port/libpgport.a.p/snprintf.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/snprintf.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/strerror.c.o: c_COMPILER ../src/port/strerror.c
+ DEPFILE = src/port/libpgport.a.p/strerror.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/strerror.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/tar.c.o: c_COMPILER ../src/port/tar.c
+ DEPFILE = src/port/libpgport.a.p/tar.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/tar.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/getpeereid.c.o: c_COMPILER ../src/port/getpeereid.c
+ DEPFILE = src/port/libpgport.a.p/getpeereid.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/getpeereid.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/timingsafe_bcmp.c.o: c_COMPILER ../src/port/timingsafe_bcmp.c
+ DEPFILE = src/port/libpgport.a.p/timingsafe_bcmp.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/timingsafe_bcmp.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pg_crc32c_sse42.c.o: c_COMPILER ../src/port/pg_crc32c_sse42.c
+ DEPFILE = src/port/libpgport.a.p/pg_crc32c_sse42.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pg_crc32c_sse42.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pg_crc32c_sse42_choose.c.o: c_COMPILER ../src/port/pg_crc32c_sse42_choose.c
+ DEPFILE = src/port/libpgport.a.p/pg_crc32c_sse42_choose.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pg_crc32c_sse42_choose.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a.p/pg_crc32c_sb8.c.o: c_COMPILER ../src/port/pg_crc32c_sb8.c
+ DEPFILE = src/port/libpgport.a.p/pg_crc32c_sb8.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport.a.p/pg_crc32c_sb8.c.o.d
+ ARGS = -Isrc/port/libpgport.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport.a: STATIC_LINKER src/port/libpgport.a.p/bsearch_arg.c.o src/port/libpgport.a.p/chklocale.c.o src/port/libpgport.a.p/inet_net_ntop.c.o src/port/libpgport.a.p/noblock.c.o src/port/libpgport.a.p/path.c.o src/port/libpgport.a.p/pg_bitutils.c.o src/port/libpgport.a.p/pg_localeconv_r.c.o src/port/libpgport.a.p/pg_numa.c.o src/port/libpgport.a.p/pg_popcount_aarch64.c.o src/port/libpgport.a.p/pg_popcount_avx512.c.o src/port/libpgport.a.p/pg_strong_random.c.o src/port/libpgport.a.p/pgcheckdir.c.o src/port/libpgport.a.p/pgmkdirp.c.o src/port/libpgport.a.p/pgsleep.c.o src/port/libpgport.a.p/pgstrcasecmp.c.o src/port/libpgport.a.p/pgstrsignal.c.o src/port/libpgport.a.p/pqsignal.c.o src/port/libpgport.a.p/qsort.c.o src/port/libpgport.a.p/qsort_arg.c.o src/port/libpgport.a.p/quotes.c.o src/port/libpgport.a.p/snprintf.c.o src/port/libpgport.a.p/strerror.c.o src/port/libpgport.a.p/tar.c.o src/port/libpgport.a.p/getpeereid.c.o src/port/libpgport.a.p/timingsafe_bcmp.c.o src/port/libpgport.a.p/pg_crc32c_sse42.c.o src/port/libpgport.a.p/pg_crc32c_sse42_choose.c.o src/port/libpgport.a.p/pg_crc32c_sb8.c.o
+ LINK_ARGS = csrD
+
+build src/port/libpgport_shlib.a.p/bsearch_arg.c.o: c_COMPILER ../src/port/bsearch_arg.c
+ DEPFILE = src/port/libpgport_shlib.a.p/bsearch_arg.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/bsearch_arg.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/chklocale.c.o: c_COMPILER ../src/port/chklocale.c
+ DEPFILE = src/port/libpgport_shlib.a.p/chklocale.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/chklocale.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/inet_net_ntop.c.o: c_COMPILER ../src/port/inet_net_ntop.c
+ DEPFILE = src/port/libpgport_shlib.a.p/inet_net_ntop.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/inet_net_ntop.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/noblock.c.o: c_COMPILER ../src/port/noblock.c
+ DEPFILE = src/port/libpgport_shlib.a.p/noblock.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/noblock.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/path.c.o: c_COMPILER ../src/port/path.c
+ DEPFILE = src/port/libpgport_shlib.a.p/path.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/path.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pg_bitutils.c.o: c_COMPILER ../src/port/pg_bitutils.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pg_bitutils.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pg_bitutils.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pg_localeconv_r.c.o: c_COMPILER ../src/port/pg_localeconv_r.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pg_localeconv_r.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pg_localeconv_r.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pg_numa.c.o: c_COMPILER ../src/port/pg_numa.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pg_numa.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pg_numa.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pg_popcount_aarch64.c.o: c_COMPILER ../src/port/pg_popcount_aarch64.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pg_popcount_aarch64.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pg_popcount_aarch64.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pg_popcount_avx512.c.o: c_COMPILER ../src/port/pg_popcount_avx512.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pg_popcount_avx512.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pg_popcount_avx512.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pg_strong_random.c.o: c_COMPILER ../src/port/pg_strong_random.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pg_strong_random.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pg_strong_random.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pgcheckdir.c.o: c_COMPILER ../src/port/pgcheckdir.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pgcheckdir.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pgcheckdir.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pgmkdirp.c.o: c_COMPILER ../src/port/pgmkdirp.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pgmkdirp.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pgmkdirp.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pgsleep.c.o: c_COMPILER ../src/port/pgsleep.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pgsleep.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pgsleep.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pgstrcasecmp.c.o: c_COMPILER ../src/port/pgstrcasecmp.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pgstrcasecmp.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pgstrcasecmp.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pgstrsignal.c.o: c_COMPILER ../src/port/pgstrsignal.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pgstrsignal.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pgstrsignal.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pqsignal.c.o: c_COMPILER ../src/port/pqsignal.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pqsignal.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pqsignal.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/qsort.c.o: c_COMPILER ../src/port/qsort.c
+ DEPFILE = src/port/libpgport_shlib.a.p/qsort.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/qsort.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/qsort_arg.c.o: c_COMPILER ../src/port/qsort_arg.c
+ DEPFILE = src/port/libpgport_shlib.a.p/qsort_arg.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/qsort_arg.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/quotes.c.o: c_COMPILER ../src/port/quotes.c
+ DEPFILE = src/port/libpgport_shlib.a.p/quotes.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/quotes.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/snprintf.c.o: c_COMPILER ../src/port/snprintf.c
+ DEPFILE = src/port/libpgport_shlib.a.p/snprintf.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/snprintf.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/strerror.c.o: c_COMPILER ../src/port/strerror.c
+ DEPFILE = src/port/libpgport_shlib.a.p/strerror.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/strerror.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/tar.c.o: c_COMPILER ../src/port/tar.c
+ DEPFILE = src/port/libpgport_shlib.a.p/tar.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/tar.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/getpeereid.c.o: c_COMPILER ../src/port/getpeereid.c
+ DEPFILE = src/port/libpgport_shlib.a.p/getpeereid.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/getpeereid.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/timingsafe_bcmp.c.o: c_COMPILER ../src/port/timingsafe_bcmp.c
+ DEPFILE = src/port/libpgport_shlib.a.p/timingsafe_bcmp.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/timingsafe_bcmp.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pg_crc32c_sse42.c.o: c_COMPILER ../src/port/pg_crc32c_sse42.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pg_crc32c_sse42.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pg_crc32c_sse42.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pg_crc32c_sse42_choose.c.o: c_COMPILER ../src/port/pg_crc32c_sse42_choose.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pg_crc32c_sse42_choose.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pg_crc32c_sse42_choose.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a.p/pg_crc32c_sb8.c.o: c_COMPILER ../src/port/pg_crc32c_sb8.c
+ DEPFILE = src/port/libpgport_shlib.a.p/pg_crc32c_sb8.c.o.d
+ DEPFILE_UNQUOTED = src/port/libpgport_shlib.a.p/pg_crc32c_sb8.c.o.d
+ ARGS = -Isrc/port/libpgport_shlib.a.p -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DFRONTEND
+
+build src/port/libpgport_shlib.a: STATIC_LINKER src/port/libpgport_shlib.a.p/bsearch_arg.c.o src/port/libpgport_shlib.a.p/chklocale.c.o src/port/libpgport_shlib.a.p/inet_net_ntop.c.o src/port/libpgport_shlib.a.p/noblock.c.o src/port/libpgport_shlib.a.p/path.c.o src/port/libpgport_shlib.a.p/pg_bitutils.c.o src/port/libpgport_shlib.a.p/pg_localeconv_r.c.o src/port/libpgport_shlib.a.p/pg_numa.c.o src/port/libpgport_shlib.a.p/pg_popcount_aarch64.c.o src/port/libpgport_shlib.a.p/pg_popcount_avx512.c.o src/port/libpgport_shlib.a.p/pg_strong_random.c.o src/port/libpgport_shlib.a.p/pgcheckdir.c.o src/port/libpgport_shlib.a.p/pgmkdirp.c.o src/port/libpgport_shlib.a.p/pgsleep.c.o src/port/libpgport_shlib.a.p/pgstrcasecmp.c.o src/port/libpgport_shlib.a.p/pgstrsignal.c.o src/port/libpgport_shlib.a.p/pqsignal.c.o src/port/libpgport_shlib.a.p/qsort.c.o src/port/libpgport_shlib.a.p/qsort_arg.c.o src/port/libpgport_shlib.a.p/quotes.c.o src/port/libpgport_shlib.a.p/snprintf.c.o src/port/libpgport_shlib.a.p/strerror.c.o src/port/libpgport_shlib.a.p/tar.c.o src/port/libpgport_shlib.a.p/getpeereid.c.o src/port/libpgport_shlib.a.p/timingsafe_bcmp.c.o src/port/libpgport_shlib.a.p/pg_crc32c_sse42.c.o src/port/libpgport_shlib.a.p/pg_crc32c_sse42_choose.c.o src/port/libpgport_shlib.a.p/pg_crc32c_sb8.c.o
+ LINK_ARGS = csrD
+
+build src/common/kwlist_d.h: CUSTOM_COMMAND ../src/common/../include/parser/kwlist.h | ../src/tools/PerfectHash.pm ../src/tools/gen_keywordlist.pl /usr/bin/perl
+ COMMAND = /usr/bin/perl -I ../src/tools ../src/tools/gen_keywordlist.pl --output src/common ../src/common/../include/parser/kwlist.h --extern
+ description = Generating$ src/common/kwlist$ with$ a$ custom$ command
+
+build src/common/libpgcommon_srv_ryu.a.p/d2s.c.o: c_COMPILER ../src/common/d2s.c || src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/utils/errcodes.h
+ DEPFILE = src/common/libpgcommon_srv_ryu.a.p/d2s.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv_ryu.a.p/d2s.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv_ryu.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL -Wno-declaration-after-statement
+
+build src/common/libpgcommon_srv_ryu.a.p/f2s.c.o: c_COMPILER ../src/common/f2s.c || src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/utils/errcodes.h
+ DEPFILE = src/common/libpgcommon_srv_ryu.a.p/f2s.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv_ryu.a.p/f2s.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv_ryu.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL -Wno-declaration-after-statement
+
+build src/common/libpgcommon_srv_ryu.a: STATIC_LINKER src/common/libpgcommon_srv_ryu.a.p/d2s.c.o src/common/libpgcommon_srv_ryu.a.p/f2s.c.o
+ LINK_ARGS = csrDT
+
+build src/common/libpgcommon_srv_config_info.a.p/config_info.c.o: c_COMPILER ../src/common/config_info.c || src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/utils/errcodes.h
+ DEPFILE = src/common/libpgcommon_srv_config_info.a.p/config_info.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv_config_info.a.p/config_info.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv_config_info.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL '-DVAL_CC="/usr/bin/ccache$ cc"' '-DVAL_CPPFLAGS="-D_GNU_SOURCE"' '-DVAL_CFLAGS="-fno-strict-aliasing$ -fwrapv$ -fexcess-precision=standard$ -Wall$ -g$ -O2$ -Wmissing-prototypes$ -Wpointer-arith$ -Werror=vla$ -Wendif-labels$ -Wmissing-format-attribute$ -Wimplicit-fallthrough=3$ -Wcast-function-type$ -Wshadow=compatible-local$ -Wformat-security$ -Wdeclaration-after-statement$ -Wmissing-variable-declarations$ -Wno-format-truncation$ -Wno-stringop-truncation"' '-DVAL_CFLAGS_SL="-fPIC"' '-DVAL_LDFLAGS="-Wl,--as-needed"' '-DVAL_LDFLAGS_EX=""' '-DVAL_LDFLAGS_SL=""' '-DVAL_LIBS=""'
+
+build src/common/libpgcommon_srv_config_info.a: STATIC_LINKER src/common/libpgcommon_srv_config_info.a.p/config_info.c.o
+ LINK_ARGS = csrDT
+
+build src/common/libpgcommon_srv.a.p/archive.c.o: c_COMPILER ../src/common/archive.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/storage/lwlocknames.h src/include/utils/errcodes.h src/include/utils/wait_event_types.h
+ DEPFILE = src/common/libpgcommon_srv.a.p/archive.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv.a.p/archive.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/common/libpgcommon_srv.a.p/base64.c.o: c_COMPILER ../src/common/base64.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/storage/lwlocknames.h src/include/utils/errcodes.h src/include/utils/wait_event_types.h
+ DEPFILE = src/common/libpgcommon_srv.a.p/base64.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv.a.p/base64.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/common/libpgcommon_srv.a.p/binaryheap.c.o: c_COMPILER ../src/common/binaryheap.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/storage/lwlocknames.h src/include/utils/errcodes.h src/include/utils/wait_event_types.h
+ DEPFILE = src/common/libpgcommon_srv.a.p/binaryheap.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv.a.p/binaryheap.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/common/libpgcommon_srv.a.p/blkreftable.c.o: c_COMPILER ../src/common/blkreftable.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/storage/lwlocknames.h src/include/utils/errcodes.h src/include/utils/wait_event_types.h
+ DEPFILE = src/common/libpgcommon_srv.a.p/blkreftable.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv.a.p/blkreftable.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/common/libpgcommon_srv.a.p/checksum_helper.c.o: c_COMPILER ../src/common/checksum_helper.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/storage/lwlocknames.h src/include/utils/errcodes.h src/include/utils/wait_event_types.h
+ DEPFILE = src/common/libpgcommon_srv.a.p/checksum_helper.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv.a.p/checksum_helper.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/common/libpgcommon_srv.a.p/compression.c.o: c_COMPILER ../src/common/compression.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/storage/lwlocknames.h src/include/utils/errcodes.h src/include/utils/wait_event_types.h
+ DEPFILE = src/common/libpgcommon_srv.a.p/compression.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv.a.p/compression.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/common/libpgcommon_srv.a.p/controldata_utils.c.o: c_COMPILER ../src/common/controldata_utils.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/storage/lwlocknames.h src/include/utils/errcodes.h src/include/utils/wait_event_types.h
+ DEPFILE = src/common/libpgcommon_srv.a.p/controldata_utils.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv.a.p/controldata_utils.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/common/libpgcommon_srv.a.p/encnames.c.o: c_COMPILER ../src/common/encnames.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/storage/lwlocknames.h src/include/utils/errcodes.h src/include/utils/wait_event_types.h
+ DEPFILE = src/common/libpgcommon_srv.a.p/encnames.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv.a.p/encnames.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/common/libpgcommon_srv.a.p/exec.c.o: c_COMPILER ../src/common/exec.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_attrdef_d.h src/include/catalog/pg_attribute_d.h src/include/catalog/pg_auth_members_d.h src/include/catalog/pg_authid_d.h src/include/catalog/pg_cast_d.h src/include/catalog/pg_class_d.h src/include/catalog/pg_collation_d.h src/include/catalog/pg_constraint_d.h src/include/catalog/pg_conversion_d.h src/include/catalog/pg_database_d.h src/include/catalog/pg_db_role_setting_d.h src/include/catalog/pg_default_acl_d.h src/include/catalog/pg_depend_d.h src/include/catalog/pg_description_d.h src/include/catalog/pg_enum_d.h src/include/catalog/pg_event_trigger_d.h src/include/catalog/pg_extension_d.h src/include/catalog/pg_foreign_data_wrapper_d.h src/include/catalog/pg_foreign_server_d.h src/include/catalog/pg_foreign_table_d.h src/include/catalog/pg_index_d.h src/include/catalog/pg_inherits_d.h src/include/catalog/pg_init_privs_d.h src/include/catalog/pg_language_d.h src/include/catalog/pg_largeobject_d.h src/include/catalog/pg_largeobject_metadata_d.h src/include/catalog/pg_namespace_d.h src/include/catalog/pg_opclass_d.h src/include/catalog/pg_operator_d.h src/include/catalog/pg_opfamily_d.h src/include/catalog/pg_parameter_acl_d.h src/include/catalog/pg_partitioned_table_d.h src/include/catalog/pg_policy_d.h src/include/catalog/pg_proc_d.h src/include/catalog/pg_publication_d.h src/include/catalog/pg_publication_namespace_d.h src/include/catalog/pg_publication_rel_d.h src/include/catalog/pg_range_d.h src/include/catalog/pg_replication_origin_d.h src/include/catalog/pg_rewrite_d.h src/include/catalog/pg_seclabel_d.h src/include/catalog/pg_sequence_d.h src/include/catalog/pg_shdepend_d.h src/include/catalog/pg_shdescription_d.h src/include/catalog/pg_shseclabel_d.h src/include/catalog/pg_statistic_d.h src/include/catalog/pg_statistic_ext_d.h src/include/catalog/pg_statistic_ext_data_d.h src/include/catalog/pg_subscription_d.h src/include/catalog/pg_subscription_rel_d.h src/include/catalog/pg_tablespace_d.h src/include/catalog/pg_transform_d.h src/include/catalog/pg_trigger_d.h src/include/catalog/pg_ts_config_d.h src/include/catalog/pg_ts_config_map_d.h src/include/catalog/pg_ts_dict_d.h src/include/catalog/pg_ts_parser_d.h src/include/catalog/pg_ts_template_d.h src/include/catalog/pg_type_d.h src/include/catalog/pg_user_mapping_d.h src/include/catalog/postgres.bki src/include/catalog/schemapg.h src/include/catalog/syscache_ids.h src/include/catalog/syscache_info.h src/include/catalog/system_constraints.sql src/include/catalog/system_fk_info.h src/include/nodes/nodetags.h src/include/storage/lwlocknames.h src/include/utils/errcodes.h src/include/utils/wait_event_types.h
+ DEPFILE = src/common/libpgcommon_srv.a.p/exec.c.o.d
+ DEPFILE_UNQUOTED = src/common/libpgcommon_srv.a.p/exec.c.o.d
+ ARGS = -Isrc/common/libpgcommon_srv.a.p -Isrc/common -I../src/common -Isrc/include -I../src/include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -O2 -g -fno-strict-aliasing -fwrapv -fexcess-precision=standard -D_GNU_SOURCE -Wmissing-prototypes -Wpointer-arith -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -Wdeclaration-after-statement -Wmissing-variable-declarations -Wno-format-truncation -Wno-stringop-truncation -fPIC -DBUILDING_DLL
+
+build src/common/libpgcommon_srv.a.p/file_perm.c.o: c_COMPILER ../src/common/file_perm.c || src/common/kwlist_d.h src/include/catalog/pg_aggregate_d.h src/include/catalog/pg_am_d.h src/include/catalog/pg_amop_d.h src/include/catalog/pg_amproc_d.h src/include/catalog/pg_
[truncated 39663477 bytes]