Re: pgsql: Build src/port files as a library with -fPIC, and use that in li

From: Andrew Dunstan <andrew(dot)dunstan(at)2ndquadrant(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: Re: pgsql: Build src/port files as a library with -fPIC, and use that in li
Date: 2018-09-28 13:51:51
Message-ID: 11d432a5-659e-81da-3722-513d039515e1@2ndQuadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On 09/27/2018 11:23 AM, Tom Lane wrote:
> Build src/port files as a library with -fPIC, and use that in libpq.
>
> libpq and ecpg need shared-library-friendly versions of assorted src/port/
> and src/common/ modules. Up to now, they got those by symlinking the
> individual source files and compiling them locally. That's baroque, and a
> pain to maintain, and it results in some amount of duplicated compile work.
> It might've made sense when only a couple of files were needed, but the
> list has grown and grown and grown :-(
>
> It makes more sense to have the originating directory build a third variant
> of libpgport.a/libpgcommon.a containing modules built with $(CFLAGS_SL),
> and just link that into the shared library. Unused files won't get linked,
> so the end result should be the same.
>
> This patch makes a down payment on that idea by having src/port/ build
> such a library and making libpq use it. If the buildfarm doesn't expose
> fatal problems with the approach, I'll extend it to the other cases.
>

Looks like we have a bunch of failures, including prairiedog.

cheers

andrew

--
Andrew Dunstan https://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2018-09-28 14:05:31 Re: pgsql: Build src/port files as a library with -fPIC, and use that in li
Previous Message Tom Lane 2018-09-28 13:48:58 Re: pgsql: Build src/port files as a library with -fPIC, and use that in li

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2018-09-28 14:05:31 Re: pgsql: Build src/port files as a library with -fPIC, and use that in li
Previous Message Jesper Pedersen 2018-09-28 13:51:47 Re: executor relation handling