नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
source file '<filename>' ignored
Remarks
CL.exe ignored the input source file.
This warning can be caused by a space between the /Fo option and an output filename on a command line with the /c option.
Example
For example:
cl /c /Fo output.obj input.c
Because there is a space between /Fo and output.obj, CL.exe takes output.obj as the name of the input file. To fix the problem, remove the space:
cl /c /Fooutput.obj input.c