Tôi làm việc trong Linux với C ++ (Eclipse) và muốn sử dụng thư viện. Eclipse cho tôi thấy một lỗi:
undefined reference to 'dlopen'
Bạn có biết một giải pháp?
Đây là mã của tôi:
#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);
}