Skip to content

Releases: stackless-dev/stackman

v1.2.0

16 Nov 18:59

Choose a tag to compare

See CHANGELOG.md for details.

Download

Download stackman-1.2.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)
  riscv64/         - Linux RISC-V 64-bit (LP64D)
  darwin_x86_64/   - macOS x86_64 (Intel)
  darwin_arm64/    - macOS ARM64 (Apple Silicon)
  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.2.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.2.0 abiname)
gcc -Istackman mycode.c -Llib/$(ABI) -lstackman

v1.1.0

16 Nov 17:10

Choose a tag to compare

See CHANGELOG.md for details.

Download

Download stackman-1.1.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)
  darwin_x86_64/   - macOS x86_64 (Intel)
  darwin_arm64/    - macOS ARM64 (Apple Silicon)
  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.1.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.1.0 abiname)
gcc -Istackman mycode.c -Llib/$(ABI) -lstackman

v1.0.0

16 Nov 16:44

Choose a tag to compare

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

v0.2

16 Nov 16:29

Choose a tag to compare

the state of things before version 1.0.0

Initial release

22 Feb 16:27
6113eb2

Choose a tag to compare

A release of Stackman