TL;DR:我正在做一个C练习,使用dlfcn.h
打开共享库尽管添加了(我认为是)基于其他帖子的正确标志,我仍然得到undefined reference to
、dlopen
和dlsym
中定义的一些其他函数的dlfcn.h
错误(错误消息和make file包含在下面)。
在我的.c
文件的开头,obv包含了以下内容:#include <dlfcn.h>
我做错什么了?
详细版本:
我正在研究exercise 30 of Learn C The Hard Way
并困惑于我还需要做什么才能让libex29_tests.c
程序(页面上最后一段代码)正确编译如您所知,共享库/makefiles/compiler标志对我来说是新的。
到目前为止,我已经尝试了:基于以下帖子,我已经尝试通过向Makefile的各个部分添加-ldl
和/或LIBS=-ldl fPIC
来添加LDFLAGS+=-ldl
标志,但是仍然有问题。本书中makefile的版本(包括在下面,作为参考)确实包含一个-ldl
标志,尽管语法略有不同。无论如何,我会继续收到同样的错误消息。
Linux c++ error: undefined reference to 'dlopen'
g++ cannot link to libdl even with -ldl flag
undefined reference to 'dlopen' in installing phonetisaurus
C++: Undefined symbols when loading shared library with dlopen()
有什么建议吗?
这些就是我犯的错误这些错误假定makefile
的版本如下所示但是,正如我所提到的,更改-ldl
标志的语法会导致几乎相同的错误消息。
~/.../lchw/ex30_automated$ make
cc -std=gnu99 -g -O2 -Wall -Wextra -Isrc -rdynamic -DNDEBUG -fPIC -c -o src/libex29.o src/libex29.c
src/libex29.c: In function ‘fail_on_purpose’:
src/libex29.c:42:33: warning: unused parameter ‘msg’ [-Wunused-parameter]
int fail_on_purpose(const char *msg)
^
ar rcs build/libYOUR_LIBRARY.a src/libex29.o
ranlib build/libYOUR_LIBRARY.a
cc -shared -o build/libYOUR_LIBRARY.so src/libex29.o
cc -std=gnu99 -g -O2 -Wall -Wextra -Isrc -rdynamic -DNDEBUG build/libYOUR_LIBRARY.a tests/libex29_tests.c -o tests/libex29_tests
In file included from tests/libex29_tests.c:1:0:
tests/libex29_tests.c: In function ‘main’:
src/minunit.h:14:38: warning: parameter ‘argc’ set but not used [-Wunused-but-set-parameter]
#define RUN_TESTS(name) int main(int argc, char *argv[]) {\
^
tests/libex29_tests.c:64:1: note: in expansion of macro ‘RUN_TESTS’
RUN_TESTS(all_tests);
^
/tmp/dchaudh/ccwzxpC3.o: In function `check_function':
/home/dchaudh/Dropbox/dchaudh/wc/lchw/ex30_automated/tests/libex29_tests.c:10: undefined reference to `dlsym'
/home/dchaudh/Dropbox/dchaudh/wc/lchw/ex30_automated/tests/libex29_tests.c:11: undefined reference to `dlerror'
/tmp/dchaudh/ccwzxpC3.o: In function `test_dlopen':
/home/dchaudh/Dropbox/dchaudh/wc/lchw/ex30_automated/tests/libex29_tests.c:23: undefined reference to `dlopen'
/tmp/dchaudh/ccwzxpC3.o: In function `test_dlclose':
/home/dchaudh/Dropbox/dchaudh/wc/lchw/ex30_automated/tests/libex29_tests.c:46: undefined reference to `dlclose'
collect2: error: ld returned 1 exit status
make: *** [tests/libex29_tests] Error 1
这是本书上最新的它确实包含
makefile
标志,如您在第二行所见。CFLAGS=-std=gnu99 -g -O2 -Wall -Wextra -Isrc -rdynamic -DNDEBUG $(OPTFLAGS)
LIBS=-ldl $(OPTLIBS)
PREFIX?=/usr/local
SOURCES=$(wildcard src/**/*.c src/*.c)
OBJECTS=$(patsubst %.c,%.o,$(SOURCES))
TEST_SRC=$(wildcard tests/*_tests.c)
TESTS=$(patsubst %.c,%,$(TEST_SRC))
TARGET=build/libYOUR_LIBRARY.a
SO_TARGET=$(patsubst %.a,%.so,$(TARGET))
# The Target Build
all: $(TARGET) $(SO_TARGET) tests
dev: CFLAGS=-g -Wall -Isrc -Wall -Wextra $(OPTFLAGS)
dev: all
$(TARGET): CFLAGS += -fPIC
$(TARGET): build $(OBJECTS)
ar rcs $@ $(OBJECTS)
ranlib $@
$(SO_TARGET): $(TARGET) $(OBJECTS)
$(CC) -shared -o $@ $(OBJECTS)
build:
@mkdir -p build
@mkdir -p bin
# The Unit Tests
.PHONY: tests
tests: CFLAGS += $(TARGET)
tests: $(TESTS)
sh ./tests/runtests.sh
valgrind:
VALGRIND="valgrind --log-file=/tmp/valgrind-%p.log" $(MAKE)
# The Cleaner
clean:
rm -rf build $(OBJECTS) $(TESTS)
rm -f tests/tests.log
find . -name "*.gc*" -exec rm {} \;
rm -rf `find . -name "*.dSYM" -print`
# The Install
install: all
install -d $(DESTDIR)/$(PREFIX)/lib/
install $(TARGET) $(DESTDIR)/$(PREFIX)/lib/
# The Checker
BADFUNCS='[^_.>a-zA-Z0-9](str(n?cpy|n?cat|xfrm|n?dup|str|pbrk|tok|_)|stpn?cpy|a?sn?printf|byte_)'
check:
@echo Files with potentially dangerous functions.
@egrep $(BADFUNCS) $(SOURCES) || true
最佳答案
${LIBS}
(以及您的-ldl
)在makefile中没有任何地方使用。看起来,您正在使用内置规则进行编译,并且可以使用LDLIBS
而不是LIBS
作为此变量的名称。
除此之外
tests: CFLAGS += $(TARGET)
在您的示例中是错误的,因为
TARGET
是必须进入(LD)LIBS
的库。$(TARGET): build $(OBJECTS)
build:
@mkdir -p build
也不理智。这将中断并行生成(
$(OBJECTS)
应依赖于build
),并将导致不需要的生成(build
是一个目录,由每个编译/链接操作更改)普通的build
对于VPATH
构建是有问题的,我建议使用$(OBJECTS): | build/.dirstamp
build/.dirstamp:
mkdir ${@D}
在这里。
关于c - C:尽管添加了-ldl标志,但未定义对dlopen/dlsym的引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26682509/