authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-07-06 23:24:51+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-07-07 07:23:24+02:00
log5209e7e458f6522778c5da62623627bd8f06d007
treeee4145117102db84b50cef1f7860d658caec6138
parentb5cc658ab4113b4db4f709dbec258910696990bd

compiler-rt: Export __emutls_get_address for OpenHarmony


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

lib/compiler_rt/emutls.zig+1-1
......@@ -18,7 +18,7 @@ const gcc_word = usize;
1818pub const panic = common.panic;
1919
2020comptime {
21 if (builtin.link_libc and (builtin.abi.isAndroid() or builtin.os.tag == .openbsd)) {
21 if (builtin.link_libc and (builtin.abi.isAndroid() or builtin.abi.isOpenHarmony() or builtin.os.tag == .openbsd)) {
2222 @export(&__emutls_get_address, .{ .name = "__emutls_get_address", .linkage = common.linkage, .visibility = common.visibility });
2323 }
2424}