From 7f711265c3f4c4da057fc37cf8d780874f6e21e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 6 Nov 2024 14:11:20 +0200 Subject: [PATCH] add missing patch --- 0.10.0-747-g7b2a936173-CallOptions.patch | 28 ++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 0.10.0-747-g7b2a936173-CallOptions.patch diff --git a/0.10.0-747-g7b2a936173-CallOptions.patch b/0.10.0-747-g7b2a936173-CallOptions.patch new file mode 100644 index 0000000..78c2244 --- /dev/null +++ b/0.10.0-747-g7b2a936173-CallOptions.patch @@ -0,0 +1,28 @@ +From 27f2553c1c53ec417181dfe30104df993dffdab1 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= +Date: Tue, 5 Nov 2024 06:20:19 +0200 +Subject: [PATCH] 0.10.0-747-g7b2a936173 CallOptions + zig2-only + +--- + CMakeLists.txt | 19 ------------------- + lib/std/builtin.zig | 5 +++++ + 2 files changed, 5 insertions(+), 19 deletions(-) + +diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig +index eb1212607d..5278906d43 100644 +--- a/lib/std/builtin.zig ++++ b/lib/std/builtin.zig +@@ -1,5 +1,10 @@ + const builtin = @import("builtin"); + ++pub const CallOptions = struct { ++ modifier: CallModifier = .auto, ++ stack: ?[]align(std.Target.stack_align) u8 = null, ++}; ++ + /// `explicit_subsystem` is missing when the subsystem is automatically detected, + /// so Zig standard library has the subsystem detection logic here. This should generally be + /// used rather than `explicit_subsystem`. +-- +2.44.1 +