Your IP : 216.73.216.224


Current Path : /opt/rh/rh-python35/root/lib64/python3.5/distutils/__pycache__/
Upload File :
Current File : //opt/rh/rh-python35/root/lib64/python3.5/distutils/__pycache__/ccompiler.cpython-35.pyc



���\��@szdZddlZddlZddlZddlTddlmZddlmZddl	m
Z
ddlmZm
Z
ddlmZmZdd	lmZGd
d�d�Zdd
fdd
fddffZdddd�Zd
dddfddddfddddfddddfd d!d"d#fiZd$d%�Zdddddd&d'�Zd(d)�Zd*d+�ZdS),z�distutils.ccompiler

Contains CCompiler, an abstract base class that defines the interface
for the Distutils compiler abstraction model.�N)�*)�spawn)�	move_file)�mkpath)�newer_pairwise�newer_group)�split_quoted�execute)�logc@s�eZdZdZdZdZdZdZdZdZ	dZ
dZddddddddd	d
iZdd
dgZ
ddddd
�Zdd�Zdd�Zdd�Zdd�Zddd�Zdd�Zdd�Zdd�Zdd�Zd d!�Zd"d#�Zd$d%�Zd&d'�Zd(d)�Zd*d+�Zd,d-�Zd.d/�Zd0d1�Z d2d3�Z!dd4d5�Z"d6d7�Z#d8d9�Z$d:d;�Z%d<d=�Z&dddddd>d?�Z'dddddddd@dA�Z(dBdC�Z)ddddDdE�Z*dFZ+dGZ,dHZ-dddddddddddIdJ�
Z.dddddddddddKdL�
Z/dddddddddddMdN�
Z0dddddddddOdP�Z1dQdR�Z2dSdT�Z3dUdV�Z4dddddWdX�Z5ddYdZ�Z6dd[d\d]�Z7dd[d^d_�Z8dd[d`da�Z9dbdd[dcdd�Z:dedfdg�Z;dhdi�Z<djdk�Z=ddedldm�Z>dndo�Z?dpdq�Z@drdsdt�ZAdS)u�	CCompilera�Abstract base class to define the interface that must be implemented
    by real compiler classes.  Also has some utility methods used by
    several compiler classes.

    The basic idea behind a compiler abstraction class is that each
    instance can be used for all the compile/link steps in building a
    single project.  Thus, attributes common to all of those compile and
    link steps -- include directories, macros to define, libraries to link
    against, etc. -- are attributes of the compiler instance.  To allow for
    variability in how individual files are treated, most of those
    attributes may be varied on a per-compilation or per-link basis.
    Nz.c�cz.cczc++z.cppz.cxxz.mZobjcrcCs�||_||_||_d|_g|_g|_g|_g|_g|_g|_	x.|j
j�D]}|j||j
|�qjWdS)N)
�dry_run�force�verbose�
output_dir�macros�include_dirs�	libraries�library_dirs�runtime_library_dirs�objects�executables�keys�set_executable)�selfrr
r�key�r�C/opt/rh/rh-python35/root/usr/lib64/python3.5/distutils/ccompiler.py�__init__Us										zCCompiler.__init__cKsTxM|D]E}||jkr8td||jjf��|j|||�qWdS)a�Define the executables (and options for them) that will be run
        to perform the various stages of compilation.  The exact set of
        executables that may be specified here depends on the compiler
        class (via the 'executables' class attribute), but most will have:
          compiler      the C/C++ compiler
          linker_so     linker used to create shared objects and libraries
          linker_exe    linker used to create binary executables
          archiver      static library creator

        On platforms with a command-line (Unix, DOS/Windows), each of these
        is a string that will be split into executable name and (optional)
        list of arguments.  (Splitting the string is done similarly to how
        Unix shells operate: words are delimited by spaces, but quotes and
        backslashes can override this.  See
        'distutils.util.split_quoted()'.)
        z$unknown executable '%s' for class %sN)r�
ValueError�	__class__�__name__r)r�kwargsrrrr�set_executablesys

zCCompiler.set_executablescCs<t|t�r(t||t|��nt|||�dS)N)�
isinstance�str�setattrr)rr�valuerrrr�szCCompiler.set_executablecCs<d}x/|jD]$}|d|kr*|S|d7}qWdS)Nr�)r)r�name�i�defnrrr�_find_macro�szCCompiler._find_macrocCs�x}|D]u}t|t�oat|�dkoat|dt�sQ|ddkoat|dt�std|dd��qWdS)	z�Ensures that every element of 'definitions' is a valid macro
        definition, ie. either (name,value) 2-tuple or a (name,) tuple.  Do
        nothing if all definitions are OK, raise TypeError otherwise.
        r(�Nrzinvalid macro definition '%s': z.must be tuple (string,), (string, string), or z(string, None))r(r-)r$�tuple�lenr%�	TypeError)rZdefinitionsr+rrr�_check_macro_definitions�s
#z"CCompiler._check_macro_definitionscCs?|j|�}|dk	r%|j|=|jj||f�dS)a_Define a preprocessor macro for all compilations driven by this
        compiler object.  The optional parameter 'value' should be a
        string; if it is not supplied, then the macro will be defined
        without an explicit value and the exact outcome depends on the
        compiler used (XXX true? does ANSI say anything about this?)
        N)r,r�append)rr)r'r*rrr�define_macro�s	
zCCompiler.define_macrocCsB|j|�}|dk	r%|j|=|f}|jj|�dS)a�Undefine a preprocessor macro for all compilations driven by
        this compiler object.  If the same macro is defined by
        'define_macro()' and undefined by 'undefine_macro()' the last call
        takes precedence (including multiple redefinitions or
        undefinitions).  If the macro is redefined/undefined on a
        per-compilation basis (ie. in the call to 'compile()'), then that
        takes precedence.
        N)r,rr2)rr)r*Zundefnrrr�undefine_macro�s

	zCCompiler.undefine_macrocCs|jj|�dS)z�Add 'dir' to the list of directories that will be searched for
        header files.  The compiler is instructed to search directories in
        the order in which they are supplied by successive calls to
        'add_include_dir()'.
        N)rr2)r�dirrrr�add_include_dir�szCCompiler.add_include_dircCs|dd�|_dS)aySet the list of directories that will be searched to 'dirs' (a
        list of strings).  Overrides any preceding calls to
        'add_include_dir()'; subsequence calls to 'add_include_dir()' add
        to the list passed to 'set_include_dirs()'.  This does not affect
        any list of standard include directories that the compiler may
        search by default.
        N)r)r�dirsrrr�set_include_dirs�szCCompiler.set_include_dirscCs|jj|�dS)a�Add 'libname' to the list of libraries that will be included in
        all links driven by this compiler object.  Note that 'libname'
        should *not* be the name of a file containing a library, but the
        name of the library itself: the actual filename will be inferred by
        the linker, the compiler, or the compiler class (depending on the
        platform).

        The linker will be instructed to link against libraries in the
        order they were supplied to 'add_library()' and/or
        'set_libraries()'.  It is perfectly valid to duplicate library
        names; the linker will be instructed to link against libraries as
        many times as they are mentioned.
        N)rr2)r�libnamerrr�add_library�szCCompiler.add_librarycCs|dd�|_dS)z�Set the list of libraries to be included in all links driven by
        this compiler object to 'libnames' (a list of strings).  This does
        not affect any standard system libraries that the linker may
        include by default.
        N)r)rZlibnamesrrr�
set_libraries�szCCompiler.set_librariescCs|jj|�dS)a'Add 'dir' to the list of directories that will be searched for
        libraries specified to 'add_library()' and 'set_libraries()'.  The
        linker will be instructed to search for libraries in the order they
        are supplied to 'add_library_dir()' and/or 'set_library_dirs()'.
        N)rr2)rr5rrr�add_library_dirszCCompiler.add_library_dircCs|dd�|_dS)z�Set the list of library search directories to 'dirs' (a list of
        strings).  This does not affect any standard library search path
        that the linker may search by default.
        N)r)rr7rrr�set_library_dirsszCCompiler.set_library_dirscCs|jj|�dS)zlAdd 'dir' to the list of directories that will be searched for
        shared libraries at runtime.
        N)rr2)rr5rrr�add_runtime_library_dirsz!CCompiler.add_runtime_library_dircCs|dd�|_dS)z�Set the list of directories to search for shared libraries at
        runtime to 'dirs' (a list of strings).  This does not affect any
        standard search path that the runtime linker may search by
        default.
        N)r)rr7rrr�set_runtime_library_dirssz"CCompiler.set_runtime_library_dirscCs|jj|�dS)z�Add 'object' to the list of object files (or analogues, such as
        explicitly named library files or the output of "resource
        compilers") to be included in every link driven by this compiler
        object.
        N)rr2)r�objectrrr�add_link_object szCCompiler.add_link_objectcCs|dd�|_dS)z�Set the list of object files (or analogues) to be included in
        every link to 'objects'.  This does not affect any standard object
        files that the linker may include by default (such as system
        libraries).
        N)r)rrrrr�set_link_objects(szCCompiler.set_link_objectscCs�|dkr|j}nt|t�s3td��|dkrK|j}n1t|t�rp||jpig}ntd��|dkr�|j}n=t|ttf�r�t|�|jp�g}ntd��|dkr�g}|j|ddd|�}t	|�t	|�kst
�t||�}i}	xmtt	|��D]Y}
||
}||
}t
jj|�d}
|jt
jj|��||
f|	|<qDW|||||	fS)	z;Process arguments and decide which source files to compile.Nz%'output_dir' must be a string or Nonez/'macros' (if supplied) must be a list of tuplesz6'include_dirs' (if supplied) must be a list of strings�	strip_dirrrr()rr$r%r0r�listrr.�object_filenamesr/�AssertionError�gen_preprocess_options�range�os�path�splitextr�dirname)rZoutdirrZincdirs�sources�dependsZextrar�pp_opts�buildr*�src�obj�extrrr�_setup_compile6s:		

zCCompiler._setup_compilecCs@|dg}|r&dg|dd�<|r<||dd�<|S)Nz-cz-grr)rrO�debugZbefore�cc_argsrrr�_get_cc_argsas
zCCompiler._get_cc_argscCs�|dkr|j}nt|t�s3td��|dkrK|j}n1t|t�rp||jpig}ntd��|dkr�|j}n=t|ttf�r�t|�|jp�g}ntd��|||fS)a'Typecheck and fix-up some of the arguments to the 'compile()'
        method, and return fixed-up values.  Specifically: if 'output_dir'
        is None, replaces it with 'self.output_dir'; ensures that 'macros'
        is a list, and augments it with 'self.macros'; ensures that
        'include_dirs' is a list, and augments it with 'self.include_dirs'.
        Guarantees that the returned values are of the correct type,
        i.e. for 'output_dir' either string or None, and for 'macros' and
        'include_dirs' either list or None.
        Nz%'output_dir' must be a string or Nonez/'macros' (if supplied) must be a list of tuplesz6'include_dirs' (if supplied) must be a list of strings)rr$r%r0rrDrr.)rrrrrrr�_fix_compile_argsjs 
	zCCompiler._fix_compile_argscCs=|j|d|�}t|�t|�ks3t�|ifS)a+Decide which souce files must be recompiled.

        Determine the list of object files corresponding to 'sources',
        and figure out which ones really need to be recompiled.
        Return a list of all object files and a dictionary telling
        which source files can be skipped.
        r)rEr/rF)rrMrrNrrrr�
_prep_compile�s	zCCompiler._prep_compilecCsjt|ttf�s!td��t|�}|dkrE|j}nt|t�s`td��||fS)z�Typecheck and fix up some arguments supplied to various methods.
        Specifically: ensure that 'objects' is a list; if output_dir is
        None, replace with self.output_dir.  Return fixed versions of
        'objects' and 'output_dir'.
        z,'objects' must be a list or tuple of stringsNz%'output_dir' must be a string or None)r$rDr.r0rr%)rrrrrr�_fix_object_args�szCCompiler._fix_object_argscCs|dkr|j}n=t|ttf�rIt|�|jpBg}ntd��|dkrm|j}n=t|ttf�r�t|�|jp�g}ntd��|dkr�|j}n=t|ttf�r�t|�|jp�g}ntd��|||fS)a;Typecheck and fix up some of the arguments supplied to the
        'link_*' methods.  Specifically: ensure that all arguments are
        lists, and augment them with their permanent versions
        (eg. 'self.libraries' augments 'libraries').  Return a tuple with
        fixed versions of all arguments.
        Nz3'libraries' (if supplied) must be a list of stringsz6'library_dirs' (if supplied) must be a list of stringsz>'runtime_library_dirs' (if supplied) must be a list of strings)rr$rDr.r0rr)rrrrrrr�
_fix_lib_args�s&			zCCompiler._fix_lib_argscCsE|jr
dS|jr.t||dd�}nt||�}|SdS)zjReturn true if we need to relink the files listed in 'objects'
        to recreate 'output_file'.
        TZmissing�newerN)rr
r)rr�output_filer\rrr�
_need_link�s		zCCompiler._need_linkc	Cs�t|t�s|g}d}t|j�}x{|D]s}tjj|�\}}|jj|�}y.|jj	|�}||kr�|}|}Wq4t
k
r�Yq4Xq4W|S)z|Detect the language of a given file, or list of files. Uses
        language_map, and language_order to do the job.
        N)r$rDr/�language_orderrIrJrK�language_map�get�indexr)	rrMZlangrb�source�baserSZextlangZextindexrrr�detect_language�s	


	zCCompiler.detect_languagecCsdS)a�Preprocess a single C/C++ source file, named in 'source'.
        Output will be written to file named 'output_file', or stdout if
        'output_file' not supplied.  'macros' is a list of macro
        definitions as for 'compile()', which will augment the macros set
        with 'define_macro()' and 'undefine_macro()'.  'include_dirs' is a
        list of directory names that will be added to the default list.

        Raises PreprocessError on failure.
        Nr)rrcr]rr�
extra_preargs�extra_postargsrrr�
preprocess�szCCompiler.preprocessc	Cs�|j||||||�\}}	}}
}|j|
||�}xV|	D]N}
y||
\}}Wntk
rzwIYnX|j|
|||||
�qIW|	S)aK	Compile one or more source files.

        'sources' must be a list of filenames, most likely C/C++
        files, but in reality anything that can be handled by a
        particular compiler and compiler class (eg. MSVCCompiler can
        handle resource files in 'sources').  Return a list of object
        filenames, one per source filename in 'sources'.  Depending on
        the implementation, not all source files will necessarily be
        compiled, but all corresponding object filenames will be
        returned.

        If 'output_dir' is given, object files will be put under it, while
        retaining their original path component.  That is, "foo/bar.c"
        normally compiles to "foo/bar.o" (for a Unix implementation); if
        'output_dir' is "build", then it would compile to
        "build/foo/bar.o".

        'macros', if given, must be a list of macro definitions.  A macro
        definition is either a (name, value) 2-tuple or a (name,) 1-tuple.
        The former defines a macro; if the value is None, the macro is
        defined without an explicit value.  The 1-tuple case undefines a
        macro.  Later definitions/redefinitions/ undefinitions take
        precedence.

        'include_dirs', if given, must be a list of strings, the
        directories to add to the default include file search path for this
        compilation only.

        'debug' is a boolean; if true, the compiler will be instructed to
        output debug symbols in (or alongside) the object file(s).

        'extra_preargs' and 'extra_postargs' are implementation- dependent.
        On platforms that have the notion of a command-line (e.g. Unix,
        DOS/Windows), they are most likely lists of strings: extra
        command-line arguments to prepand/append to the compiler command
        line.  On other platforms, consult the implementation class
        documentation.  In any event, they are intended as an escape hatch
        for those occasions when the abstract compiler framework doesn't
        cut the mustard.

        'depends', if given, is a list of filenames that all targets
        depend on.  If a source file is older than any file in
        depends, then the source file will be recompiled.  This
        supports dependency tracking, but only at a coarse
        granularity.

        Raises CompileError on failure.
        )rTrW�KeyError�_compile)rrMrrrrUrfrgrNrrOrPrVrRrQrSrrr�compile�s6

 zCCompiler.compilecCsdS)zCompile 'src' to product 'obj'.Nr)rrRrQrSrVrgrOrrrrjCszCCompiler._compilecCsdS)a&Link a bunch of stuff together to create a static library file.
        The "bunch of stuff" consists of the list of object files supplied
        as 'objects', the extra object files supplied to
        'add_link_object()' and/or 'set_link_objects()', the libraries
        supplied to 'add_library()' and/or 'set_libraries()', and the
        libraries supplied as 'libraries' (if any).

        'output_libname' should be a library name, not a filename; the
        filename will be inferred from the library name.  'output_dir' is
        the directory where the library file will be put.

        'debug' is a boolean; if true, debugging information will be
        included in the library (note that on most platforms, it is the
        compile step where this matters: the 'debug' flag is included here
        just for consistency).

        'target_lang' is the target language for which the given objects
        are being compiled. This allows specific linkage time treatment of
        certain languages.

        Raises LibError on failure.
        Nr)rr�output_libnamerrU�target_langrrr�create_static_libIszCCompiler.create_static_libZ
shared_objectZshared_library�
executablecCs
t�dS)auLink a bunch of stuff together to create an executable or
        shared library file.

        The "bunch of stuff" consists of the list of object files supplied
        as 'objects'.  'output_filename' should be a filename.  If
        'output_dir' is supplied, 'output_filename' is relative to it
        (i.e. 'output_filename' can provide directory components if
        needed).

        'libraries' is a list of libraries to link against.  These are
        library names, not filenames, since they're translated into
        filenames in a platform-specific way (eg. "foo" becomes "libfoo.a"
        on Unix and "foo.lib" on DOS/Windows).  However, they can include a
        directory component, which means the linker will look in that
        specific directory rather than searching all the normal locations.

        'library_dirs', if supplied, should be a list of directories to
        search for libraries that were specified as bare library names
        (ie. no directory component).  These are on top of the system
        default and those supplied to 'add_library_dir()' and/or
        'set_library_dirs()'.  'runtime_library_dirs' is a list of
        directories that will be embedded into the shared library and used
        to search for other shared libraries that *it* depends on at
        run-time.  (This may only be relevant on Unix.)

        'export_symbols' is a list of symbols that the shared library will
        export.  (This appears to be relevant only on Windows.)

        'debug' is as for 'compile()' and 'create_static_lib()', with the
        slight distinction that it actually matters on most platforms (as
        opposed to 'create_static_lib()', which includes a 'debug' flag
        mostly for form's sake).

        'extra_preargs' and 'extra_postargs' are as for 'compile()' (except
        of course that they supply command-line arguments for the
        particular linker being used).

        'target_lang' is the target language for which the given objects
        are being compiled. This allows specific linkage time treatment of
        certain languages.

        Raises LinkError on failure.
        N)�NotImplementedError)rZtarget_descr�output_filenamerrrr�export_symbolsrUrfrg�
build_temprmrrr�linkis9zCCompiler.linkc

CsG|jtj||j|dd�|||||||	|
||�
dS)N�lib_type�shared)rtr�SHARED_LIBRARY�library_filename)
rrrlrrrrrrrUrfrgrsrmrrr�link_shared_lib�s
	zCCompiler.link_shared_libc

Cs8|jtj|||||||||	|
||�
dS)N)rtr�
SHARED_OBJECT)
rrrqrrrrrrrUrfrgrsrmrrr�link_shared_object�s

	zCCompiler.link_shared_objectcCsA|jtj||j|�||||d|||	d|
�
dS)N)rtr�
EXECUTABLE�executable_filename)rrZoutput_prognamerrrrrUrfrgrmrrr�link_executable�szCCompiler.link_executablecCs
t�dS)zkReturn the compiler option to add 'dir' to the list of
        directories searched for libraries.
        N)rp)rr5rrr�library_dir_option�szCCompiler.library_dir_optioncCs
t�dS)zsReturn the compiler option to add 'dir' to the list of
        directories searched for runtime libraries.
        N)rp)rr5rrr�runtime_library_dir_option�sz$CCompiler.runtime_library_dir_optioncCs
t�dS)zReturn the compiler option to add 'lib' to the list of libraries
        linked into the shared library or executable.
        N)rp)r�librrr�library_option�szCCompiler.library_optioncCsAddl}|dkrg}|dkr0g}|dkrBg}|dkrTg}|jd|dd�\}}tj|d�}	z7x|D]}
|	jd|
�q�W|	jd|�Wd|	j�Xy|j|gd	|�}Wntk
r�d
SYnXy |j|dd|d
|�Wnt	t
fk
r<d
SYnXdS)z�Return a boolean indicating whether funcname is supported on
        the current platform.  The optional arguments can be used to
        augment the compilation environment.
        rNz.c�textT�wz#include "%s"
z+main (int argc, char **argv) {
    %s();
}
rFza.outrr)�tempfileZmkstemprI�fdopen�write�closerkZCompileErrorr~Z	LinkErrorr0)r�funcnameZincludesrrrr��fdZfname�fZinclrrrr�has_function�s8	

		zCCompiler.has_functioncCs
t�dS)aHSearch the specified list of directories for a static or shared
        library file 'lib' and return the full path to that file.  If
        'debug' true, look for a debugging version (if that makes sense on
        the current platform).  Return None if 'lib' wasn't found in any of
        the specified directories.
        N)rp)rr7r�rUrrr�find_library_file#szCCompiler.find_library_file�cCs�|dkrd}g}x�|D]�}tjj|�\}}tjj|�d}|tjj|�d�}||jkr�td||f��|r�tjj|�}|jtjj	|||j
��qW|S)Nr�r(z"unknown file type '%s' (from '%s'))rIrJrK�
splitdrive�isabs�src_extensionsZUnknownFileError�basenamer2�join�
obj_extension)rZsource_filenamesrCrZ	obj_namesZsrc_namerdrSrrrrENs
zCCompiler.object_filenamescCsD|dk	st�|r*tjj|�}tjj|||j�S)N)rFrIrJr�r��shared_lib_extension)rr�rCrrrr�shared_object_filename_sz CCompiler.shared_object_filenamecCsJ|dk	st�|r*tjj|�}tjj|||jpEd�S)Nr�)rFrIrJr�r��
exe_extension)rr�rCrrrrr}eszCCompiler.executable_filename�staticc
Cs�|dk	st�|dkr*td��t||d�}t||d�}tjj|�\}}|||f}	|r�d}tjj|||	�S)	Nr�rv�dylibz0'lib_type' must be "static", "shared" or "dylib"Z_lib_formatZ_lib_extensionr�)r�zsharedr�)rFr�getattrrIrJ�splitr�)
rr9rurCrZfmtrSr5rd�filenamerrrrxks	zCCompiler.library_filenamer(cCstj|�dS)N)r
rU)r�msg�levelrrr�announce~szCCompiler.announcecCs$ddlm}|r t|�dS)Nr)�DEBUG)Zdistutils.debugr��print)rr�r�rrr�debug_print�szCCompiler.debug_printcCstjjd|�dS)Nzwarning: %s
)�sys�stderrr�)rr�rrr�warn�szCCompiler.warncCst||||j�dS)N)r	r
)r�func�argsr�r�rrrr	�szCCompiler.executecCst|d|j�dS)Nr
)rr
)r�cmdrrrr�szCCompiler.spawncCst||d|j�S)Nr
)rr
)rrQZdstrrrr�szCCompiler.move_filei�cCst||d|j�dS)Nr
)rr
)rr)�moderrrr�szCCompiler.mkpath)Br!�
__module__�__qualname__�__doc__Z
compiler_typer�r�Zstatic_lib_extensionr�Zstatic_lib_formatZshared_lib_formatr�r`r_rr#rr,r1r3r4r6r8r:r;r<r=r>r?rArBrTrWrXrYrZr[r^rerhrkrjrnrzrwr|rtryr{r~rr�r�r�r�rEr�r}rxr�r�r�r	rrrrrrrrs�
$ 
+	 "
	B4*+rzcygwin.*�unix�posix�ntZmsvccCsy|dkrtj}|dkr*tj}xHtD]@\}}tj||�dk	smtj||�dk	r1|Sq1WdS)akDetermine the default compiler to use for the given platform.

       osname should be one of the standard Python OS names (i.e. the
       ones returned by os.name) and platform the common value
       returned by sys.platform for the platform in question.

       The default values are os.name and sys.platform in case the
       parameters are not given.
    Nr�)rIr)r��platform�_default_compilers�re�match)�osnamer��pattern�compilerrrr�get_default_compiler�s
		r�Z
unixccompilerZ
UnixCCompilerzstandard UNIX-style compilerZ
_msvccompilerZMSVCCompilerzMicrosoft Visual C++�cygwinZcygwinccompilerZCygwinCCompilerz'Cygwin port of GNU C Compiler for Win32Zmingw32ZMingw32CCompilerz(Mingw32 port of GNU C Compiler for Win32ZbcppZbcppcompilerZBCPPCompilerzBorland C++ CompilercCsvddlm}g}x6tj�D](}|jd|dt|df�q#W|j�||�}|jd�dS)zyPrint list of available compilers (used by the "--help-compiler"
    options to "build", "build_ext", "build_clib").
    r)�FancyGetoptz	compiler=Nr-zList of available compilers:)Zdistutils.fancy_getoptr��compiler_classrr2�sortZ
print_help)r�Z	compilersr�Zpretty_printerrrr�show_compilers�s
r�cCs|dkrtj}y/|dkr0t|�}t|\}}}WnBtk
r�d|}|dk	rx|d|}t|��YnXy5d|}t|�tj|}	t	|	�|}
WnIt
k
r�td|��Yn(tk
r	td||f��YnX|
d||�S)a[Generate an instance of some CCompiler subclass for the supplied
    platform/compiler combination.  'plat' defaults to 'os.name'
    (eg. 'posix', 'nt'), and 'compiler' defaults to the default compiler
    for that platform.  Currently only 'posix' and 'nt' are supported, and
    the default compilers are "traditional Unix interface" (UnixCCompiler
    class) and Visual C++ (MSVCCompiler class).  Note that it's perfectly
    possible to ask for a Unix compiler object under Windows, and a
    Microsoft compiler object under Unix -- if you supply a value for
    'compiler', 'plat' is ignored.
    Nz5don't know how to compile C/C++ code on platform '%s'z with '%s' compilerz
distutils.z4can't compile C/C++ code: unable to load module '%s'zBcan't compile C/C++ code: unable to find class '%s' in module '%s')rIr)r�r�riZDistutilsPlatformError�
__import__r��modules�vars�ImportErrorZDistutilsModuleError)Zplatr�rr
rZmodule_nameZ
class_nameZlong_descriptionr��module�klassrrr�new_compiler�s2	






r�cCs�g}x�|D]�}t|t�oAdt|�ko?dknsTtd|��t|�dkr~|jd|d�q
t|�dkr
|ddkr�|jd|d�q
|jd|�q
Wx|D]}|jd	|�q�W|S)
aGenerate C pre-processor options (-D, -U, -I) as used by at least
    two types of compilers: the typical Unix compiler and Visual C++.
    'macros' is the usual thing, a list of 1- or 2-tuples, where (name,)
    means undefine (-U) macro 'name', and (name,value) means define (-D)
    macro 'name' to 'value'.  'include_dirs' is just a list of directory
    names to be added to the header file search path (-I).  Returns a list
    of command-line options suitable for either Unix compilers or Visual
    C++.
    r(r-zPbad macro definition '%s': each element of 'macros' list must be a 1- or 2-tuplez-U%srNz-D%sz-D%s=%sz-I%s)r$r.r/r0r2)rrrOZmacror5rrrrG
s
1

rGcCs�g}x$|D]}|j|j|��q
WxF|D]>}|j|�}t|t�re||}q4|j|�q4Wx�|D]y}tjj|�\}}	|r�|j|g|	�}
|
r�|j|
�q�|j	d|�q}|j|j
|��q}W|S)acGenerate linker options for searching library directories and
    linking with specific libraries.  'libraries' and 'library_dirs' are,
    respectively, lists of library names (not filenames!) and search
    directories.  Returns a list of command-line options suitable for use
    with some compiler (depending on the two format strings passed in).
    z6no library file corresponding to '%s' found (skipping))r2rr�r$rDrIrJr�r�r�r�)r�rrrZlib_optsr5�optr�Zlib_dirZlib_nameZlib_filerrr�gen_lib_options7s$



	r�)r�r�rIr�Zdistutils.errorsZdistutils.spawnrZdistutils.file_utilrZdistutils.dir_utilrZdistutils.dep_utilrrZdistutils.utilrr	Z	distutilsr
rr�r�r�r�r�rGr�rrrr�<module>s<$
����							--

Rosenblum TV: Video training, virtual workshops, classes, tutorials
logologologologo
  • About
  • What We Do
  • Our Clients
  • Case Studies
    • The BBC
    • CBS News
    • New York Times Television
    • Spectrum News
    • The Newark Star-Ledger
    • The United Nations
    • McGraw/Hill
    • Oyster Yachts
    • Scottish Environmental Protection Agency
  • The Power of Storytelling
  • Why iPhones?
  • Michael on Media
  • Books
  • Contact
  • About
  • What We Do
  • Our Clients
  • Case Studies
    • The BBC
    • CBS News
    • New York Times Television
    • Spectrum News
    • The Newark Star-Ledger
    • The United Nations
    • McGraw/Hill
    • Oyster Yachts
    • Scottish Environmental Protection Agency
  • The Power of Storytelling
  • Why iPhones?
  • Michael on Media
  • Books
  • Contact

RE-INVENTING THE TELEVISION NEWS BUSINESS*

A revolution in video storytelling

Creating entirely new & cost-effective production methods

From the world leaders in video production training and the creators of Character Driven Storytelling™

*and every other business that uses video

WHAT WE DO

Over the past 35 years, we have designed, built or restructured some of the most powerful news and journalism companies in the world.

We replace the traditional TV news ‘crew’ with one highly trained journalist, working alone with nothing but an iPhone.

No more TV news ‘crews’, no editors and no field producers.

This is television news done the way newspaper journalism is done – one reporter with their electronic pad and pencil.

In doing this, we can cut the cost of production by as much as 75% while increasing ratings and audience engagement.

In the place of conventional TV news ‘packages’ – ie, reporter stand up, interview, b-roll, man on the street, we marry great journalism with Netflix and Hollywood storytelling.

It’s a combination that works.

We have taken most of our clients to #1 in their respective markets.

And it’s not just for news. Any company, any profit, any NGO and anyone else who is online needs to tell their story in compelling yet cost-effective video. We can teach you to do that. Either in person or virtually.

EXAMPLES OF WHAT WE CAN TEACH YOUR STAFF TO PRODUCE

ITAY HOD

Itay Hod, MMJ with KPIX/CBS in San Francisco, took the 5-Day Intensive Video Storytelling Bootcamp in 2018.

Because he works alone, with only an iPhone, he was able to embed himself with a homeless family.

Here’s the story he produced in a one-day turn.

KIET DO

Kiet Do, an MMJ with KPIX/CBS in San Francisco, took the 5-Day Intensive Video Storytelling Bootcamp in 2021.

Here is a story he produced, all on his own, with only an iPhone and in a one-day turn.

TAYLOR SCHAUB

Taylor Schaub, an MMJ with Spectrum News 1 in LA, took the 5-Day Intensive Video Storytelling Bootcamp in 2023.

Here is a story he turned in only one day, using only an iPhone. It was the first video story he ever did and it was nominated for an Emmy.

THE BOOTCAMP

How do we convert stations and whole networks to working in this way?

Since 1988, we have run intensive 5-Day Video Storytelling Bootcamps

We have done these all over the world.

These are hands-on bootcamps, and participants learn an entirely new way of creating TV news stories.

-We shoot at a 3:1 ratio or lower, so turnaround times are fast.

-We go directly from camera to timelilne and edit – no written scripts.  We work in the medium of pictures and sound.

-We are entirely character-driven.

-We are driven by pictures and real events.

-We are focused almost entirely on ’the viewer experience’.

Since 1988, more than 70,000 journalists around the world have taken our bootcamps, either in person on virtualy.

Case Studies

CBS Case Study Logos
CBS News

We have started to work with CBS News, bringing our ideas of character-driven storytelling to one of the most successful and biggest networks in the United States. Since beginning to work with them ratings have climbed and more importantly, audience engagement is through the ceiling.

Learn More
NYT Case Study Logos
New York Times Television

We started New York Times Television in 1990 and it was the first paper to be brought into the world of TV. It quickly became one of the most successful non-fiction production companies in the United States. The series and documentaries we produced won many awards including multiple Emmys.

Learn More
BBC Case Study Logos
The BBC

We have been working with the BBC since the year 2000 helping to convert their national news network to our visual storytelling technique. Most recently we have trained teams from their sports, documentaries, and comedy divisions to make character-driven stories using only smartphones.

Learn More
Spectrum Case Study Logos
Spectrum News

For the past five years we have worked with Spectrum News to introduce and train their journalists on visual, character driven storytelling using smartphones helping to create a different kind of local news for their network of 24-Hour News Stations across the United States.

Learn More
UN Case Study Logos
The United Nations

In 2006, we were approached by the United Nations. Rather than rely on news outlets, it would be much easier to train the field operatives to produce their own stories. We spent two years working with the UN, training more than 100 of their staff in bootcamps in Geneva and Nairobi.

Learn More
Star Ledger Case Study Logos
The Newark Star-Ledger

We trained 50 print reporters at the paper to shoot and tell their own stories, in conjunction with their print work. We built a TV newsroom in their existing print newsroom – you could not ask for a better set and they began to live stream their stories in conjunction with their print work.

Learn More
Mcgraw Hill Case Study Logos
Mcgraw Hill

We spent two years with McGraw Hill, training more than 150 of their staffers, making them completely video literate. McGraw/Hill media properties we transit included Business Week, Aviation Week, (what was the name of the architecture magazine), and JD Power and Associates.

Learn More
VOA Case Study Logos
Voice of America

In 1990, we were approached by The Voice of America, the official broadcasting agency for the United States Government. When we met with VOA, they were only a short wave radio broadcaster, but working with them, we took them into television, launching VOA-TV.

Learn More
Oyster Case Study Logos
Oyster Yachts

British based Oyster Yachts makes some of the finest yachts in the world. Like every other company, they had to find a way to feed the never-ending video demands of social media – sites like Instagram and TikTok. We trained the Oyster staff to tell their own stories, using only iPhones.

Learn More
SEPA Case Study Logos
Scottish Environmental Protection Agency

We were approached by SEPA, the Scottish Environmental Protection Agency because they had to continually find a way to ‘feed the media beast’. The result was that SEPA was able to tell their own stories, whenever they wanted, and at almost no additional cost.

Learn More
Image 11-11-22 at 6.25 PM

Michael on Media

Michael Rosenblum has been writing about the media since 1988. His work and ideas have appeared in The Guardian, The Huffington Post, Ilkeston Life and many other publications.

He has been blogging regularly for the past 35 years on this subject. Having taught media studies at Columbia University, NYU and now the University of Oxford, he is considered an expert on this subject.

Continue reading this post or look back at previous posts.

Read More

Do You Have Questions About Learning Video Skills?

If you would like to know more about our courses contact us and one of our training advisors will be happy to call you.

Contact Us

Copyright 2024. All rights reserved.