Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussions

Support for array in icpc 12.1.5

drMikeT
New Contributor I
456 Views
Hello,

I am trying to compile a simple C++ 0x program using the icpc 12.1.5 Intel compiler as:

icpc -std=c++0x tt.cc

where, tt.cc :

[cpp]// array::at #include #include int main () { unsigned int i; std::array myarray; // assign some values: for (i=0; i<10; i++) myarray.at(i) = i+1; // print content std::cout << "myarray contains:"; for (i=0; i<10; i++) std::cout << " " << myarray.at(i); std::cout << std::endl; return 0; } [/cpp] but Iam getting:

tt.cc(3): catastrophic error: cannot open source file "array"
#include
^
Is array NOT supported by icpc 12.1 ?

thanks
michael

0 Kudos
1 Reply
Barry_T_Intel
Employee
456 Views

This forum is for the discussions about the Intel Cilk Plus extension to C and C++. This is a base compiler question. You're more likely to get an answer to your question in the Intel C Compiler forum.

- Barry

0 Kudos
Reply