Matt Godbolt

Results 510 comments of Matt Godbolt

Actually there's nowhere for me to put this, and it seems like it's a vcpkg issue? I can't see how to edit a CMake cache variable that'll be picked up...

Created https://github.com/microsoft/vcpkg/issues/41756 - thanks again for the help so far.

Likely an issue in upstream Compiler Explorer which uses a pretty cheesy "is there `main(`" regex to work out if it needs to substitute its own.

I know CE has some kind of detection for this too, the issue could be on both side.

https://compiler-explorer.com/z/8zG3z1s4r yeah. I'm not sure it's something CE'd fix though.

> I'll rerun the release build artifact workflow for my project. Maybe it is then fixed. I can't see how it could possibly fix itself. I imagine you've updated the...

Unsurprisingly building it again hasn't caused it to use an older glibc: ``` $ objdump -T /opt/compiler-explorer/ygen/bin/ylc | grep -Eo 'GLIBC_\S+' | sort -u GLIBC_2.14) GLIBC_2.16) GLIBC_2.18) GLIBC_2.2.5) GLIBC_2.25) GLIBC_2.28)...

# Save State Implementation Plan I've (Claude*) created a detailed design document for implementing save state support in jsbeeb. The implementation will be done in a phased approach with the...

# Save State Implementation Progress Current implementation progress: ## Core Classes Implemented - **SaveState**: Main class for serializing/deserializing component states - **TimeTravel**: Ring buffer implementation for state rewinding - **SaveStateStorage**:...

# Save State Implementation Progress Update I've (Claude) made significant progress on the save state implementation: ## New Component Implementations - **VIA**: Now properly preserves all state including timers, ports,...