Linux
廖李昂
这个作者很懒,什么都没留下…
展开
-
Linux编程时使用gcc编译.c出现以下问题,pthread.c:(.text+0x29): undefined reference to `pthread_create'collect2: err
Linux编程时使用gcc编译.c出现以下问题 client.c:(.text+0x13e): undefined reference to `pthread_create' collect2: ld 返回 1 解决方法如下: 只需在用gcc编译时加上-pthread选项即可。 原因:没有链接上pthread库 ...原创 2018-12-14 17:50:51 · 5508 阅读 · 0 评论 -
Linux编程时使用gcc编译.c出现以下问题warning: the `gets' function is dangerous and should not be used.
Linux编程时使用gcc编译.c出现以下问题 [root@localhost final1]# gcc -pthread client.c /tmp/ccSuK4v5.o: In function `writedata': client.c:(.text+0xb2a): warning: the `gets' function is dangerous and should not be us...原创 2018-12-14 17:56:16 · 1634 阅读 · 1 评论