User`s manual

Dynamic C Users Manual digi.com 315
-lf LibrariesFilePathname
-ne maxNumberOfErrors
-nw maxNumberOfWarnings
Description: Compile using a file found in LibrariesFilePathname which lists all libraries
to be made available to your programs.
Factory Default: Lib.dir.
GUI Equivalent: This is an advanced setting, viewable by clicking on the “Advanced” radio
button at the bottom of the Project Options | Compiler dialog box. Check
the box under “User Defined Lib Directory File” and then fill in the path-
name for the new Lib.dir.
Example
dccl_cmp myProgram.c -lf MyPath\MyLibs.txt
Description: Change the maximum number of errors reported.
Factory Default: A maximum of 10 errors are reported.
GUI Equivalent: Enter the maximum number of errors to report under “Max Shown” in the
Project Options | Compiler dialog box.
Example: Allows up to 25 errors to be reported:
dccl_cmp myProgram.c -ne 25
Description: Change the maximum number of warnings reported.
Factory Default: A maximum of 10 warnings are reported.
GUI Equivalent: Enter the maximum number of warnings to report under “Max Shown” in
the Project Options | Compiler dialog box.
Example: Allows up to 50 warnings to be reported:
dccl_cmp myProgram.c -nw 50