class config(old_config):
Undocumented
Method | _check_compiler |
Undocumented |
Method | _compile |
Undocumented |
Method | _link |
Undocumented |
Method | _wrap_method |
Undocumented |
Method | check_compiler_gcc |
Return True if the C compiler is gcc |
Method | check_decl |
Undocumented |
Method | check_func |
Undocumented |
Method | check_funcs_once |
Check a list of functions at once. |
Method | check_gcc_function_attribute |
Undocumented |
Method | check_gcc_function_attribute_with_intrinsics |
Undocumented |
Method | check_gcc_variable_attribute |
Undocumented |
Method | check_gcc_version_at_least |
Return True if the GCC version is greater than or equal to the specified version. |
Method | check_header |
Undocumented |
Method | check_inline |
Return the inline keyword recognized by the compiler, empty string otherwise. |
Method | check_macro_true |
Undocumented |
Method | check_restrict |
Return the restrict keyword recognized by the compiler, empty string otherwise. |
Method | check_type |
Check type availability. Return True if the type can be compiled, False otherwise |
Method | check_type_size |
Check size of a given type. |
Method | get_output |
Try to compile, link to an executable, and run a program built from 'body' and 'headers'. Returns the exit status code of the program and its output. |
Method | initialize_options |
Undocumented |
Instance Variable | compiler |
Undocumented |
Instance Variable | fcompiler |
Undocumented |
Undocumented
Check a list of functions at once.
This is useful to speed up things, since all the functions in the funcs list will be put in one compilation unit.
Undocumented