Releases: stackless-dev/stackman
Releases · stackless-dev/stackman
v1.2.0
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) -lstackmanv1.1.0
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) -lstackmanv1.0.0
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) -lstackmanv0.2
the state of things before version 1.0.0
Initial release
A release of Stackman