PRB: /Tp and /Tc Show Unexpected Behavior with Wildcards

Last reviewed: August 12, 1997
Article ID: Q85498
The information in this article applies to:
  • The Microsoft C/C++ Compiler (CL.EXE), included with: - Microsoft C/C++ for MS-DOS, version 7.0 - Microsoft Visual C++ for Windows, versions 1.0, 1.5 - Microsoft Visual C++ 32-bit Edition, versions 1.0, 2.0, 2.1, 4.0, 4.1,

         4.2, 5.0
    

SUMMARY

When compiling multiple .CPP or .CXX files using a wildcard syntax and the /Tc command line option, for example

   cl /Tc *.cpp

the C compiler is invoked only for the first source file matching the wildcard specification. For all subsequent files, the C++ compiler is invoked. The inverse is also true. That is, when compiling multiple .C files using a wildcard syntax and the /Tp command line option, the C++ compiler is invoked only for the first file; for all subsequent files, the C compiler is invoked.

CAUSE

This behavior is by design. As stated in the online and hard copy documentation for Microsoft C/C++ version 7.0 and all versions of Microsoft Visual C++ 16- and 32-bit Editions, the following is the correct syntax for the /Tc and /Tp command line options:

   /Tc<filename>   -or-   /Tc <filename>
   /Tp<filename>   -or-   /Tp <filename>

Each option refers to only one source file. Therefore, the first file matching the wildcard specification will be compiled as directed by the corresponding /T? option. All other files matching the wildcard will be compiled in accordance with their extension. (The C compiler is invoked for .C files, the C++ compiler for .CPP or .CXX files.)

MORE INFORMATION

The following are two possible workarounds for the potential inconvenience presented by this behavior:

  • Use a makefile to control compilations involving the /Tc or /Tp switch. Instead of using wildcards, list the files as dependents of the respective .OBJ files. This offers two advantages over using wildcards:

        - Only the files that have changed with respect to their .OBJ
          are recompiled.
    

        - The proper compiler is invoked for the file to be compiled.
    

    -or-

  • Rename all files in question such that they have the expected extensions. For example, rename SRC.CPP to SRC.C if you want the C compiler to be invoked on the source.

The sample code below is a makefile that could be used to replace the wildcard command-line compilation:

Sample Code

If you wish to compile file1.c, file2.c and file3.c with the C++ compiler and link them to create exefile.exe, use the following makefile:

   .c.obj:
      cl /c /Tp $<

   exefile.exe : file1.obj file2.obj file3.obj
      link $**, exefile.exe;


Additional query words: 8.00 8.00c 9.00
Keywords : CLIss kbfasttip
Version : MS-DOS:7.0;WINDOWS:1.0,1.5;WINDOWS NT:1.0,2.0,2.1,4.0,4.1,4.2,5.0
Platform : MS-DOS NT WINDOWS
Issue type : kbprb


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: August 12, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.