Skip to content

v1.0.0

Choose a tag to compare

@github-actions github-actions released this 16 Nov 16:44
· 12 commits to master since this release

See CHANGELOG.md for details.

Download

Download stackman-1.0.0.tar.gz containing pre-built libraries for all platforms.

Contents

stackman/           - Header files
lib/
  sysv_amd64/      - Linux x86_64
  sysv_i386/       - Linux x86 (32-bit)
  arm32/           - Linux ARM (32-bit, AAPCS)
  aarch64/         - Linux ARM64 (AAPCS64)
  win_x86/         - Windows x86 (32-bit)
  win_x64/         - Windows x64
  win_arm64/       - Windows ARM64
README.md
LICENSE
CHANGELOG.md

Usage

# Extract
tar -xzf stackman-1.0.0.tar.gz

# Build detects platform automatically
make abiname  # Shows detected ABI (e.g., sysv_amd64)

# Link with your project
gcc -Istackman mycode.c -Llib/sysv_amd64 -lstackman

# Or let Makefile auto-detect
ABI=$(shell make -C stackman-1.0.0 abiname)
gcc -Istackman mycode.c -Llib/$(ABI) -lstackman