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
Nathan Bossart 3dd42ee97b Suppress "has no symbols" linker warnings on macOS. 2 weeks ago
..
.gitignore Build src/port files as a library with -fPIC, and use that in libpq. 8 years ago
Makefile Invent a variant of getopt(3) that is thread-safe 1 month ago
README Restore AIX support. 3 months ago
bsearch_arg.c Update copyright for 2026 4 months ago
chklocale.c Update copyright for 2026 4 months ago
dirent.c Update copyright for 2026 4 months ago
dirmod.c Update copyright for 2026 4 months ago
explicit_bzero.c Check for memset_explicit() and explicit_memset() 2 months ago
getopt.c Invent a variant of getopt(3) that is thread-safe 1 month ago
getopt_long.c Fix some cases of indirectly casting away const. 5 months ago
getpeereid.c Update copyright for 2026 4 months ago
inet_aton.c Correct include file name in inet_aton fallback. 9 years ago
inet_net_ntop.c Remove configure probe for sockaddr_in6 and require AF_INET6. 4 years ago
kill.c Update copyright for 2026 4 months ago
meson.build Compute CRC32C on ARM using the Crypto Extension where available 1 month ago
mkdtemp.c Update copyright for 2026 4 months ago
noblock.c Update copyright for 2026 4 months ago
open.c Update copyright for 2026 4 months ago
path.c Update copyright for 2026 4 months ago
pg_bitutils.c Remove bits* typedefs. 1 month ago
pg_cpu_x86.c Suppress "has no symbols" linker warnings on macOS. 2 weeks ago
pg_crc32c_armv8.c Exit early from pg_comp_crc32c_pmull for small inputs 1 month ago
pg_crc32c_armv8_choose.c Fix unused function warning on Arm platforms 1 month ago
pg_crc32c_loongarch.c Update copyright for 2026 4 months ago
pg_crc32c_sb8.c Update copyright for 2026 4 months ago
pg_crc32c_sse42.c Centralize detection of x86 CPU features 2 months ago
pg_getopt_ctx.c Invent a variant of getopt(3) that is thread-safe 1 month ago
pg_localeconv_r.c Update copyright for 2026 4 months ago
pg_numa.c Make pg_numa_query_pages() work in frontend programs 3 months ago
pg_popcount_aarch64.c Suppress "has no symbols" linker warnings on macOS. 2 weeks ago
pg_popcount_x86.c Suppress "has no symbols" linker warnings on macOS. 2 weeks ago
pg_strong_random.c Update copyright for 2026 4 months ago
pgcheckdir.c Update copyright for 2026 4 months ago
pgmkdirp.c Use strchr instead of strstr for single-char lookups 10 months ago
pgsleep.c Update copyright for 2026 4 months ago
pgstrcasecmp.c Update copyright for 2026 4 months ago
pgstrsignal.c Update copyright for 2026 4 months ago
pqsignal.c Rework signal handler infrastructure to pass sender info as argument. 4 weeks ago
pthread-win32.h Clean up Windows-specific mutex code in libpq and ecpglib. 2 years ago
pthread_barrier_wait.c Update copyright for 2026 4 months ago
qsort.c Use sort_template.h for qsort() and qsort_arg(). 5 years ago
qsort_arg.c Use sort_template.h for qsort() and qsort_arg(). 5 years ago
quotes.c Update copyright for 2026 4 months ago
snprintf.c Use fallthrough attribute instead of comment 3 months ago
strerror.c Restore AIX support. 3 months ago
strlcat.c pgindent run for 9.4 12 years ago
strlcpy.c Update copyright for 2026 4 months ago
strsep.c Add port/ replacement for strsep() 2 years ago
strtof.c Update copyright for 2026 4 months ago
system.c Update copyright for 2026 4 months ago
tar.c Harden astreamer tar parsing logic against archives it can't handle. 1 month ago
timingsafe_bcmp.c Add timingsafe_bcmp(), for constant-time memory comparison 1 year ago
win32.ico
win32common.c Update copyright for 2026 4 months ago
win32dlopen.c Update copyright for 2026 4 months ago
win32env.c Update copyright for 2026 4 months ago
win32error.c Update copyright for 2026 4 months ago
win32fdatasync.c Update copyright for 2026 4 months ago
win32fseek.c Update copyright for 2026 4 months ago
win32gai_strerror.c Update copyright for 2026 4 months ago
win32getrusage.c Update copyright for 2026 4 months ago
win32gettimeofday.c Simplify gettimeofday for Windows. 4 years ago
win32link.c Update copyright for 2026 4 months ago
win32ntdll.c Update copyright for 2026 4 months ago
win32pread.c Update copyright for 2026 4 months ago
win32pwrite.c Update copyright for 2026 4 months ago
win32security.c Update copyright for 2026 4 months ago
win32setlocale.c Update copyright for 2026 4 months ago
win32stat.c Update copyright for 2026 4 months ago
win32ver.rc Update copyright for 2026 4 months 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.