[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: intel compiler not finding (system) header files



> yes I did all this! it's the C++ that seems to be causing problems when
> looking for header files (eg I compiled up all of mpich without problem)


Ok. How about -cxxlib-icc option then?

$cat sizes.cpp
#include <iostream>

using namespace std;

int main() {
  cout << sizeof(char) << "\n";
  cout << sizeof(int) << "\n";
  cout << sizeof(float) << "\n";
  cout << sizeof(double) << "\n";
}

$icc -I /opt/intel_cc_80/include/c++/ -cxxlib-icc sizes.cpp

$./a.out
1
4
4
8

Dont know if it works for you. But worth giving a try.

raju


-- 
Kamaraju S Kusumanchi
Cornell University
http://people.cornell.edu/pages/kk288/
http://groups-beta.google.com/group/flumech



Reply to: