BUG: C1083, "Compiler Cannot Open Intermediate File" ErrorLast reviewed: July 17, 1997Article ID: Q102159 |
1.00 1.50
WINDOWS
kbtool kbbuglist
The information in this article applies to:
SYMPTOMSWhen the compiler command line includes the /Fp<file>.pch option switch to specify the name of a pre-compiled header file and the command line does not include the /Yc or /Yu option, the compiler generates the following message:
fatal error C1083: Cannot open compiler intermediate file: <tmpfile> RESOLUTIONTo work around this error, specify the /Yc compiler option switch to create a pre-compiled header file.
STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed above. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available. This problem does not occur in Microsoft C/C++ 32-bit compiler version 8.0, included with Visual C++ 32-bit Edition version 1.0.
MORE INFORMATIONThe following code example demonstrates this problem.
Sample Code - TEST.C
/* * Compiler options needed: /Fptest.pch to demonstrate error */ #include <stdio.h> void main(){ printf("Hello, world\n");}
|
Additional reference words: 1.00 1.50 8.00 8.00c
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |