Return True if the GCC version is greater than or equal to the specified version.
(self, major, minor=0, patchlevel=0)
| 433 | return check_gcc_variable_attribute(self, attribute) |
| 434 | |
| 435 | def check_gcc_version_at_least(self, major, minor=0, patchlevel=0): |
| 436 | """Return True if the GCC version is greater than or equal to the |
| 437 | specified version.""" |
| 438 | return check_gcc_version_at_least(self, major, minor, patchlevel) |
| 439 | |
| 440 | def get_output(self, body, headers=None, include_dirs=None, |
| 441 | libraries=None, library_dirs=None, |
nothing calls this directly
no test coverage detected