Re: Linker errors while creating a PostgreSQL C extension function.

From: Dmitry Igrishin <dmitigr(at)gmail(dot)com>
To: Tal Glozman <glozmantal(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Linker errors while creating a PostgreSQL C extension function.
Date: 2018-08-19 12:57:07
Message-ID: CAAfz9KMFNcG6cAzPn_A8T5YNGCuAzof0UKUP=MoR9kf6x0uK9A@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

вс, 19 авг. 2018 г. в 15:46, TalGloz <glozmantal(at)gmail(dot)com>:
>
> OK, I've changed my line to
> LDFLAGS = -L$(INCLUDE_SEAL_LIB) -lseal -lpthread
And? Is these flags appeared in the g++ invoking command line? I mean
the following:

g++ -Wl,--no-undefined -shared -o seal_diff_cpp.so seal_diff_cpp.o
-L/usr/pgsql-10/lib -L/usr/lib64 -Wl,--as-needed
-Wl,-rpath,'/usr/pgsql-10/lib',--enable-new-dtags

>
> In my Makefile this command is written like this (line numbers are just for
> orientation)
>
> 1: seal_diff_cpp.so: seal_diff_cpp.o
> 2: $(CXX) -Wl,--no-undefined -shared -o seal_diff_cpp.so
> seal_diff_cpp.o $(LDFLAGS)
> 3:
It's correct.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message TalGloz 2018-08-19 12:58:40 Re: Linker errors while creating a PostgreSQL C extension function.
Previous Message TalGloz 2018-08-19 12:46:30 Re: Linker errors while creating a PostgreSQL C extension function.