Lines Matching full:py
10 - `ldgen.py` - Python executable that gets called during build.
11 - `entity.py` - contains classes related to entities (library, object, symbol or combination of the…
12 - `fragments.py` - contains classes for parsing the different types of fragments in linker fragment…
13 - `generation.py` - contains bulk of the logic used to process fragments into output commands.
14 - `sdkconfig.py` - used for evaluating conditionals in fragment files.
15 - `linker_script.py` - augments the input linker script template with output commands from generati…
16 - `output_commands.py` - contains classes that represent the output commands in the output linker s…
17 - `ldgen_common.py` - contains miscellaneous utilities/definitions that can be used in the files me…
32 The build system invokes `ldgen.py`, passing some information from the build.
34 The linker fragment files are parsed by `fragments.py`, evaluating conditional expressions
35 with `sdkconfig.py`.
37 From the parsed fragments, `generation.py` generates output commands defined in `output_commands.py…
38 with some help from `entity.py`.
40 `linker_script.py` writes the output linker script, replacing markers with output commands generate…