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}}