()
| 328 | return path |
| 329 | |
| 330 | def _include_header(): |
| 331 | os = context.os |
| 332 | arch = context.arch |
| 333 | include = '%s/%s.h' % (os, arch) |
| 334 | |
| 335 | if not include or not path.exists(path.join(_incdir, include)): |
| 336 | log.warn_once("Could not find system include headers for %s-%s" % (arch,os)) |
| 337 | return '\n' |
| 338 | |
| 339 | return '#include <%s>\n' % include |
| 340 | |
| 341 | |
| 342 | def _arch_header(): |