libpcre.zig icon indicating copy to clipboard operation
libpcre.zig copied to clipboard

Zig bindings to libpcre

libpcre.zig

Build status

To build, add to your build.zig:

const linkPcre = @import("vendor/libpcre.zig/build.zig").linkPcre;
try linkPcre(exe);
exe.addPackagePath("libpcre", "vendor/libpcre.zig/src/main.zig");

Supported operating systems:

  • Linux: apt install pkg-config libpcre3-dev

  • macOS: brew install pkg-config pcre

  • ~~Windows: install vcpkg, vcpkg integrate install, vcpkg install pcre --triplet x64-windows-static~~

    Zig doesn't have vcpkg integration any more. Suggestions welcome!