【转】gcc中-pthread和-lpthread的区别

原文网址:http://chaoslawful.iteye.com/blog/568602

用gcc编译使用了POSIX thread的程序时通常需要加额外的选项,以便使用thread-safe的库及头文件,一些老的书里说直接增加链接选项 -lpthread 就可以了,像这样:

Shell代码  

  1. gcc -c x.c
  2. gcc x.o -ox -lpthread

而gcc手册里则指出应该在编译和链接时都增加 -pthread 选项,像这样:

Shell代码  

  1. gcc -pthread -c x.c
  2. gcc x.o -ox -pthread

那么 -pthread 相比于 -lpthread 链接选项究竟多做了什么工作呢?我们可以在verbose模式下执行一下对应的gcc命令行看出来。下面是老式的直接加 -lpthread 链接选项的输出结果:

Shell代码  

  1. $ gcc -v -c x.c
  2. ...
  3. /usr/lib/gcc/i486-linux-gnu/4.2.4/cc1 -quiet -v x.c -quiet -dumpbase x.c
  4. -mtune=generic -auxbase x -version -fstack-protector -fstack-protector -o /tmp/cch4ASTF.s
  5. ...
  6. as --traditional-format -V -Qy -o x.o /tmp/cch4ASTF.s
  7. ...
  8. $ gcc -v x.o -ox -lpthread
  9. ...
  10. /usr/lib/gcc/i486-linux-gnu/4.2.4/collect2 --eh-frame-hdr -m elf_i386 --hash-style=both
  11. -dynamic-linker /lib/ld-linux.so.2 -ox
  12. /usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/crt1.o
  13. /usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/crti.o
  14. /usr/lib/gcc/i486-linux-gnu/4.2.4/crtbegin.o
  15. -L/opt/intel/Compiler/11.1/046/tbb/ia32/cc4.1.0_libc2.4_kernel2.6.16.21/lib/../lib
  16. -L/usr/lib/gcc/i486-linux-gnu/4.2.4
  17. -L/usr/lib/gcc/i486-linux-gnu/4.2.4
  18. -L/usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib
  19. -L/lib/../lib
  20. -L/usr/lib/../lib
  21. -L/opt/intel/Compiler/11.1/046/lib/ia32
  22. -L/opt/intel/Compiler/11.1/046/tbb/ia32/cc4.1.0_libc2.4_kernel2.6.16.21/lib
  23. -L/usr/lib/gcc/i486-linux-gnu/4.2.4/../../..
  24. x.o -lpthread -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc
  25. --as-needed -lgcc_s --no-as-needed
  26. /usr/lib/gcc/i486-linux-gnu/4.2.4/crtend.o /usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/crtn.o

下面是在编译和链接时分别指定 -pthread 选项的输出结果:

Shell代码  

  1. $ gcc -v -pthread -c x.c
  2. ...
  3. /usr/lib/gcc/i486-linux-gnu/4.2.4/cc1 -quiet -v <strong>-D_REENTRANT</strong>
  4. x.c -quiet -dumpbase x.c
  5. -mtune=generic -auxbase x -version -fstack-protector -fstack-protector -o /tmp/cc205IQf.s
  6. ...
  7. as --traditional-format -V -Qy -o x.o /tmp/cc205IQf.s
  8. ...
  9. $ gcc -v x.o -ox -pthread
  10. /usr/lib/gcc/i486-linux-gnu/4.2.4/collect2 --eh-frame-hdr -m elf_i386 --hash-style=both
  11. -dynamic-linker /lib/ld-linux.so.2 -ox
  12. /usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/crt1.o
  13. /usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/crti.o
  14. /usr/lib/gcc/i486-linux-gnu/4.2.4/crtbegin.o
  15. -L/opt/intel/Compiler/11.1/046/tbb/ia32/cc4.1.0_libc2.4_kernel2.6.16.21/lib/../lib
  16. -L/usr/lib/gcc/i486-linux-gnu/4.2.4
  17. -L/usr/lib/gcc/i486-linux-gnu/4.2.4
  18. -L/usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib
  19. -L/lib/../lib
  20. -L/usr/lib/../lib
  21. -L/opt/intel/Compiler/11.1/046/lib/ia32
  22. -L/opt/intel/Compiler/11.1/046/tbb/ia32/cc4.1.0_libc2.4_kernel2.6.16.21/lib
  23. -L/usr/lib/gcc/i486-linux-gnu/4.2.4/../../..
  24. x.o -lgcc --as-needed -lgcc_s --no-as-needed <strong>-lpthread</strong>
  25. -lc -lgcc
  26. --as-needed -lgcc_s --no-as-needed
  27. /usr/lib/gcc/i486-linux-gnu/4.2.4/crtend.o /usr/lib/gcc/i486-linux-gnu/4.2.4/../../../../lib/crtn.o

可见编译选项中指定 -pthread 会附加一个宏定义 -D_REENTRANT ,该宏会导致 libc 头文件选择那些thread-safe的实现;链接选项中指定 -pthread 则同 -lpthread 一样,只表示链接 POSIX thread 库。由于 libc 用于适应 thread-safe 的宏定义可能变化,因此在编译和链接时都使用 -pthread 选项而不是传统的 -lpthread 能够保持向后兼容,并提高命令行的一致性。

时间: 2024-10-30 02:23:29

【转】gcc中-pthread和-lpthread的区别的相关文章

编译参数中-pthread以及-lpthread的区别

在看到MXNet中的Makefile发现LDFLAG里面的是-pthread. 转自:https://www.cnblogs.com/rex-tech/p/3583756.html 编译参数中-pthread以及-lpthread的区别一般情况下,我们在链接一个(文件名为libxxx.so或libxxx.a等的)库时,会使用-lxxx的方式:在Linux中要用到多线程时,需要链接pthread库,按照惯例,我们应该使用-lpthread的方式来进行链接:但是,通过日常的观察,我发现很多开源代码都

GCC 中 -L、-rpath和-rpath-link的区别

GCC 中 -L.-rpath和-rpath-link的区别 来源 http://blog.csdn.net/q1302182594/article/details/42102961 关于这3个参数的说明,有不少资料,但是看完了还是觉得模糊,分不清它们的区别.本文将用实验的方法去探讨这3个参数的区别. 1.三个.c文件 1.1 world.c #include<stdio.h> void world(void) { printf("world.\n"); } 1.2 hel

GCC中的弱符号与强符号

我们经常在编程中碰到一种情况叫符号重复定义.多个目标文件中含有相同名字全局符号的定义,那么这些目标文件链接的时候将会出现符号重复定义的错误.比如我们在目标文件A和目标文件B都定义了一个全局整形变量global,并将它们都初始化,那么链接器将A和B进行链接时会报错: [html] view plain copy 1 b.o:(.data+0x0): multiple definition of `global' 2 a.o:(.data+0x0): first defined here 这种符号的

GCC中初始化函数是如何被处理的?

本文译至: http://gcc.gnu.org/onlinedocs/gccint/Initialization.html 如我们所知,在GCC通过给代码追加__attribute__((constructor))和__attribute__((destructor))的方式可以追加初始函数和终止函数, 这篇文章介绍了GCC内部是如何实现上述处理的. 简单的说,就是在最经常的情况下,初始函数会被追加到.ctor section中,.init会调用对应的函数处理这些初始函数.终止情况类似. --

gcc,g++,make,cmake的区别

首先介绍一下GCC:GNU Compiler Collection(GNU 编译器集合),在为Linux开发应用程序时,绝大多数情况下使用的都是C语言,因此几乎每一位Linux程序员面临的首要问题都是如何灵活运用C编译器.目前 Linux下最常用的C语言编译器是GCC(GNU Compiler Collection),它是GNU项目中符合ANSI C标准的编译系统,能够编译用C.C++和Object C等语言编写的程序.GCC不仅功能非常强大,结构也异常灵活.最值得称道的一点就是它可以通过不同的

【翻译】JAVA中抽象类和接口的区别

不知道有没有人翻译过了,这篇是挺简单的,权当复习一遍内容吧. 很多常见的面试问题如"抽象类和接口有什么区别","你在什么时候用抽象类什么时候用接口".所以在这篇文章里面,我们会讨论一下这个话题. 在开始讨论它们的区别之前,我们先看看它们的介绍. Abstract class 抽象类 抽象类被用来抽象出子类的共同特征.它是不能被实例化的,它只能被子类继承作为超类使用.抽象类被用作它的子类下的层次结构创建模板(Abstract classes are used to c

lua中的pairs和ipairs区别

pairs Returns three values: the next function, the table t, and nil, so that the construction for k,v in pairs(t) do body end will iterate over all key–value pairs of table t. See function next for the caveats of modifying the table during its traver

浅谈HTTP中Get与Post的区别_转

可参考:HTTP请求中POST与GET的区别 Http定义了与服务器交互的不同方法,最基本的方法有4种,分别是GET,POST,PUT,DELETE.URL全称是资源描述符,我们可以这样认为:一个URL地址,它用于描述一个网络上的资源,而HTTP中的GET,POST,PUT,DELETE就对应着对这个资源的查,改,增,删4个操作.到这里,大家应该有个大概的了解了,GET一般用于获取/查询资源信息,而POST一般用于更新资源信息. 1.根据HTTP规范,GET用于信息获取,而且应该是安全的和幂等的

python类中super()和__init__()的区别

本文和大家分享的主要是python开发中super()和__init__()的区别,希望通过本文的分享,对初学者学习这部分内容有所帮助. 1.单继承时super()和__init__()实现的功能是类似的 class Base(object): def __init__(self): print 'Base create' class childA(Base): def __init__(self): print 'creat A ', Base.__init__(self) class chi