A few weeks back I was using std::ifstream to read in some files and it was failing immediately on open because the file was larger than 4GB. At the time I couldnt find a de
Apparently it depends on how off_t is implemented by the library.
off_t
#include __int64_t temp=std::numeric_limits::max();
gives you what the current max is.
STLport supports larger files.