PRB: STARTUP.BAT Gives U1073: Don't Know How to Make STDIO.HLast reviewed: July 17, 1997Article ID: Q67161 |
6.00 6.00a 6.00ax 7.00 | 6.00 6.00a | 1.00 1.50 1.51
MS-DOS | OS/2 | WINDOWSkbtool kberrmsg The information in this article applies to:
SYMPTOMSWhen running the batch file STARTUP.BAT that comes with C versions 6.0, 6.0a, and 6.0ax or the CSTARTUP.BAT that comes with C/C++ version 7.0 and Visual C++ for Windows, you may receive the following error:
U1073: don't know how to make 'stdio.h'. CAUSEThis is actually an NMAKE error and may be the result of having more than one search path for the INCLUDE environment variable, as shown in the following example:
include=c:\c600\include;c:\masm\includeBecause batch files cannot parse out separate paths for environment variables, it is necessary to have only one INCLUDE path specified. This allows the filename to be included to be appended to the end of that path.
RESOLUTIONTo correct the problem, only one search path should be used, as in the following example:
include=c:\c600\include |
Additional reference words: 6.00 6.00a 6.00ax 7.00 8.00 9.00 1.00 1.50
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |