·
13 commits
to main
since this release
Precompiled C SDK binaries for the Moss SDK.
Platforms
| Archive | OS | Arch |
|---|---|---|
libmoss-v0.9.0-aarch64-apple-darwin.tar.gz |
macOS | ARM64 (Apple Silicon) |
libmoss-v0.9.0-x86_64-unknown-linux-gnu.tar.gz |
Linux | x86_64 |
libmoss-v0.9.0-aarch64-unknown-linux-gnu.tar.gz |
Linux | ARM64 |
libmoss-v0.9.0-x86_64-pc-windows-msvc.tar.gz |
Windows | x86_64 |
Contents
Each archive contains:
include/libmoss.h— C headerlib/libmoss.{dylib,so,dll}— shared librarylib/libmoss.{a,lib}— static library
Usage
Extract, then compile and link:
# macOS
clang your_app.c -o your_app -Iinclude -Llib -lmoss \
-framework Security -framework SystemConfiguration
# Linux
gcc your_app.c -o your_app -Iinclude -Llib -lmoss -lpthread -lm -ldl