add ESP32 build system with xtensa-esp-elf toolchain

This commit is contained in:
2026-03-25 16:03:11 -06:00
parent c6c63d6391
commit 33fa36a690
14 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// ESP32 entry point for Spider Runtime
// This replaces SpiderRuntime.cpp for microcontroller builds
#include <spider/SpiderRuntime.hpp>
int main() {
// TODO: initialize Spider runtime for ESP32
return 0;
}