authorgravatar for 1671644+arrufat@users.noreply.github.comAdrià Arrufat <1671644+arrufat@users.noreply.github.com> 2024-03-13 22:19:30+09:00
committergravatar for luuk@degram.devLuuk de Gram <luuk@degram.dev> 2024-03-13 21:47:31+01:00
log17bad9f88666bd6659bc0d6deb0acad39028291a
tree9fa9a904ff377d36ffe1d87013d1f820a919450a
parentb9cca3b63dbcedadbda1c884e5b3333c8458b30d

Fix emscripten exports


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/os/emscripten.zig+2-2
...@@ -17,8 +17,8 @@ comptime {...@@ -17,8 +17,8 @@ comptime {
17 if (builtin.os.tag == .emscripten) {17 if (builtin.os.tag == .emscripten) {
18 if (builtin.mode == .Debug or builtin.mode == .ReleaseSafe) {18 if (builtin.mode == .Debug or builtin.mode == .ReleaseSafe) {
19 // Emscripten does not provide these symbols, so we must export our own19 // Emscripten does not provide these symbols, so we must export our own
20 @export(__stack_chk_guard, .{ .name = "__stack_chk_guard", .linkage = .Strong });20 @export(__stack_chk_guard, .{ .name = "__stack_chk_guard", .linkage = .strong });
21 @export(__stack_chk_fail, .{ .name = "__stack_chk_fail", .linkage = .Strong });21 @export(__stack_chk_fail, .{ .name = "__stack_chk_fail", .linkage = .strong });
22 }22 }
23 }23 }
24}24}