Update to Zig 0.16.0#12726
Conversation
jacobsandlund
left a comment
There was a problem hiding this comment.
uucode related changes look good!
|
Vexu/arocc#1010 has been opened to address the previously mentioned arocc issue. There now seems to be an issue with the translated Zig artifact. Will work on tracking this down next: |
|
Opened a couple of translate-c issues:
These two changes along with the Aro update seem to have unblocked us and I can proceed with fixing the full build again. 🙂 🤞 |
|
I'm now happy to say that the project builds, tests, and runs under Linux!
The pkg-config bits that we were using to work around the translate-c issues have been moved back to translate-c since the previously mentioned fixes unblock us there. Nothing particularly notable otherwise to mention (Vexu/arocc#1010 has been merged though!). I'm not going to say that there aren't any upgrade-related regressions yet, although I'm not aware of any, and I'm planning on driving this soon to check. My focus now will be moving to Darwin (testing/building on MacOS). There are also some issues with the translate-c fixes on Darwin and other platforms, so these need to be corrected too. |
|
Update on MacOS progress: we were blocked last week by various Arocc Arm/NEON support issues, for which the Aro maintainers were very prompt in resolving (thanks have been relayed!) I worked to roll these in during the week last week and was blocked by what was ultimately resolved in Vexu/arocc#1039. I'm now working through resolving some local toolchain issues that seem to keep wuffs from properly building on the iOS targets, then I can move on to more general MacOS syntax fixes, etc. |
|
Update: Work is continuing, we are continuing to work through the MacOS translation issues (Vexu/arocc#1052 is the latest). In the meantime I am refreshing this repo with the latest main and working on some updates to our handling of Juicy main data (I/O and env) that we discussed internally. More updates as they come! |
6d52855 to
0c2296b
Compare
|
The aforementioned rebase/rework has now been completed. I've updated the main PR description to reflect the current state of the work. Long story short:
Linux build and tests should pass again as it did during the last major push. Will be pivoting back now again to MacOS builds and getting further C translation issues fixed and possibly other MacOS build issues that arise. |
|
Amazing work @vancluever Thank you so much ❤️ |
a69a675 to
bf5f82a
Compare
This commit represents the majority of the work necessary to upgrade Ghostty to use Zig 0.16.0. At this point, the project builds, tests, and runs under Linux. More work may be necessary for other platforms, and possibly to fix any (currently unknown) upgrade regressions. Co-authored-by: Leah Amelia Chen <hi@pluie.me>

Closes #12228
Supersedes #12388
UPDATED - Also check comments for additional details!
This commit represents the majority of the work necessary to upgrade Ghostty to use Zig 0.16.0.
At this point, all tests pass under Linux, but more work may be necessary to get them to build and function on other platforms.
There are some parts of this update that deserve commentary, so that follows below:
Expanded use of global state (IO/environment related)
Global state, once generally only used by the C library, has now been expanded to be used across the project at large. The static local variable that holds the state has been moved private in its source container with all attributes that need to be accessed globally gated behind accessors, most of which guard on testing and send test copies instead. Use of the global state in non-testing scenarios asserts that the state has been initialized through
initnaturally through the optional assertion process.The rationale for this change is to have a location to store a general-purpose I/O implementation and environment variables, both of which are now provided through Juicy Main and hence can no longer be accessed or mutated through stdlib without use of lower-level system calls and hacks (some of which are employed, but sparingly).
As the code matures, dependence on global state should naturally slim down.
We do not allow global state to be used in libghostty-vt. There are comptime guards that prevent this should compilation of libghostty-vt end up pulling
global.zig. This means that as per the last paragraph, work has already begun to de-couple the codebase from global state where necessary. Additionally, in some places where environment needs to be updated and where it can be done in an isolated fashion, environment maps are used - system-level injection of environment through the use ofsetenvorunsetenvnow only happens during early initialization (and hopefully we can remove these in the future too, especially since they require re-synchronization of the higher-level environment primitives after this is done).The
lib/compatTreeSome stdlib features that have been removed but still either seem they would be valuable to us or outright complex to move away from (particularly
SegmentedList) have been extracted from 0.15.2, updated as needed, and placed insrc/lib/compat. The intention again is to allow for piecemeal migration to more modern implementations or possibly straight local versions.This paradigm has also allowed us to add
std.Io.Condition.waitTimeout, which incidentally was missed in the 0.16.0 shuffle and has been re-added for 0.17.0. We can remove this in favor of the upstream when we eventually migrate to that, obviously.Note that there was a lot more of this extracted code when this work was started, but a lot of said code has been removed (namely environment or process/fd-related functionality).
translate-c Issues (functional on Linux, Darwin WIP)
There have been a number of C translation issues that we have been working through through submitted patches and the great help from folks on the Arocc and Zig side. This is ongoing, with the remaining work to getting things fixed mainly focused on the MacOS side. Stay tuned for further developments.
As mentioned at the top, follow comments for more details!