Home
last modified time | relevance | path

Searched full:makeflags (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/scripts/tests/twister/
Dtest_jobserver.py122 makeflags = mock.Mock()
128 makeflags=makeflags
162 {'MAKEFLAGS': '-j1'},
168 {'internal_jobs': 1, 'makeflags': '-j1'}
171 {'MAKEFLAGS': 'n--jobserver-auth=0,1'},
176 'MAKEFLAGS contained dry-run flag'
183 {'MAKEFLAGS': '--jobserver-auth=0,1'},
189 {'internal_jobs': 1, 'makeflags': '--jobserver-auth=0,1'}
192 {'MAKEFLAGS': '--jobserver-auth=123,321'},
198 {'internal_jobs': 1, 'makeflags': '--jobserver-auth=123,321'}
[all …]
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Djobserver.py76 def __init__(self, inheritable_pipe, jobs, internal_jobs=0, makeflags=None): argument
77 self._makeflags = makeflags
110 """Create a job client from an environment with the MAKEFLAGS variable.
118 The specification for MAKEFLAGS is:
131 no MAKEFLAGS environment variable.
135 makeflags = env.get("MAKEFLAGS")
136 if not makeflags:
138 match = re.search(r"--jobserver-auth=(\d+),(\d+)", makeflags)
175 match = re.search(r"-j(\d+)", makeflags)
180 if makeflags[0] == "n":
[all …]
/Zephyr-latest/samples/application_development/external_lib/
DCMakeLists.txt44 else() # Obviously no MAKEFLAGS. Let's hope a "make" can be found somewhere.
/Zephyr-latest/modules/trusted-firmware-m/
DCMakeLists.txt296 # threads. Which is num_cores+2 on Ninja and MAKEFLAGS with Make.