Ę
5Oö9c       sE   d  Z  d Z d k Z d k Z d k Td f  d     YZ d   Z d S(   sm   distutils.extension

Provides the Extension class, used to describe C/C++ extension
modules in setup scripts.s7   $Id: extension.py,v 1.6 2000/09/17 00:45:18 gward Exp $N(   s   *s	   Extensionc      s/   d  Z  e e e e e e e e e e d 
 Z RS(   są
  Just a collection of attributes that describes an extension
    module and everything needed to build it (hopefully in a portable
    way, but there are hooks that let you be as unportable as you need).

    Instance attributes:
      name : string
        the full name of the extension, including any packages -- ie.
        *not* a filename or pathname, but Python dotted name
      sources : [string]
        list of source filenames, relative to the distribution root
        (where the setup script lives), in Unix form (slash-separated)
        for portability.  Source files may be C, C++, SWIG (.i),
        platform-specific resource files, or whatever else is recognized
        by the "build_ext" command as source for a Python extension.
      include_dirs : [string]
        list of directories to search for C/C++ header files (in Unix
        form for portability)
      define_macros : [(name : string, value : string|None)]
        list of macros to define; each macro is defined using a 2-tuple,
        where 'value' is either the string to define it to or None to
        define it without a particular value (equivalent of "#define
        FOO" in source or -DFOO on Unix C compiler command line)
      undef_macros : [string]
        list of macros to undefine explicitly
      library_dirs : [string]
        list of directories to search for C/C++ libraries at link time
      libraries : [string]
        list of library names (not filenames or paths) to link against
      runtime_library_dirs : [string]
        list of directories to search for C/C++ libraries at run time
        (for shared extensions, this is when the extension is loaded)
      extra_objects : [string]
        list of extra files to link with (eg. object files not implied
        by 'sources', static library that must be explicitly specified,
        binary resource files, etc.)
      extra_compile_args : [string]
        any extra platform- and compiler-specific information to use
        when compiling the source files in 'sources'.  For platforms and
        compilers where "command line" makes sense, this is typically a
        list of command-line arguments, but for other platforms it could
        be anything.
      extra_link_args : [string]
        any extra platform- and compiler-specific information to use
        when linking object files together to create the extension (or
        to create a new static Python interpreter).  Similar
        interpretation as for 'extra_compile_args'.
      export_symbols : [string]
        list of symbols to be exported from a shared extension.  Not
        used on all platforms, and not generally necessary for Python
        extensions, which typically export exactly one symbol: "init" +
        extension_name.
    c    s¶   | |  _  | |  _ | p g  |  _ | p g  |  _ | p g  |  _ | p g  |  _ | p g  |  _ | p g  |  _ |	 p g  |  _	 |
 p g  |  _
 | p g  |  _ | p g  |  _ d  S(   N(   s   names   selfs   sourcess   include_dirss   define_macross   undef_macross   library_dirss	   librariess   runtime_library_dirss   extra_objectss   extra_compile_argss   extra_link_argss   export_symbols(   s   selfs   names   sourcess   include_dirss   define_macross   undef_macross   library_dirss	   librariess   runtime_library_dirss   extra_objectss   extra_compile_argss   extra_link_argss   export_symbolss0   /mit/python/lib/python2.0/distutils/extension.pys   __init__N s      		(   s   __doc__s   Nones   __init__(    s0   /mit/python/lib/python2.0/distutils/extension.pys	   Extension s   4 c    sŗ  d k  l } l } l } d k l } d k l } | |   } | |  d d d d d d d d d	 d } g  } x@d o8| i   }	 |	 t j o Pn | i |	  o qr n |	 d
 |	 d j o
 d j n o | i d |	  qr n | |	 |  }	 | |	  }
 |
 d
 } t | g   } t } xv|
 d d
 rh} | t j	 o | i |  t } q4n t i i |  d } | d
 d !} | d } | d d d d d f j o | i i |  nß| d j o | i i |  n¾| d j oc t  i! | d  } | d j o | i# i | t f  n& | i# i | d
 | !| | d f  nN| d j o | i$ i |  n-| d j o | i% i |  n| d j o | i& i |  nė | d j o | i' i |  nŹ | d j o | i( i |  n© | d j o | i( } n | d j o | i) } nu | d j o) | i) i |  | o | i) } n n? | d d d  d! f j o | i* i |  n | i d" |  q4W| i |  qr W| Sd  S(#   N(   s   parse_makefiles   expand_makefile_varss   _variable_rx(   s   TextFile(   s   split_quoteds   strip_commentsi   s   skip_blankss
   join_liness	   lstrip_wss	   rstrip_wsi    s   *s   '%s' lines not handled yeti   s   .cs   .ccs   .cpps   .cxxs   .c++s   -Is   -Ds   =s   -Us   -Cs   -ls   -Ls   -Rs   -rpaths   -Xlinkers   -us   .as   .sos   .sls   .os   unrecognized argument '%s'(+   s   distutils.sysconfigs   parse_makefiles   expand_makefile_varss   _variable_rxs   distutils.text_files   TextFiles   distutils.utils   split_quoteds   filenames   varss   files
   extensionss   readlines   lines   Nones   matchs   warns   wordss   modules	   Extensions   exts   append_next_words   words   appends   oss   paths   splitexts   suffixs   switchs   values   sourcess   include_dirss   strings   finds   equalss   define_macross   undef_macross   extra_compile_argss	   librariess   library_dirss   runtime_library_dirss   extra_link_argss   extra_objects(   s   filenames   parse_makefiles   expand_makefile_varss   _variable_rxs   TextFiles   split_quoteds   varss   files
   extensionss   lines   wordss   modules   exts   append_next_words   words   suffixs   switchs   values   equalss0   /mit/python/lib/python2.0/distutils/extension.pys   read_setup_filep s~     '	
 )(   s   __doc__s   __revision__s   oss   strings   typess	   Extensions   read_setup_file(    s0   /mit/python/lib/python2.0/distutils/extension.pys   ? s
   X