The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.0 KiB
83 lines
2.0 KiB
8 years ago
|
#if defined _WIN32 || defined __CYGWIN__
|
||
|
#define DLL_PUBLIC __declspec(dllexport)
|
||
|
#else
|
||
|
#if defined __GNUC__
|
||
|
#define DLL_PUBLIC __attribute__ ((visibility("default")))
|
||
|
#else
|
||
|
#pragma message ("Compiler does not support symbol visibility.")
|
||
|
#define DLL_PUBLIC
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
8 years ago
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
||
8 years ago
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
typedef int (*fptr) (void);
|
||
|
|
||
8 years ago
|
#ifdef __CYGWIN__
|
||
|
|
||
|
#include <dlfcn.h>
|
||
|
|
||
|
fptr find_any_f (const char *name) {
|
||
|
return (fptr) dlsym(RTLD_DEFAULT, name);
|
||
|
}
|
||
|
#else /* _WIN32 */
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <tlhelp32.h>
|
||
|
|
||
8 years ago
|
/* Unlike Linux and OS X, when a library is loaded, all the symbols aren't
|
||
|
* loaded into a single namespace. You must fetch the symbol by iterating over
|
||
|
* all loaded modules. Code for finding the function from any of the loaded
|
||
|
* modules is taken from gmodule.c in glib */
|
||
|
fptr find_any_f (const char *name) {
|
||
|
fptr f;
|
||
|
HANDLE snapshot;
|
||
|
MODULEENTRY32 me32;
|
||
|
|
||
|
snapshot = CreateToolhelp32Snapshot (TH32CS_SNAPMODULE, 0);
|
||
|
if (snapshot == (HANDLE) -1) {
|
||
|
printf("Could not get snapshot\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
me32.dwSize = sizeof (me32);
|
||
|
|
||
|
f = NULL;
|
||
|
if (Module32First (snapshot, &me32)) {
|
||
|
do {
|
||
|
if ((f = (fptr) GetProcAddress (me32.hModule, name)) != NULL)
|
||
|
break;
|
||
|
} while (Module32Next (snapshot, &me32));
|
||
|
}
|
||
|
|
||
|
CloseHandle (snapshot);
|
||
|
return f;
|
||
|
}
|
||
8 years ago
|
#endif
|
||
8 years ago
|
|
||
|
int DLL_PUBLIC func() {
|
||
|
fptr f;
|
||
|
|
||
|
f = find_any_f ("func_from_language_runtime");
|
||
|
if (f != NULL)
|
||
|
return f();
|
||
|
printf ("Could not find function\n");
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
#else
|
||
8 years ago
|
/*
|
||
|
* Shared modules often have references to symbols that are not defined
|
||
8 years ago
|
* at link time, but which will be provided from deps of the executable that
|
||
8 years ago
|
* dlopens it. We need to make sure that this works, i.e. that we do
|
||
|
* not pass -Wl,--no-undefined when linking modules.
|
||
|
*/
|
||
8 years ago
|
int func_from_language_runtime();
|
||
8 years ago
|
|
||
8 years ago
|
int DLL_PUBLIC func(void) {
|
||
8 years ago
|
return func_from_language_runtime();
|
||
8 years ago
|
}
|
||
8 years ago
|
#endif
|