Skip to content

Commit 3097adc

Browse files
committed
More debugging info
1 parent 4334644 commit 3097adc

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/actions/deps/ports/zephyr-cp/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,8 @@ runs:
1919
run: west zephyr-export
2020
shell: bash
2121
working-directory: ports/zephyr-cp
22+
- name: Dump windows info
23+
if: runner.os == 'Windows'
24+
run: |
25+
D:/a/circuitpython/circuitpython/ports/zephyr-cp/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe --version
26+
working-directory: ports/zephyr-cp

ports/zephyr-cp/cptools/cpbuild.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,13 +348,15 @@ async def preprocess(
348348
depfile = output_file.parent / (output_file.name + ".d")
349349
if depfile.exists():
350350
pass
351+
print("Preprocessing:", source_file.relative_to(self.srcdir))
351352
await run_command(
352353
[
353354
self.c_compiler,
354355
"-E",
355356
"-MMD",
356357
"-MF",
357358
depfile,
359+
"-v",
358360
"-c",
359361
source_file,
360362
self.cflags_file,

0 commit comments

Comments
 (0)