mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-05-05 15:33:00 +00:00
This gets `zig build -Dtarget=aarch64-ios` working. By "working" I mean it produces an object file without compiler errors. However, the object file certainly isn't useful since it uses a number of features that will not work in the iOS sandbox. This is just an experiment more than anything to see how hard it would be to get libghostty working within iOS to render a terminal. Note iOS doesn't support ptys so this wouldn't be a true on-device terminal. The challenge right now is to just get a terminal rendering (not usable).
14 lines
358 B
Zig
14 lines
358 B
Zig
.{
|
|
.name = "pixman",
|
|
.version = "0.42.2",
|
|
.paths = .{""},
|
|
.dependencies = .{
|
|
.pixman = .{
|
|
.url = "https://deps.files.ghostty.dev/pixman-pixman-0.42.2.tar.gz",
|
|
.hash = "12209b9206f9a5d31ccd9a2312cc72cb9dfc3e034aee1883c549dc1d753fae457230",
|
|
},
|
|
|
|
.apple_sdk = .{ .path = "../apple-sdk" },
|
|
},
|
|
}
|