From 646589b6883e11168973f0e5bb20b0ea06841f12 Mon Sep 17 00:00:00 2001 From: Trung Nguyen <57174311+trungnt2910@users.noreply.github.com> Date: Wed, 1 May 2024 00:20:17 +1000 Subject: [PATCH] Haiku: Native support This is the rest of the changes to the native code of .NET from the initial porting effort in 2023. --- src/mono/mono/utils/mono-dl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mono/mono/utils/mono-dl.c b/src/mono/mono/utils/mono-dl.c index cc4578b2c6da08..888ef39838ae71 100644 --- a/src/mono/mono/utils/mono-dl.c +++ b/src/mono/mono/utils/mono-dl.c @@ -50,6 +50,8 @@ fix_libc_name (const char *name) return "/usr/lib/libc.dylib"; #elif defined (__FreeBSD__) return "libc.so.7"; +#elif defined (__HAIKU__) + return "libroot.so"; #elif defined (LIBC_SO) return LIBC_SO; #else