From 0ad6b2726d3439c2db02b2c3b9578d869ad1e0bc Mon Sep 17 00:00:00 2001 From: clabby Date: Fri, 24 Nov 2023 17:35:05 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20supported=20targets=20table?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- book/src/SUMMARY.md | 1 + book/src/fpp-dev/targets.md | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 book/src/fpp-dev/targets.md diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index 829819882..5376d51c4 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -3,6 +3,7 @@ - [Introduction](./intro.md) - [Fault Proof Program Development](./fpp-dev/intro.md) - [Environment](./fpp-dev/env.md) + - [Supported Targets](./fpp-dev/targets.md) - [Prologue](./fpp-dev/prologue.md) - [Execution](./fpp-dev/execution.md) - [Epilogue](./fpp-dev/epilogue.md) diff --git a/book/src/fpp-dev/targets.md b/book/src/fpp-dev/targets.md new file mode 100644 index 000000000..31e6b0c70 --- /dev/null +++ b/book/src/fpp-dev/targets.md @@ -0,0 +1,13 @@ +# Supported Targets + +Kona seeks to support all FPVM targets that LLVM and `rustc` can offer introductory support for. Below is a matrix of features that Kona offers +for each FPVM target: + +| Target | Build Pipeline | IO | malloc | Program Stages | +|------------------------|----------------|----|--------|----------------| +| `cannon` & `cannon-rs` | ❌ | ❌ | ❌ | ❌ | +| `asterisc` | ❌ | ❌ | ❌ | ❌ | + +If there is a feature that you would like to see supported, please [open an issue][new-issue] or [consider contributing][contributing]! + +{{#include ../links.md}}