最佳答案
我使用 C + + (Eclipse)在 Linux 中工作,想使用一个库。 $(WindowsSDK _ PlatformPath) Eclipse 向我显示了一个错误:
undefined reference to 'dlopen'
$(WindowsSDK _ SupportedAPI _ arm)
你知道怎么解决吗?
$(WindowsSDK _ SupportedAPI _ x64)这是我的代码:
#include <stdlib.h>
#include <stdio.h>
#include <dlfcn.h>
int main(int argc, char **argv) {
void *handle;
double (*desk)(char*);
char *error;
handle = dlopen ("/lib/CEDD_LIB.so.6", RTLD_LAZY);
if (!handle) {
fputs (dlerror(), stderr);
exit(1);
}
desk= dlsym(handle, "Apply");
if ((error = dlerror()) != NULL) {
fputs(error, stderr);
exit(1);
}
dlclose(handle);
}