Skip to content

Commit c6472e3

Browse files
committed
Merge pull request #511 from ShonFrazier/master
Added empty search extension for loading framework binaries
2 parents f023f46 + 1e7611e commit c6472e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dlload.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ static char *extensions[] = { ".so" };
1818
#define GET_FUNCTION_FROM_MODULE dlsym
1919
#define CLOSE_MODULE dlclose
2020
typedef void * module_handle_t;
21-
static char *extensions[] = { ".dylib", ".bundle" };
22-
#define N_EXTENSIONS 2
21+
static char *extensions[] = { "", ".dylib", ".bundle" };
22+
#define N_EXTENSIONS 3
2323
#endif
2424

2525
#include "julia.h"

0 commit comments

Comments
 (0)