test.sh

application/x-shellscript

Filename: test.sh
Type: application/x-shellscript
Part: 6
Message: Re: Regression tests fail with musl libc because libpq.so can't be loaded
#!/usr/bin/env sh
set -e

gcc -g -shared b.c -Wl,-soname=libb.so -I. -o libb.so
gcc -g -shared a.c -Wl,-soname=liba.so -I. -lb -L. -o liba.so
gcc -g main.c -I. -o main -ldl

LD_LIBRARY_PATH=. ./main