当前位置:  技术问答>linux和unix

(.text+0x57): undefined reference to `pthread_create'求解

    来源: 互联网  发布时间:2017-02-16

    本文导语:  废话不多说,程序如下: #include  #include  #include  #include  #include  void *myThread( void *arg ) {   pthread_t pt;   pt = pthread_self();   printf("Thread %x ran!n", (int)pt );   pthread_exit( NULL ); } int main() {   int ret;   pthre...

废话不多说,程序如下:
#include 
#include 
#include 
#include 
#include 

void *myThread( void *arg )
{
  pthread_t pt;

  pt = pthread_self();

  printf("Thread %x ran!n", (int)pt );

  pthread_exit( NULL );
}
int main()
{
  int ret;
  pthread_t mythread;

  ret = pthread_create( &mythread, NULL, myThread, NULL );

  if (ret != 0) {
    printf( "Can't create pthread (%s)n", strerror( errno ) );
    exit(-1);
  }

  return 0;
}
编译:
gcc ptcreate.c -o create
/tmp/cc1UwArn.o: In function `main':
ptcreate.c:(.text+0x57): undefined reference to `pthread_create'
collect2: ld returned 1 exit status
请问各问问题出在哪里,该如何解决,谢谢~~~

|
gcc ptcreate.c -o create -lpthread


    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Kdevelop4错误 main.cpp(text+0x13):undefined reference to .....
  • java命名空间java.awt类systemcolor的类成员方法: text_text定义及介绍
  • 高分求助gtk_text_buffer_set_text参数中字符编码问题 iis7站长之家
  • java命名空间java.awt类systemcolor的类成员方法: text_inactive_text定义及介绍
  • 在一个JSP页中,有一个FORM 的TEXT ,和一个SUBMIT ,我怎样知道提交后的TEXT的值呢?(最好有代码?)
  • java命名空间java.awt类systemcolor的类成员方法: text_highlight_text定义及介绍
  • 高分求助gtk_text_buffer_set_text参数中字符编码问题
  • java命名空间javax.swing.text.html类html.attribute的类成员方法: text定义及介绍
  • how can i append a text into text file(i am in linux,can't write chinese,sorry)
  • java命名空间javax.swing.text.html类css.attribute的类成员方法: text_align定义及介绍
  • 有关GTK_TEXT(text)->vadj的问题
  • java命名空间javax.swing.text.html类css.attribute的类成员方法: text_decoration定义及介绍
  • solaris 下把 sh -x ./script.sh > text.txt 输出重定向问题
  • java命名空间javax.swing.text.html类css.attribute的类成员方法: text_indent定义及介绍
  • Damn Small Rich Text Editor
  • java命名空间javax.swing.text.html类css.attribute的类成员方法: text_transform定义及介绍
  • jsp中怎样插入TEXT类型的值!!比较奇怪!!!!
  • java命名空间javax.swing.text类abstractwriter的类成员方法: text定义及介绍
  • Cainteoir Text-to-Speech
  • java命名空间javax.swing.text.html类minimalhtmlwriter的类成员方法: text定义及介绍
  • 文本编辑器 Texts
  • java命名空间javax.swing.text.html类htmlwriter的类成员方法: text定义及介绍
  • 怎样获得<input type=text name=textfield>的返回值?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3