Use Debug DCUs Allows you to link in debug versions of CLX. The Debug DCUs contain debug information and are built with stack frames. When this option is checked, the compliler prepends the Debug DCU path (specified in Tools|Debugger Options on the General page) to the unit Search path specified in Project|Options on the Directories/Conditionals page.
?
Default check box
Default check box saves the current settings as the default for each new project.
?
?
Compiler mode options
A few options affect how the compiler itself functions. As with the other options, you can use these with either the hyphen or the slash format. Remember to separate the options with at least one blank.
?
Note:?????? Command line compiling without an explicit make (-M) or build (-B) switch performs an in-memory compile (make) and link, without flushing anything to disk except the specified compilation unit (unit, program, library, or package).
?
For example:
?
dcc
?
will create a binary represenatation only for the specified file; any used units will not get their dcu or dpu files written to disk.
?
Make (-M) option
?
The command-line compiler has built-in MAKE logic to aid in project maintenance. The -M option instructs command-line compiler to check all units upon which the file being compiled depends. Using this option results in a much quicker compile time.
?
A unit is recompiled under the following conditions:
?
The source file for that unit has been modified since the unit file was created.
?????? Any file included with the $I directive, any .OBJ file linked in by the $L directive, or any .res file referenced by the $R directive, is newer than the unit file.
?????? The interface section of a unit referenced in a uses statement has changed.
?
Units compiled with the -Z option are excluded from the make logic.
?
If you were applying this option to the previous example, the command would be:
?
dcc32 MYSTUFF -M
?
文章整理:西部数码--专业提供域名注册、虚拟主机服务
http://www.west263.com
以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!




