Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

allyourcodebase/libpq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

48 Commits

Repository files navigation

build.zig for libpq

Provides a package to be used by the zig package manager for C programs.

Status

Architecture \ OS Linux MacOS
x86_64
arm 64 (untested) ✅ (not with OpenSSL)
Refname PostgreSQL version Zig 0.16.0-dev Zig 0.15.x Zig 0.14.x Zig 0.13.x
5.18.1+1 REL_18_1
5.16.4+5 REL_16_4
5.16.4+2 REL_16_4

Use

Add the dependency to your build.zig.zon by running the following command:

zig fetch --save git+https://github.com/allyourcodebase/libpq#master

Then, in your build.zig:

const postgres = b.dependency("libpq", { .target = target, .optimize = optimize });
// to use from Zig (since 5.16.4+5):
mod.addImport("libpq", postgres.module("libpq"));
// to use from C:
exe.linkLibrary(postgres.artifact("pq"));

Options

 -Dssl=[enum] Choose which dependency to use for SSL. Defaults to LibreSSL
 Supported Values:
 OpenSSL
 LibreSSL
 None
 -Ddisable-zlib=[bool] Remove zlib as a dependency
 -Ddisable-zstd=[bool] Remove zstd as a dependency

Bump dependencies

To update this project dependencies:

zig fetch --save=upstream git+https://github.com/postgres/postgres#REL_18_1
zig fetch --save git+https://github.com/allyourcodebase/openssl#main
zig fetch --save git+https://github.com/allyourcodebase/libressl#master
zig fetch --save git+https://github.com/allyourcodebase/zlib#main
zig fetch --save git+https://github.com/allyourcodebase/zstd#master

About

PostgreSQL's libpq ported to the Zig build system

Topics

Resources

License

Stars

Watchers

Forks

Contributors 3

AltStyle によって変換されたページ (->オリジナル) /