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/libssh2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

12 Commits

Repository files navigation

CI

libssh2

This is libssh2, packaged for Zig.

Installation

First, update your build.zig.zon:

# Initialize a `zig build` project if you haven't already
zig init
zig fetch --save git+https://github.com/allyourcodebase/libssh2.git#libssh2-1.11.1

You can then import libssh2 in your build.zig with:

const libssh2_dependency = b.dependency("libssh2", .{
 .target = target,
 .optimize = optimize,
});
your_exe.root_module.linkLibrary(libssh2_dependency.artifact("ssh2"));

Build Options

libssh2 offers a few options which you can control like so:

const libssh2_dependency = b.dependency("libssh2", .{
 .target = target,
 .optimize = optimize,
 .zlib = true, // links to zlib for payload compression if enabled (default=true)
 .strip = true, // Strip debug information (default=false)
 .linkage = .static, // Whether to link statically or dynamically (default=static)
 .@"crypto-backend" = .auto, // auto will to default to wincng on windows, openssl everywhere else. (default=auto)
 .@"link-system-crypto-backend" = true, // If enabled will link against system libraries (default=true)
});

About

libssh2 packaged with Zig

Resources

License

Stars

Watchers

Forks

Packages

Contributors

Languages

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