linux – GCC编译失败,使用pthread和选项std = c99

前端之家收集整理的这篇文章主要介绍了linux – GCC编译失败,使用pthread和选项std = c99前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个示例程序无法使用-std = c99进行编译

任何帮助赞赏

#include <pthread.h>
int main(void) {
    pthread_rwlock_t    myLock;
    return 0;
}

output of the two compiles:
gcc pthread_test.c
[brad@fedora17onbradsmacpro src]$gcc  pthread_test.c
[brad@fedora17onbradsmacpro src]$

gcc -std=c99 pthread_test.c[brad@fedora17onbradsmacpro src]$gcc -std=c99 pthread_test.c
pthread_test.c: In function ‘main’:
pthread_test.c:5:2: error: unknown type name ‘pthread_rwlock_t’
[brad@fedora17onbradsmacpro src]$

解决方法

读写锁是非标准的,并且在< pthread.h>中有条件地定义.

-std = c99请求严格遵守标准(尽可能多),并禁用语言扩展和额外库.

如果您改为传递std = gnu99,您将获得C99编译器版本以及默认情况下gcc提供的所有扩展和附加功能.

原文链接:https://www.f2er.com/linux/394806.html

猜你在找的Linux相关文章