Backend-agnostic view of the compiler invocation for one board.
| 109 | @typechecked |
| 110 | @dataclass(frozen=True) |
| 111 | class NormalizedFlags: |
| 112 | """Backend-agnostic view of the compiler invocation for one board.""" |
| 113 | |
| 114 | cc_flags: frozenset[str] |
| 115 | cxx_flags: frozenset[str] |
| 116 | defines: frozenset[str] |
| 117 | includes: frozenset[str] |
| 118 | |
| 119 | |
| 120 | @typechecked |
no outgoing calls
no test coverage detected