Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Releases: stackless-dev/stackman

v1.2.3

06 Jun 15:20

Choose a tag to compare

See CHANGELOG.md for details.

Download

Download stackman-1.2.3.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.3.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.3 abiname)
gcc -Istackman mycode.c -Llib/$(ABI) -lstackman

v1.2.2

05 Jun 15:56

Choose a tag to compare

See CHANGELOG.md for details.

Download

Download stackman-1.2.2.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.2.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.2 abiname)
gcc -Istackman mycode.c -Llib/$(ABI) -lstackman

v1.2.1

09 May 11:31

Choose a tag to compare

See CHANGELOG.md for details.

Download

Download stackman-1.2.1.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.1.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.1 abiname)
gcc -Istackman mycode.c -Llib/$(ABI) -lstackman

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

Morty Proxy This is a proxified and sanitized view of the page, visit original site.