User`s guide
B Error and Warning Messages
Warning: The fil e filename was repeat ed on MATLA B Compiler
command line. (repeated_file) This warning occurs w hen the same filename
appears more than once on the compile r command line. For exam ple:
mcc -m sample.m sample.m % Will generate the warning
Warning: The name of a shared library should b egin with the letters
"lib". " libraryname" doesn’t. (missing_lib_sentinel) This warning is
generated if the name of the s pecified library does not begin with the letters
“lib”. This warning is specific to UNIX and does not occur on Windows. For
example:
mcc -t -W lib:liba -T link:lib a0 a1 % No warning
mcc -t -W lib:a -T lin k:lib a0 a1 % Will generate a warning
Warning: All warnings are disabled. (all_warnings) This warning
displays all warnings generated by MATLAB Compiler. This warning is
disabled.
Warning: A line has num1 characters, violati ng the maximum page
width (num2). (max_page_width_violation) This warning is generated if
there are lines that exceed the maximum page width,
num2. This warning
is disabled.
Warning: The option - option nam e is ignored in modenam e mode
(specify -? for h elp). (switch_ignored) This warning is generated if an
option is specified on the
mcc command line that is not meaningful in the
specified mod e. This warning is enabled .
Warning: Unrecognized Compiler pragma "pragmaname".
(unrecognized_pragma) This warning is generated if you use an unrecognized
pragma. This warning is enabled.
Warning: "fu n cti onna me1" is a M EX- or P-file being referenc ed
from "functionname2". (mex_or_p_file) This warning i s generated if
functionname2 calls functionname1, wh ich is a ME X- or P-file. T his warning
is enabled.
B-8