Skip to content

Commit d0b56a7

Browse files
committed
Fix make check-c-globals
1 parent db05a2a commit d0b56a7

File tree

1 file changed

+9
-0
lines changed
  • Tools/c-analyzer/c_parser/preprocessor

1 file changed

+9
-0
lines changed

Tools/c-analyzer/c_parser/preprocessor/gcc.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,18 @@
77
# macro. Usually it's defined by the C file which includes it.
88
# Other header files have a similar issue.
99
NEED_BUILD_CORE = {
10+
# Header ".h" files
1011
'cjkcodecs.h',
1112
'multibytecodec.h',
1213
'socketmodule.h',
14+
15+
# Argument Clinic ".c.h" files
16+
'_testclinic.c.h',
17+
'_testclinic_depr.c.h',
18+
'overlapped.c.h',
19+
'posixmodule.c.h',
20+
'selectmodule.c.h',
21+
'sha3module.c.h',
1322
}
1423

1524
TOOL = 'gcc'

0 commit comments

Comments
 (0)