dlopen dlerror dlclose dlsym 未定义的引用的解决方案

时间:2021-05-17 05:31:57

软件环境

ubuntu 14.04

eclipse cpp indigo

问题

在#include <dlfcn.h>的情况下,依然编译时报错:
对 'dlopen '未定义的引用
对 'dlerror '未定义的引用
对 'dlclose '未定义的引用

解决办法

右键C工程,选择“Properties”,在“C/C++ Build-Setting"中,”GCC C Linker-Libraries“下的”Libraries(-l)“中添加一个”dl“选项。

dlopen dlerror dlclose dlsym 未定义的引用的解决方案