BUG: Exported Make Files with Browse Info Are Rebuilt Twice

Last reviewed: January 14, 1998
Article ID: Q168381
The information in this article applies to:
  • The Program Maintenance Utility (NMAKE.EXE) included with: - Microsoft Visual C++, 32-bit Editions, version 5.0

SYMPTOMS

Visual C++ 5.0 can create .mak files for a project through the Export Makefile command from the Project menu. When you use the rebuild option (/A) in Nmake.exe version 1.62, projects exported from Visual C++ 5.0 that contain source browser information will attempt to rebuild the project twice.

RESOLUTION

The main side effect of this problem is that it takes longer to build an application using NMAKE. The following are three suggested workarounds:

  • Build the project from Developer Studio. -or-
  • Turn off browser information, export the .mak file, and rebuild from the command line using NMAKE. A .bsc file containing browser information is not created.

    -or-

  • Build using NMAKE /f project.mak CLEAN=1. The effect of the CLEAN=1 parameter is the same as using the /a switch, but this method works around the bug and causes the targets to be built only once.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Behavior

  1. From the File menu in Developer Studio, click New and create an Appwizard.exe.

  2. From the Project menu, click Settings and click the C/C++ tab. From the General category, select the check box "Generate Browse Info". Click OK to clear the dialog box.

  3. From the Project menu, click "Export Makefile".

  4. Bring up an MS-DOS prompt. If you are not already set up to run Visual C++ tools from the command line, run Vcvars32.bat from the Devstudio\Vc\Bin directory.

  5. Execute the following command line:

          nmake /f"project.mak" /a
    

    where "project.mak" is the name of the project you created.

Keywords          : NmakeIss vcbuglist500 VWBIss kbtool kbbuglist
Version           : 5.0
Platform          : NT WINDOWS
Issue type        : kbbug


================================================================================


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: January 14, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.