/INCREMENTAL

Syntax:

/INCREMENTAL:{YES|NO}

Controls how the linker handles incremental linking. By default, the linker runs in incremental mode (for exceptions, see the /[no]traceback compiler option).

To prevent incremental linking, clear the Link Incrementally check box in the Customize category (or specify /INCREMENTAL:NO on the command line).

To link incrementally, set the Link Incrementally check box (or specify /INCREMENTAL:YES on the command line). When you specify this option, the linker issues a warning if it cannot link incrementally and then links the program nonincrementally. Certain options and situations override /INCREMENTAL:YES.

Most programs can be linked incrementally. However, some changes are too great, and some options are incompatible with incremental linking. LINK performs a full link if any of the following options are specified:

Additionally, LINK performs a full link if any of the following occur:

To select this option in the visual development environment, select the Link Incrementally check box in the Customize category of the Link tab in the Project Settings dialog box.