mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
2 years ago | |
---|---|---|
.. | ||
.gitignore | 7 years ago | |
Makefile | 2 years ago | |
README | 4 years ago | |
bsearch_arg.c | 3 years ago | |
chklocale.c | 3 years ago | |
dirent.c | 3 years ago | |
dirmod.c | 2 years ago | |
explicit_bzero.c | 3 years ago | |
getopt.c | 7 years ago | |
getopt_long.c | 2 years ago | |
getpeereid.c | 3 years ago | |
inet_aton.c | 8 years ago | |
inet_net_ntop.c | 3 years ago | |
kill.c | 3 years ago | |
meson.build | 2 years ago | |
mkdtemp.c | 3 years ago | |
noblock.c | 3 years ago | |
open.c | 3 years ago | |
path.c | 2 years ago | |
pg_bitutils.c | 3 years ago | |
pg_crc32c_armv8.c | 3 years ago | |
pg_crc32c_armv8_choose.c | 3 years ago | |
pg_crc32c_loongarch.c | 2 years ago | |
pg_crc32c_sb8.c | 3 years ago | |
pg_crc32c_sse42.c | 3 years ago | |
pg_crc32c_sse42_choose.c | 3 years ago | |
pg_strong_random.c | 3 years ago | |
pgcheckdir.c | 3 years ago | |
pgmkdirp.c | 11 years ago | |
pgsleep.c | 3 years ago | |
pgstrcasecmp.c | 3 years ago | |
pgstrsignal.c | 2 years ago | |
pqsignal.c | 2 years ago | |
pthread-win32.h | 15 years ago | |
pthread_barrier_wait.c | 3 years ago | |
qsort.c | 5 years ago | |
qsort_arg.c | 5 years ago | |
quotes.c | 3 years ago | |
snprintf.c | 3 years ago | |
strerror.c | 3 years ago | |
strlcat.c | 12 years ago | |
strlcpy.c | 3 years ago | |
strnlen.c | 3 years ago | |
strtof.c | 3 years ago | |
system.c | 3 years ago | |
tar.c | 2 years ago | |
user.c | 2 years ago | |
win32.ico | 14 years ago | |
win32common.c | 2 years ago | |
win32dlopen.c | 3 years ago | |
win32env.c | 3 years ago | |
win32error.c | 3 years ago | |
win32fdatasync.c | 3 years ago | |
win32fseek.c | 2 years ago | |
win32getrusage.c | 3 years ago | |
win32gettimeofday.c | 3 years ago | |
win32link.c | 3 years ago | |
win32ntdll.c | 3 years ago | |
win32pread.c | 3 years ago | |
win32pwrite.c | 3 years ago | |
win32security.c | 3 years ago | |
win32setlocale.c | 3 years ago | |
win32stat.c | 2 years ago | |
win32ver.rc | 3 years ago |
README
src/port/README
libpgport
=========
libpgport must have special behavior. It supplies functions to both
libraries and applications. However, there are two complexities:
1) Libraries need to use object files that are compiled with exactly
the same flags as the library. libpgport might not use the same flags,
so it is necessary to recompile the object files for individual
libraries. This is done by removing -lpgport from the link line:
# Need to recompile any libpgport object files
LIBS := $(filter-out -lpgport, $(LIBS))
and adding infrastructure to recompile the object files:
OBJS= execute.o typename.o descriptor.o data.o error.o prepare.o memory.o \
connect.o misc.o path.o exec.o \
$(filter strlcat.o, $(LIBOBJS))
The problem is that there is no testing of which object files need to be
added, but missing functions usually show up when linking user
applications.
2) For applications, we use -lpgport before -lpq, so the static files
from libpgport are linked first. This avoids having applications
dependent on symbols that are _used_ by libpq, but not intended to be
exported by libpq. libpq's libpgport usage changes over time, so such a
dependency is a problem. Windows, Linux, AIX, and macOS use an export
list to control the symbols exported by libpq.