MCPcopy Create free account
hub / github.com/SolaWing/xcode-build-server / parse_pch

Method parse_pch

xclog_parser.py:225–234  ·  view source on GitHub ↗

when GCC_PRECOMPILE_PREFIX_HEADER=YES, will has a ProcessPCH or ProcessPCH++ Section, which format is: ProcessPCH[++] ..

(self, line)

Source from the content-addressed store, hash-verified

223 return module
224
225 def parse_pch(self, line):
226 """
227 when GCC_PRECOMPILE_PREFIX_HEADER=YES, will has a ProcessPCH or ProcessPCH++ Section, which format is:
228 ProcessPCH[++] <output> <input> <condition>..
229 """
230 if not line.startswith("ProcessPCH"):
231 return
232 info = cmd_split(line)
233 self._pch_info[" ".join(info[3:])] = info[2]
234 echo(f"ProcessPCH {info[2]}")
235
236 def parse(self):
237 from inspect import iscoroutine

Callers

nothing calls this directly

Calls 2

echoFunction · 0.85
cmd_splitFunction · 0.70

Tested by

no test coverage detected