N
nils
Hi all,
Recently I started migrating a gcc project to Visual Studio C++ (dotnet).
The problem is that I cannot include any iostream header-file:
#include <fstream>
int main (int argc, char * argv)
{
printf("hello world");
return 0;
}
This will result in the following compilation error:
D:\TEMP\dotnettest>cl test.C
Microsoft (R) 32-bit C/C++ Standard Compiler Version 13.10.3077 for 80x86
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
test.C
test.C(1) : fatal error C1083: Cannot open include file: 'fstream': No such
file or directory
After investigation, it seems that on my whole system, none of the following
files is available: iostream, fstream, ios. I have installed the .net
framework 1.1, and the CORE-Platform-SDK. The latter should contain the
headerfiles, doesn't it?
==> Do I have a corrupt installation, or is there another problem?
I'd appreciate it, if someone could point me in the right direction,
Thanks,
Nils
Recently I started migrating a gcc project to Visual Studio C++ (dotnet).
The problem is that I cannot include any iostream header-file:
#include <fstream>
int main (int argc, char * argv)
{
printf("hello world");
return 0;
}
This will result in the following compilation error:
D:\TEMP\dotnettest>cl test.C
Microsoft (R) 32-bit C/C++ Standard Compiler Version 13.10.3077 for 80x86
Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
test.C
test.C(1) : fatal error C1083: Cannot open include file: 'fstream': No such
file or directory
After investigation, it seems that on my whole system, none of the following
files is available: iostream, fstream, ios. I have installed the .net
framework 1.1, and the CORE-Platform-SDK. The latter should contain the
headerfiles, doesn't it?
==> Do I have a corrupt installation, or is there another problem?
I'd appreciate it, if someone could point me in the right direction,
Thanks,
Nils