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

时间:2013-03-28 02:59:59

标签: linux gcc pthreads fedora

我有一个示例程序无法使用-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]$

1 个答案:

答案 0 :(得分:22)

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

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

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