Lines Matching +full:- +full:- +full:files

5 ``modularize [<modularize-options>] [<module-map>|<include-files-list>]*
6 [<front-end-options>...]``
8 ``<modularize-options>`` is a place-holder for options
12 ``<module-map>`` specifies the path of a file name for an
13 existing module map. The module map must be well-formed in
17 as a top-level include, assuming they either are included by
21 ``<include-files-list>`` specifies the path of a file name for a
22 file containing the newline-separated list of headers to check
25 other space-separated file names will include those extra files
33 Note that unless a ``-prefix (header path)`` option is specified,
34 non-absolute file paths in the header list file will be relative
35 to the header list file directory. Use -prefix to specify a different
38 ``<front-end-options>`` is a place-holder for regular Clang
39 front-end arguments, which must follow the <include-files-list>.
40 Note that by default, modularize assumes .h files
42 you might need to use a ``-x`` option to tell Clang that the
43 header contains another language, i.e.: ``-x c``
46 you will likely need to pass in additional compiler front-end
52 .. option:: -prefix=<header-path>
54 Prepend the given path to non-absolute file paths in the header list file.
56 directory. Use ``-prefix`` to specify a different directory.
58 .. option:: -module-map-path=<module-map-path>
61 in :ref:`module-map-generation`.
63 .. option:: -problem-files-list=<problem-files-list-file-name>
65 For use only with module map assistant. Input list of files that
70 .. option:: -root-module=<root-name>
72 Put modules generated by the -module-map-path option in an enclosing
73 module with the given name. See the description in :ref:`module-map-generation`.
75 .. option:: -block-check-header-list-only
77 Limit the #include-inside-extern-or-namespace-block
79 This is a work-around for avoiding error messages for private includes that
82 .. option:: -no-coverage-check
86 .. option:: -coverage-check-only
90 .. option:: -display-file-lists
92 Display lists of good files (no compile errors), problem files,
93 and a combined list with problem files preceded by a '#'.
94 This can be used to quickly determine which files have problems.
97 use -display-file-lists option, and then use the combined list as
98 your intermediate list, uncommenting-out headers as you fix them.