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