Resolves Linux build failure where multiple definition of FLAGS_rom and FLAGS_norom
occurred. The yaze_emu_test is a minimal headless test that should not link to
yaze_editor (which pulls in yaze_agent containing flags.cc). The test defines its
own flags (FLAGS_emu_test_rom, etc.) which were conflicting with the agent's flags.
Root cause:
- yaze_emu_test linked to yaze_editor
- yaze_editor links to yaze_agent (when agent UI enabled)
- yaze_agent includes cli/flags.cc with FLAGS_rom/FLAGS_norom definitions
- This created ODR (One Definition Rule) violations with emu_test's own flags
Solution:
- Remove yaze_editor and yaze_app_core_lib dependencies from yaze_emu_test
- Only link minimal dependencies: yaze_emulator, yaze_util, and Abseil flags
Affected platforms: Linux (Ubuntu 22.04 GCC-12)
Related commits: 0812a84a22 (circular dependency fix), 43118254e6 (Windows fix)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- CI run #19528789779: macOS build and test both PASS (07:23 UTC)
- Confirms macOS stability after Windows /std:c++latest fix
- No regressions in macOS platform post-fix
- Pipeline failures are non-macOS related (Code Quality formatting, Windows, Ubuntu)
- z3ed Agent job also passes successfully
Generated with Claude Code
Co-Authored-By: CLAUDE_MAC_BUILD <noreply@anthropic.com>
Fixes linker error on Linux where yaze_gfx_debug.a (performance_dashboard.cc)
was calling AtlasRenderer::Get() and AtlasRenderer::GetStats() but wasn't
linking against yaze_gfx_render which contains atlas_renderer.cc.
Root cause: yaze_gfx_debug was only linking to yaze_gfx_types and
yaze_gfx_resource, missing the yaze_gfx_render dependency.
This also fixes the undefined reference errors for HttpServer methods
which were already properly included in the agent.cmake source list.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Documents completion of HTTP API Phase 2 implementation and sandbox
dependency fixes on the agent coordination board and initiative doc.
Coordination Board Updates:
- Mark Milestone 3 (HTTP API) as COMPLETE with test results
- Document sandbox dependency fixes (yaml-cpp, googletest)
- Note gRPC blocker and decision to use CI validation
- Provide green light for CODEX smoke builds and GH workflow
Initiative Document Updates:
- Mark Milestone 3 status as COMPLETE
- Add detailed test results (health and models endpoints)
- Document Phase 2 completion timestamp
Enables handoff to CODEX for CI validation via:
gh workflow run ci.yml --ref develop -f enable_http_api_tests=true
Co-Authored-By: Claude <noreply@anthropic.com>
- Moved all third-party libraries (SDL, ImGui, Asar, etc.) from `src/lib/` and `third_party/` to a new `ext/` directory for better organization and clarity in dependency management.
- Updated CMake configuration to reflect the new paths, ensuring all targets and includes point to the `ext/` directory.
- Enhanced CMake presets to support new build options for AI and gRPC features, improving modularity and build flexibility.
- Added new feature flags for agent UI and remote automation, allowing for more granular control over build configurations.
- Updated documentation to reflect changes in the project structure and build options, ensuring clarity for contributors and users.