错误:"int"之前应为主表达式



我正在使用:gcc—版本gcc(Ubuntu 4.9.2-0ubuntu114.04(4.9.2

我正在尝试编译以下程序:

#include <iostream>
#include <cilk/cilk.h>
using namespace std;
int main(){
    cout << "nStartn";
    cilk_for (int i = 0; i < 10; i++) {
        cout << "I = " << i;
    }
}

但是得到以下错误:

g++ -fcilkplus Cilk_1.cpp 
Cilk_1.cpp: In function ‘int main()’:
Cilk_1.cpp:9:12: error: expected primary-expression before ‘int’
  cilk_for (int i = 0; i < 10; i++) {
            ^
Cilk_1.cpp:9:23: error: ‘i’ was not declared in this scope
  cilk_for (int i = 0; i < 10; i++) {
                       ^

怎么了?

感谢

从Chris在评论中给出的链接来看,GCC 4.9似乎支持cilk扩展的所有功能,除了开箱即用的_cilk_for。因此,您的编译器(GCC 4.9(不支持cilk_for

如上所述,gcc 5.0中添加了对cilk_for的支持。

相关内容

  • 没有找到相关文章

最新更新