You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Validate options passed to SCons on the command line.
498
+
499
+
If you call this after you set all your command line options with AddOption(),
500
+
it will verify that all command line options are valid.
501
+
So if you added an option --xyz and you call SCons with --xyy you can cause
502
+
SCons to issue an error message and exit by calling this function.
503
+
504
+
:param bool throw_exception: (Optional) Should this function raise an error if there's an invalid option on the command line, or issue a message and exit with error status.
505
+
506
+
:raises SConsBadOptionError: If throw_exception is True and there are invalid options on command line.
0 commit comments