Rob Gansevles <rgansev...@gmail.com> writes: > I would like to have a statically linked linux x64 version of postgresql > 14.1 for creating a distributable sample database.
If you are trying to make the server into a monolithic object, that's not something we support or have any particular interest in supporting. Extensions such as PLs are always built as shared libraries. So are the encoding conversion modules, which your build is failing on before it gets to any others. It would take a good deal of fooling around to change that, both in the build process and in the way that the core server invokes that functionality. Statically linking client-side programs such as psql is more within the realm of feasibility, but you'd have to adjust just those builds rather than trying to apply --static across the board. regards, tom lane