[tools] Add nuget-hash-extractor tool to help produce the runtime ignored assemblies...
[mono-project.git] / mono / utils / mono-dl-darwin.c
blob225706c547ac78f411d6a57bc554f8e29e7d5290
1 /*
2 * mono-dl.c: Interface to the dynamic linker
4 * Author:
5 * Mono Team (http://www.mono-project.com)
7 * Copyright 2001-2004 Ximian, Inc.
8 * Copyright 2004-2009 Novell, Inc.
9 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
11 #include <config.h>
13 #if defined (TARGET_MACH)
15 #include "mono/utils/mono-dl.h"
16 #include "mono/utils/mono-embed.h"
17 #include "mono/utils/mono-path.h"
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <ctype.h>
22 #include <string.h>
23 #include <glib.h>
24 #include <dlfcn.h>
25 #include <unistd.h>
26 #include <mach-o/dyld.h>
28 const char *
29 mono_dl_get_so_prefix (void)
31 return "lib";
33 const char **
34 mono_dl_get_so_suffixes (void)
36 static const char *suffixes[] = {
37 ".dylib",
38 ".so",
39 ".bundle",
40 "",
42 return suffixes;
45 int
46 mono_dl_get_executable_path (char *buf, int buflen)
48 uint32_t bsize = buflen;
49 if (_NSGetExecutablePath (buf, &bsize) == 0)
50 return strlen (buf);
51 return -1;
54 const char*
55 mono_dl_get_system_dir (void)
57 #ifdef TARGET_IOS
58 /* IOS9 can't load system libraries using relative paths, i.e. 'libc' doesn't work, but '/usr/lib/libc' does. */
59 return "/usr/lib";
60 #else
61 return NULL;
62 #endif
65 #endif