Skip to content

libmoss v0.9.0

Latest

Choose a tag to compare

@HarshaNalluru HarshaNalluru released this 09 Apr 04:03
· 13 commits to main since this release
10d8b2e

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 header
  • lib/libmoss.{dylib,so,dll} — shared library
  • lib/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