]>
git.saurik.com Git - wxWidgets.git/blob - src/unix/dl_macosx.cpp
4 * Author: Gilles Depeyrot (Gilles.Depeyrot@wanadoo.fr)
5 * Based on: dl_next.xs by Anno Siegel (siegel@zrz.TU-Berlin.DE)
6 * Based on: dl_dlopen.xs by Paul Marquess
7 * Created: Aug 15th, 1994
12 * dl_macosx.c is itself a port from dl_next.xs by Anno Siegel.
13 * dl_next.xs is itself a port from dl_dlopen.xs by Paul Marquess.
14 * The method used here is just to supply the sun style dlopen etc.
15 * functions in terms of NeXTs rld_*.
20 static char dl_last_error
[1024];
27 int dlclose(void *handle
) /* stub only */
32 #import <mach-o/dyld.h>
40 void TranslateError(const char *path
, enum dyldErrorSource type
, int number
)
43 static char *OFIErrorStrings
[] =
45 "%s(%d): Object Image Load Failure\n",
46 "%s(%d): Object Image Load Success\n",
47 "%s(%d): Not an recognisable object file\n",
48 "%s(%d): No valid architecture\n",
49 "%s(%d): Object image has an invalid format\n",
50 "%s(%d): Invalid access (permissions?)\n",
51 "%s(%d): Unknown error code from NSCreateObjectFileImageFromFile\n",
53 #define NUM_OFI_ERRORS (sizeof(OFIErrorStrings) / sizeof(OFIErrorStrings[0]))
59 if (index
> NUM_OFI_ERRORS
- 1)
60 index
= NUM_OFI_ERRORS
- 1;
61 sprintf(dl_last_error
, OFIErrorStrings
[index
], path
, number
);
65 sprintf(dl_last_error
, "%s(%d): Totally unknown error type %d\n",
71 void *dlopen(const char *path
, int mode
/* mode is ignored */)
74 NSObjectFileImage ofile
;
75 NSModule handle
= NULL
;
77 dyld_result
= NSCreateObjectFileImageFromFile(path
, &ofile
);
78 if (dyld_result
!= NSObjectFileImageSuccess
)
80 TranslateError(path
, OFImage
, dyld_result
);
84 // NSLinkModule will cause the run to abort on any link error's
85 // not very friendly but the error recovery functionality is limited.
86 handle
= NSLinkModule(ofile
, path
, TRUE
);
92 void *dlsym(void *handle
, const char *symbol
)
96 if (NSIsSymbolNameDefined(symbol
))
97 addr
= NSAddressOfSymbol(NSLookupAndBindSymbol(symbol
));