
U1077 MSVC 4.0 Release Build with NT 4.0 Check Build 1381
My "hello world" program works fine with MSVC 4.0 Debug build with
NT 4.0 Check Build 1381.
It fails with MSVC 4.0 Release build with NT 4.0 Check Build 1381.
The error message is U1077.
Is it ok to do release MSVC 4.0 builds with the Checked Build of NT
4.0?
The hello.obj is built but the linker complains about a pass 1 error.
#include <iostream.h>
void main (){
cout << "Hello World";
return;
Quote:
}