解决gcc中未定义的引用库链接错误

时间:2014-11-26 08:32:34

标签: git gcc build linker shared-libraries

我正在尝试构建第一个git提交,即提交e83c516 我面临的是链接器错误,如下所示

$ make                                                                                    
gcc -g -Wall -o update-cache update-cache.o read-cache.o -lssl                                                                        
/usr/bin/ld: update-cache.o: undefined reference to symbol 'SHA1_Init@@libcrypto.so.10'                                               
/usr/bin/ld: note: 'SHA1_Init@@libcrypto.so.10' is defined in DSO /lib64/libcrypto.so.10 so try adding it to the linker command line  
/lib64/libcrypto.so.10: could not read symbols: Invalid operation                                                                     
collect2: error: ld returned 1 exit status                                                                                            
make: *** [update-cache] Error 1                                                                                                    



$ cat Makefile                                                                            
CFLAGS=-g -Wall                                                                                         CC=gcc                                                                                                                                   
PROG=update-cache show-diff init-db write-tree read-tree commit-tree cat-file                                                         

all: $(PROG)                                                                                                                                  
install: $(PROG)                                                                                                                      
        install $(PROG) $(HOME)/bin/                                                                                                                                                                                                                        
LIBS= -lssl                                                                                                                                     
init-db: init-db.o

update-cache: update-cache.o read-cache.o
        $(CC) $(CFLAGS) -o update-cache update-cache.o read-cache.o $(LIBS)

show-diff: show-diff.o read-cache.o
  $(CC) $(CFLAGS) -o show-diff show-diff.o read-cache.o $(LIBS)

所以这里有一些链接器错误。我试图寻找它,搜索了几个地方,使用上面的错误信息找出它,运气不佳。主要是stackoverflow没有太多链接帮助。 我正在解释我在下面弄清楚的过程。

1 个答案:

答案 0 :(得分:10)

我阅读this really nice post解释链接到我的库。我建议任何面临类似问题的人先阅读。

因此,我将帮助新用户剖析错误消息。问题是它无法找到加密库。所以我们首先需要链接该库。

您将-lcrypto添加到LIBS库列表中。我是怎么想出来的。查看错误消息/usr/bin/ld: update-cache.o: undefined reference to symbol 'SHA1_Init@@libcrypto.so.10'中缺少的库。您需要从 lib 加密中找出加密部分.so.10

LIBS= -lssl -lcrypto 

执行此操作后,您会收到类似的错误消息:

/usr/bin/ld: update-cache.o: undefined reference to symbol 'deflate'                                                                  
/usr/bin/ld: note: 'deflate' is defined in DSO /lib64/libz.so.1 so try adding it to the linker command line                           
/lib64/libz.so.1: could not read symbols: Invalid operation                                                                           
collect2: error: ld returned 1 exit status  

现在你知道该怎么做了。添加-lz库。所以最后LIBS看起来像下面那个

LIBS= -lssl -lcrypto -lz 

你是如何解决类似的链接器错误(并编译git的第一次提交)。

希望这会有所帮助:)