Home | History | Annotate | Download | only in distutils

Lines Matching full:none

45     compiler_type = None
71 src_extensions = None # list of strings
72 obj_extension = None # string
73 static_lib_extension = None
74 shared_lib_extension = None # string
75 static_lib_format = None # format string
76 shared_lib_format = None # prob. same as static_lib_format
77 exe_extension = None # string
100 self.output_dir = None
104 # either a string or None (no explicit value). A macro
174 return None
185 (isinstance(defn[1], str) or defn[1] is None))) and
190 "(string, None)"
195 def define_macro(self, name, value=None):
205 if i is not None:
223 if i is not None:
326 if outdir is None:
329 raise TypeError, "'output_dir' must be a string or None"
331 if macros is None:
338 if incdirs is None:
346 if extra is None:
379 is None, replaces it with 'self.output_dir'; ensures that 'macros'
383 i.e. for 'output_dir' either string or None, and for 'macros' and
384 'include_dirs' either list or None.
386 if output_dir is None:
389 raise TypeError, "'output_dir' must be a string or None"
391 if macros is None:
398 if include_dirs is None:
411 None, replace with self.output_dir. Return fixed versions of
419 if output_dir is None:
422 raise TypeError, "'output_dir' must be a string or None"
433 if libraries is None:
441 if library_dirs is None:
449 if runtime_library_dirs is None:
480 lang = None
497 def preprocess(self, source, output_file=None, macros=None,
498 include_dirs=None, extra_preargs=None, extra_postargs=None):
510 def compile(self, sources, output_dir=None, macros=None,
511 include_dirs=None, debug=0, extra_preargs=None,
512 extra_postargs=None, depends=None):
532 The former defines a macro; if the value is None, the macro is
586 def create_static_lib(self, objects, output_libname, output_dir=None,
587 debug=0, target_lang=None):
617 def link(self, target_desc, objects, output_filename, output_dir=None,
618 libraries=None, library_dirs=None, runtime_library_dirs=None,
619 export_symbols=None, debug=0, extra_preargs=None,
620 extra_postargs=None, build_temp=None, target_lang=None):
669 def link_shared_lib(self, objects, output_libname, output_dir=None,
670 libraries=None, library_dirs=None,
671 runtime_library_dirs=None, export_symbols=None,
672 debug=0, extra_preargs=None, extra_postargs=None,
673 build_temp=None, target_lang=None):
682 def link_shared_object(self, objects, output_filename, output_dir=None,
683 libraries=None, library_dirs=None,
684 runtime_library_dirs=None, export_symbols=None,
685 debug=0, extra_preargs=None, extra_postargs=None,
686 build_temp=None, target_lang=None):
693 def link_executable(self, objects, output_progname, output_dir=None,
694 libraries=None, library_dirs=None,
695 runtime_library_dirs=None, debug=0, extra_preargs=None,
696 extra_postargs=None, target_lang=None):
699 libraries, library_dirs, runtime_library_dirs, None,
700 debug, extra_preargs, extra_postargs, None, target_lang)
726 def has_function(self, funcname, includes=None, include_dirs=None,
727 libraries=None, library_dirs=None):
737 if includes is None:
739 if include_dirs is None:
741 if libraries is None:
743 if library_dirs is None:
774 the current platform). Return None if 'lib' wasn't found in any of
814 if output_dir is None:
831 assert output_dir is not None
837 assert output_dir is not None
844 assert output_dir is not None
871 def execute(self, func, args, msg=None, level=1):
906 def get_default_compiler(osname=None, platform=None):
917 if osname is None:
919 if platform is None:
924 if re.match(pattern, platform) is not None or \
925 re.match(pattern, osname) is not None:
957 compilers.append(("compiler="+compiler, None,
964 def new_compiler(plat=None, compiler=None, verbose=0, dry_run=0, force=0):
975 if plat is None:
979 if compiler is None:
985 if compiler is not None:
1003 # XXX The None is necessary to preserve backwards compatibility
1006 return klass(None, dry_run, force)
1044 if macro[1] is None: # define with no explicit value
1089 if lib_file is not None: