Linux C ++エラー:「dlopen」への未定義の参照
LinuxでC ++(Eclipse)を使用していて、ライブラリを使用したいと思っています。Eclipseがエラーを表示します。 undefined reference to 'dlopen' あなたは解決策を知っていますか? これが私のコードです: #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, …