zoukankan      html  css  js  c++  java
  • ld returned 1 exit status"的解决办法

    Linux下创建线程时,编译时会出现下面的错误,
    [root@linuxserver 807]# gcc -o 22 22.c
    /tmp/cc21HcoW.o(.text+0x4c): In function `main':
    : undefined reference to `pthread_create'
    collect2: ld returned 1 exit status
    程序为:

    #include <unistd.h>
    #include <pthread.h>
    #include <stdio.h>
    #include <stdlib.h>
    void testthread(void)
    {
            printf("I am working. ");
            printf("I am stopping. ");
            pthread_exit(0);
    }

    int main(int argc,char *argv[])
    {
            int i=0;
            pthread_t pid;
            char *szP=NULL;
            while(1)
            {
                    i++;
                    pthread_create(&pid,NULL,(void *)testthread,(void *)&i);
                    printf("ok%d,pid=%d ",i,pid);
                    sleep(5);
            }
    }
    此时,只需改变编译方式
    将gcc -o 22 22.c 改变为 gcc -O2 -Wall -o 22 22.c -lpthread

    最关键的是-lpthread

    根据错误
    /tmp/cc21HcoW.o(.text+0x4c): In function `main':
    : undefined reference to `pthread_create'
    collect2: ld returned 1 exit status
    可以看出是在ld的时候系统无法找到pthread_create函数。也就是说编译器在link得时候找不到其中的一个使用库的函数。
    如果差pthread_create的话可以发现其在pthread.so中,所以需要增加 -lpthread编译参数,告诉linker在link的时候使用pthread模块

  • 相关阅读:
    「BZOJ1935」[SHOI2007]园丁的烦恼
    【BZOJ3262】陌上花开
    CDQ分治入门
    「luogu2664」树上游戏
    zoj3995 fail树
    zoj3997网络流+数学
    树状数组区间更新区间查询以及gcd的logn性质
    可修改的区间第K大 BZOJ1901 ZOJ2112
    数论容斥比较快速的做法和二分图判定1
    浙工大新生赛莫队处理+区间DP+KMP+分析题
  • 原文地址:https://www.cnblogs.com/aspirant/p/3840101.html
Copyright © 2011-2022 走看看