add ESP32 build tools

This commit is contained in:
2026-03-25 18:30:53 -06:00
parent dd274c84fe
commit e9d0aeb58b
3 changed files with 140 additions and 0 deletions

8
esp32/main_esp32.cpp Normal file
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;
}