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. If the plan touches authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior, treat it as security-sensitive: do not plan a source patch unless validation can reproduce the behavior and analyze the security impact; otherwise plan a no-patch diagnosis/report. 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. Security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior need reproduced evidence plus explicit security-impact analysis before leaving a source diff; otherwise return a no-patch diagnosis/report for human review. 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. Security-sensitive source changes touching authentication, authorization, credentials, cryptography, sandboxing, permissions, or timing/throttling behavior require reproduced evidence and explicit security-impact analysis; otherwise list `None` under `## Git Add Paths` and write a no-patch diagnosis/report. 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 source patches in security-sensitive areas such as authentication, authorization, credentials, cryptography, sandboxing, permissions, and timing/throttling behavior unless the author reproduced the behavior and explicitly analyzed the security impact of the change; observed-only evidence should become a diagnosis/report, not a PR-ready source diff. 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 flagged `postgres` as a likely busy-poll loop, but the bundle shows the sampled postmaster sleeping in `do_epoll_wait` / `WaitEventSetWait()`, with `strace_line_count: 1` over 5 seconds and total CPU only `0.4%`. That does not establish a PostgreSQL runaway loop.
## Evidence Confidence
inferred
## Proposed Subject
No source patch: diagnose insufficient evidence for a PostgreSQL busy-poll fix.
## Patch Plan
Do not edit PostgreSQL source in this pass. The relevant upstream code already uses PostgreSQL’s local event/wait helpers: `ConfigurePostmasterWaitSet()`, `DetermineSleepTime()`, `WaitEventSetWait()`, `SetLatch()`, and `ResetLatch()`. The latch convention documented in `src/include/storage/latch.h` is being followed by the postmaster loop.
A source patch that adds sleeps, throttling, or alternate control flow would touch timing behavior without reproducing a defect. I would also reject an awkward `goto`-style loop workaround here; there is no proven spinning branch to bound.
Prior Fixer work for this finding failed during the plan stage and produced no diff, so there is no prior patch to improve. The replacement should be a no-patch diagnosis unless fresh evidence shows rapid completed `epoll_wait()` calls or repeated zero-timeout waits from a specific PostgreSQL branch.
## Risks
Changing `ServerLoop()` or `WaitEventSetWait()` based on this evidence could regress connection acceptance latency, latch wakeups, background-worker startup, or postmaster shutdown behavior. The current evidence also implicates kernel symbols and `libssl3t64` metadata, so a PostgreSQL source change would be speculative.
## Validation
For any future source patch, first try the project-level entrypoint from the workspace root: `meson setup build-fix && meson compile -C build-fix && meson test -C build-fix`. If Meson dependencies are missing, fall back to `./configure && make`, then `make check` if available, and record the exact failure.
Before editing, collect a bounded independent signal: attach to the reported process with `timeout 5 strace -ttT -e epoll_wait -p <pid>` and confirm whether `epoll_wait()` returns rapidly many times. Without that, the current one-line strace and sleeping wait channel support diagnosis only, not a reproducible source fix.
## Patch Pass
Subject: Diagnose postgres epoll_wait sample as inconclusive
## Commit Message
No source commit is proposed. The collected signal points at a postmaster blocked in the normal PostgreSQL wait-event path, not at a reproduced PostgreSQL busy loop.
## Evidence Confidence
inferred
## Issue Connection
Fixer collected a perf/backtrace signal for `postgres` showing `WaitEventSetWait()` above `epoll_wait()`, with `/proc` state `S (sleeping)`, wait channel `do_epoll_wait`, total CPU around `0.4%`, and only one `epoll_wait` line in a 5 second strace sample. That is not enough to show repeated completed poll wakeups.
The cautious inference is that this is a false-positive or external/kernel-side sample around a normally sleeping postmaster, not a source-level PostgreSQL loop. The relevant code already uses PostgreSQL’s local helpers and conventions: `ConfigurePostmasterWaitSet()`, `DetermineSleepTime()`, `WaitEventSetWait()`, `SetLatch()`, and `ResetLatch()`. The latch convention in `src/include/storage/latch.h` is also followed.
I followed the saved plan and made no source changes. A patch that adds throttling, sleeps, or alternate control flow would alter timing-sensitive postmaster behavior without reproduced evidence. The expected effect of this no-patch report is to avoid an unreviewable speculative PostgreSQL change and give upstream a clear evidence gap to investigate.
## Git Add Paths
None
## Validation
Inspected contribution/style pointers: `.github/CONTRIBUTING.md`, `README.md`, and `src/DEVELOPERS`. Inspected the postmaster wait path and wait-event helpers in `src/backend/postmaster/postmaster.c`, `src/backend/storage/ipc/waiteventset.c`, and `src/include/storage/latch.h`.
Project build:
`meson setup build-fix` passed.
`meson compile -C build-fix` initially failed because `ccache` reported `Read-only file system`.
`CCACHE_DISABLE=1 meson compile -C build-fix` passed.
Project tests:
`meson test -C build-fix --no-rebuild` ran, but failed broadly: Meson log summary was `Ok: 27`, `Fail: 289`, `Skipped: 24`. The root blocker was `setup - postgresql:initdb_cache`: `initdb: error: cannot be run as root`, so later tests failed because `build-fix/tmp_install/initdb-template` did not exist.
Independent reproduction attempt:
`ps -p 1142101 -o pid,ppid,stat,pcpu,comm,args` found no sampled process. The raw investigation directory named in the bundle also no longer exists, so I could not attach `strace` or reproduce rapid `epoll_wait` wakeups locally.
## Review Pass 1
RESULT: ok
No source changes are present in the workspace, which matches the evidence level. The author correctly classified the bundle as `inferred`, avoided a speculative timing/throttling change in the PostgreSQL postmaster wait path, and did not invent a reproducer.
The report is maintainer-readable, names the relevant PostgreSQL helpers/conventions (`WaitEventSetWait()`, `DetermineSleepTime()`, latch handling), and explains why the collected `epoll_wait` sample does not prove a busy loop. Validation is acceptable for a no-patch diagnosis: project-level Meson configure/build was attempted, the `ccache` blocker was handled with `CCACHE_DISABLE=1`, tests were attempted, and the root `initdb cannot be run as root` failure is reported.
No actionable findings.
Diff
--- a/build-fix/build.ninja 1970-01-01 04:00:00.000000000 +0400
+++ b/build-fix/build.ninja 2026-05-26 02:30:02.171376663 +0400
@@ -0,0 +1,12360 @@
+# 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 39126853 bytes]