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.
 
 
 
 
 
 
postgres/src/port
Tom Lane da256a4a7f Pre-beta mechanical code beautification. 2 years ago
..
.gitignore
Makefile Optimize pg_popcount() with AVX-512 instructions. 2 years ago
README Remove AIX support 2 years ago
bsearch_arg.c Update copyright for 2024 2 years ago
chklocale.c Update copyright for 2024 2 years ago
dirent.c Update copyright for 2024 2 years ago
dirmod.c Update copyright for 2024 2 years ago
explicit_bzero.c Update copyright for 2024 2 years ago
getopt.c
getopt_long.c Teach in-tree getopt_long() to move non-options to the end of argv. 2 years ago
getpeereid.c Update copyright for 2024 2 years ago
inet_aton.c
inet_net_ntop.c Remove configure probe for sockaddr_in6 and require AF_INET6. 3 years ago
kill.c Update copyright for 2024 2 years ago
meson.build Optimize pg_popcount() with AVX-512 instructions. 2 years ago
mkdtemp.c Update copyright for 2024 2 years ago
noblock.c Update copyright for 2024 2 years ago
open.c Update copyright for 2024 2 years ago
path.c Use printf's %m format instead of strerror(errno) in more places 2 years ago
pg_bitutils.c Optimize visibilitymap_count() with AVX-512 instructions. 2 years ago
pg_crc32c_armv8.c Update copyright for 2024 2 years ago
pg_crc32c_armv8_choose.c Update copyright for 2024 2 years ago
pg_crc32c_loongarch.c Update copyright for 2024 2 years ago
pg_crc32c_sb8.c Update copyright for 2024 2 years ago
pg_crc32c_sse42.c Update copyright for 2024 2 years ago
pg_crc32c_sse42_choose.c Update copyright for 2024 2 years ago
pg_popcount_avx512.c Pre-beta mechanical code beautification. 2 years ago
pg_popcount_avx512_choose.c Fix code for probing availability of AVX-512. 2 years ago
pg_strong_random.c Update copyright for 2024 2 years ago
pgcheckdir.c Update copyright for 2024 2 years ago
pgmkdirp.c
pgsleep.c Update copyright for 2024 2 years ago
pgstrcasecmp.c Update copyright for 2024 2 years ago
pgstrsignal.c Update copyright for 2024 2 years ago
pqsignal.c Centralize logic for restoring errno in signal handlers. 2 years ago
pthread-win32.h Clean up Windows-specific mutex code in libpq and ecpglib. 2 years ago
pthread_barrier_wait.c Update copyright for 2024 2 years ago
qsort.c
qsort_arg.c
quotes.c Update copyright for 2024 2 years ago
snprintf.c Update copyright for 2024 2 years ago
strerror.c Remove AIX support 2 years ago
strlcat.c
strlcpy.c Update copyright for 2024 2 years ago
strnlen.c Update copyright for 2024 2 years ago
strtof.c Update copyright for 2024 2 years ago
system.c Update copyright for 2024 2 years ago
tar.c Add and use symbolic constants for tar header offsets and file types. 2 years ago
user.c Update copyright for 2024 2 years ago
win32.ico
win32common.c Remove "#ifdef WIN32" guards from src/port/win32*.c 2 years ago
win32dlopen.c Update copyright for 2024 2 years ago
win32env.c Update copyright for 2024 2 years ago
win32error.c Update copyright for 2024 2 years ago
win32fdatasync.c Update copyright for 2024 2 years ago
win32fseek.c Remove "#ifdef WIN32" guards from src/port/win32*.c 2 years ago
win32gai_strerror.c Fix gai_strerror() thread-safety on Windows. 2 years ago
win32getrusage.c Update copyright for 2024 2 years ago
win32gettimeofday.c
win32link.c Update copyright for 2024 2 years ago
win32ntdll.c Update copyright for 2024 2 years ago
win32pread.c Fix overflow in Windows replacement pg_pread/pg_pwrite. 2 years ago
win32pwrite.c Fix overflow in Windows replacement pg_pread/pg_pwrite. 2 years ago
win32security.c Update copyright for 2024 2 years ago
win32setlocale.c Update copyright for 2024 2 years ago
win32stat.c Remove "#ifdef WIN32" guards from src/port/win32*.c 2 years ago
win32ver.rc Update copyright for 2024 2 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, and macOS use an export
list to control the symbols exported by libpq.