pgsql: Blind attempt to fix LLVM dependency in the backend

From: John Naylor <john(dot)naylor(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Blind attempt to fix LLVM dependency in the backend
Date: 2022-09-15 03:56:55
Message-ID: E1oYfzj-000OuC-Bq@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Blind attempt to fix LLVM dependency in the backend

Commit ecaf7c5df5 removed gram.h from the backend's generated-headers
target. In LLVM builds, this leads to loss of dependency information
when generating .bc files. To fix, add a rule that mirrors ad-hoc .o
dependencies for .bc files as well.

Per cfbot (no buildfarm failures reported)
Analysis by Tom Lane and Andres Freund
Proposed fix by Andres Freund
Discussion: https://www.postgresql.org/message-id/20220914210427.y26tkagmxo5wwbvp%40awork3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/16492df70bb25bc99ca3c340a75ba84ca64171b8

Modified Files
--------------
src/backend/common.mk | 1 +
1 file changed, 1 insertion(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Bharath Rupireddy 2022-09-15 04:41:03 Re: pgsql: Use the terminology "WAL file" not "log file" more consistently.
Previous Message John Naylor 2022-09-15 03:52:31 Re: pgsql: Move gramparse.h to src/backend/parser