https://github.com/ikskuh/p2-devsuite
A collection of Propeller 2 tools with a Zig based build script for easy compilation
https://github.com/ikskuh/p2-devsuite
Last synced: about 1 month ago
JSON representation
A collection of Propeller 2 tools with a Zig based build script for easy compilation
- Host: GitHub
- URL: https://github.com/ikskuh/p2-devsuite
- Owner: ikskuh
- Created: 2025-03-22T19:50:19.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-05-05T13:11:45.000Z (about 1 month ago)
- Last Synced: 2025-05-11T22:15:28.338Z (about 1 month ago)
- Language: Zig
- Size: 15.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Propeller 2 Development Suite
[](https://github.com/ikskuh/p2-devsuite/actions/workflows/build.yml)
This repository contains a build script which compiles a collection of tools for development of [Parallax Propeller 2](https://www.parallax.com/propeller-2/) software.
Included software packages:
- [spin2cpp, flexcc, flexspin](https://github.com/totalspectrum/spin2cpp) v7.1.1
- [loadp2](https://github.com/totalspectrum/loadp2) v075## Compilation
Get a copy of [Zig 0.14](https://ziglang.org/download/#release-0.14.0) for your system, then invoke
```sh-session
[user@work p2-devsuite]$ zig build
[user@work p2-devsuite]$ tree zig-out
zig-out
├── bin
│ ├── flexcc
│ ├── flexspin
│ ├── loadp2
│ └── spin2cpp
└── include
├── assert.h
├── …
└── wctype.h26 directories, 327 files
[user@work p2-devsuite]$
```