authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-24 15:09:46-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-24 15:54:33-07:00
log6bd54a1d3ebd8d997158c57057ba742824cf7e0c
tree8dae4751dcf998c94c097d920bbb6bbdc1075116
parentac6f9eb2ca0d46a8b42bcd1fb9b39561a26a1819
signaturelock-open Commit is signed but in an unrecognized format.

update zig1.wasm

Notable changes in this update: 127198e58cb3dcf2d2287124cf15a23a7d3a9c02 fixes building zig2 artifact on macOS Sonoma 14.0 (more specifically the SDK 14.0 linker). a8d2ed806558cc1472f3a532169a4994abe17833 fixed some alignment edge cases which is needed to do the store_hash=false change in the compiler source code. df5f0517b33b5f7bc2a508cf6a0ee62246f02d21 preserves result type information through the address-of operator.

2 files changed, 3 insertions(+), 0 deletions(-)

stage1/zig.h+3
...@@ -190,10 +190,13 @@ typedef char bool;...@@ -190,10 +190,13 @@ typedef char bool;
190190
191#if zig_has_attribute(weak) || defined(zig_gnuc)191#if zig_has_attribute(weak) || defined(zig_gnuc)
192#define zig_weak_linkage __attribute__((weak))192#define zig_weak_linkage __attribute__((weak))
193#define zig_weak_linkage_fn __attribute__((weak))
193#elif _MSC_VER194#elif _MSC_VER
194#define zig_weak_linkage __declspec(selectany)195#define zig_weak_linkage __declspec(selectany)
196#define zig_weak_linkage_fn
195#else197#else
196#define zig_weak_linkage zig_weak_linkage_unavailable198#define zig_weak_linkage zig_weak_linkage_unavailable
199#define zig_weak_linkage_fn zig_weak_linkage_unavailable
197#endif200#endif
198201
199#if zig_has_builtin(trap)202#if zig_has_builtin(trap)
stage1/zig1.wasm
Binary files a/stage1/zig1.wasm and b/stage1/zig1.wasm differ