User`s guide
Warning Messages
B-11
Warning Messages
This section lists the warning messages that the MATLAB Compiler can
generate. Using the
-w option for mcc, you can control which messages are
displayed. Each warning message contains a description and the warning
message identifier string (in parentheses) that you can enable or disable with
the
-w option. For example, to enable the display of warnings related to
undefined variables, you can use
mcc -w enable:undefined_variable
To enable all warnings except those generated by the save command, use
mcc -w enable -w disable:save_options
To display a list of all the warning message identifier strings, use
mcc -w list
For additional information about the -w option, see “MATLAB Compiler Option
Flags” on page 7-31.
Warning: (PM) Warning: message. (path_manager_warning) The path manager
can experience file I/O problems when reading the directory structure
(permissions).
Warning: (PMI): message. (path_manager_inform) This is an informational path
manager message.
Warning: A line has number characters, violating the maximum page width width.
(max_page_width_violation) To increase the maximum page width, use the
-F page-width:n option and set n to a larger value.
Warning: File: filename Line: # Column: # A BREAK statement appeared outside of a loop. This
BREAK is interpreted as a RETURN.
(break_without_loop) The break statement
should be used in conjunction with the
for or while statements. When not used
in conjunction with these statements, the
break statement acts as a return
from a function.