add ESP32 build system with xtensa-esp-elf toolchain

This commit is contained in:
2026-03-25 15:44:25 -06:00
parent 680a2fdb06
commit 29691ba182
5 changed files with 17 additions and 7 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;
}