o
    ^+)h0                     @   s   d Z ddlZddlZddlZddlZddlZddlmZ ddlm	Z	 ddl
mZ ddlmZmZmZmZ ddlmZmZ dd	 Zd
ZG dd de	ZG dd deZdZdZdZdd Zdd ZdZdS )a  distutils.cygwinccompiler

Provides the CygwinCCompiler class, a subclass of UnixCCompiler that
handles the Cygwin port of the GNU C compiler to Windows.  It also contains
the Mingw32CCompiler class which handles the mingw32 port of GCC (same as
cygwin in no-cygwin mode).
    N)check_output)UnixCCompiler)
write_file)DistutilsExecErrorDistutilsPlatformErrorCCompilerErrorCompileError)LooseVersionsuppress_known_deprecationc                  C   s   t jd} | dkr\t j| d | d  }|dkrdgS |dkr#dgS |d	kr*d
gS |dkr1dgS |dkr8dgS |dkr?dgS |dkrFdgS dt|  krUdk rVddgS  td| dS )zaInclude the appropriate MSVC runtime library if Python was built
    with MSVC 7.0 or later.
    zMSC v.   
   Z1300Zmsvcr70Z1310Zmsvcr71Z1400Zmsvcr80Z1500Zmsvcr90Z1600Zmsvcr100Z1700Zmsvcr110Z1800Zmsvcr120il  i  ZucrtZvcruntime140zUnknown MS Compiler version %s N)sysversionfindint
ValueError)Zmsc_posZmsc_ver r   dC:\Users\User\Downloads\Proyecto_IoT\venv\Lib\site-packages\setuptools/_distutils/cygwinccompiler.py	get_msvcr   s,   r   zxUnable to set runtime library search path on Windows, usually indicated by `runtime_library_dirs` parameter to Extensionc                       s   e Zd ZdZdZdZdZdZdZdZ	dZ
dZd	Zd fdd	Zedd Zdd Z						
				dddZdd Z fddZe fddZ  ZS )CygwinCCompilerz9Handles the Cygwin port of the GNU C compiler to Windows.cygwinz.oz.az.dll.az.dllzlib%s%szcyg%s%sz.exer   c              	      s   t  ||| t \}}| d|| |tur!| d|  tj	dd| _
tj	dd| _| j
| _d}| jd| j
 d	| j
 d| j d
| j
 d| j|d t | _d S )Nz%Python's GCC status: {} (details: {})zPython's pyconfig.h doesn't seem to support your compiler. Reason: %s. Compiling may fail because of undefined preprocessor macros.ZCCgccZCXXzg++-sharedz%s -mcygwin -O -Wallz%s -mcygwin -mdll -O -Wallz%s -mcygwinz{} -mcygwin {}compilercompiler_soZcompiler_cxxZ
linker_exeZ	linker_so)super__init__check_config_hZdebug_printformatCONFIG_H_OKwarnosenvirongetcccxx
linker_dllset_executablesr   dll_libraries)selfverbosedry_runforcestatusdetailsshared_option	__class__r   r   r   Q   s.   


zCygwinCCompiler.__init__c                 C   sB   t jdtdd t  tdW  d    S 1 sw   Y  d S )Nzgcc_version attribute of CygwinCCompiler is deprecated. Instead of returning actual gcc version a fixed value 11.2.0 is returned.   )
stacklevelz11.2.0)warningsr"   DeprecationWarningr
   r	   r+   r   r   r   gcc_versionr   s   $zCygwinCCompiler.gcc_versionc              
   C   s   |dks|dkr&z|  dd|d|g W dS  ty% } zt|d}~ww z|  | j| |d|g |  W dS  tyH } zt|d}~ww )z:Compiles the source by spawning GCC and windres if needed..rc.resZwindresz-iz-oN)Zspawnr   r   r   )r+   objsrcextZcc_argsextra_postargsZpp_optsmsgr   r   r   _compile   s   
zCygwinCCompiler._compileNc                 C   s  t  |
pg }
t  |pg }t  |pg }|r| t || j |durq|| jks0| jdkrqtj	|d }tj
tj|\}}tj||d }dtj| dg}|D ]}|| qY| t||fd|  || |	sx|
d t| |||||||d|	|
||| dS )	zLink the objects.Nr   r   z.defz
LIBRARY %sZEXPORTSz
writing %sz-s)copyr"   _runtime_library_dirs_msgextendr*   Z
EXECUTABLEr(   r#   pathdirnamesplitextbasenamejoinappendexecuter   r   link)r+   Ztarget_descobjectsZoutput_filename
output_dirZ	librariesZlibrary_dirsZruntime_library_dirsZexport_symbolsdebugZextra_preargsr?   Z
build_tempZtarget_langtemp_dirZdll_nameZdll_extensionZdef_filecontentssymr   r   r   rL      sH   




zCygwinCCompiler.linkc                 C   s   |  t g S N)r"   rC   r+   dirr   r   r   runtime_library_dir_option   s   
z*CygwinCCompiler.runtime_library_dir_optionc                    s   t j|}t |||S rS   )r#   rE   normcaser   _make_out_path)r+   rN   Z	strip_dirZsrc_nameZnorm_src_namer2   r   r   rX      s   zCygwinCCompiler._make_out_pathc                    s   i t  j fdddD S )z3
        Add support for rc and res files.
        c                    s   i | ]}|| j  qS r   )obj_extension).0r>   r8   r   r   
<dictcomp>   s    z2CygwinCCompiler.out_extensions.<locals>.<dictcomp>)r;   r:   )r   out_extensionsr8   r2   r8   r   r\      s
   zCygwinCCompiler.out_extensionsr   r   r   )
NNNNNr   NNNN)__name__
__module____qualname____doc__compiler_typerY   Zstatic_lib_extensionZshared_lib_extensionZdylib_lib_extensionZstatic_lib_formatZshared_lib_formatZdylib_lib_formatZexe_extensionr   propertyr9   rA   rL   rV   rX   r\   __classcell__r   r   r2   r   r   D   s<    !

Z	r   c                       s.   e Zd ZdZdZd fdd	Zdd Z  ZS )	Mingw32CCompilerz:Handles the Mingw32 port of the GNU C compiler to Windows.Zmingw32r   c              	      sn   t  ||| d}t| jrtd| jd| j d| j d| j d| j d| j|d g | _	t
 | _	d S )Nr   z1Cygwin gcc cannot be used with --compiler=mingw32z%s -O -Wallz%s -mdll -O -Wallz%sz{} {}r   )r   r   is_cygwinccr&   r   r)   r'   r    r(   r*   r   )r+   r,   r-   r.   r1   r2   r   r   r   
  s   
zMingw32CCompiler.__init__c                 C   s   t trS   )r   rC   rT   r   r   r   rV   &  s   z+Mingw32CCompiler.runtime_library_dir_optionr]   )r^   r_   r`   ra   rb   r   rV   rd   r   r   r2   r   re     s
    re   okznot okZ	uncertainc               
   C   s   ddl m}  dtjv rtdfS dtjv rtdfS |  }z(t|}zd| v r4td| fW |  W S t	d	| fW |  W S |  w  t
y_ } ztd
||jfW  Y d}~S d}~ww )aw  Check if the current Python installation appears amenable to building
    extensions with GCC.

    Returns a tuple (status, details), where 'status' is one of the following
    constants:

    - CONFIG_H_OK: all is well, go ahead and compile
    - CONFIG_H_NOTOK: doesn't look good
    - CONFIG_H_UNCERTAIN: not sure -- unable to read pyconfig.h

    'details' is a human-readable string explaining the situation.

    Note there are two ways to conclude "OK": either 'sys.version' contains
    the string "GCC" (implying that this Python was built with GCC), or the
    installed "pyconfig.h" contains the string "__GNUC__".
    r   )	sysconfigZGCCzsys.version mentions 'GCC'ZClangzsys.version mentions 'Clang'Z__GNUC__z'%s' mentions '__GNUC__'z '%s' does not mention '__GNUC__'zcouldn't read '{}': {}N)	distutilsrh   r   r   r!   get_config_h_filenameopenreadcloseCONFIG_H_NOTOKOSErrorCONFIG_H_UNCERTAINr    strerror)rh   fnconfig_hexcr   r   r   r   3  s$   

r   c                 C   s"   t t| dg }| dS )zCTry to determine if the compiler that would be used is from cygwin.z-dumpmachines   cygwin)r   shlexsplitstripendswith)r&   Z
out_stringr   r   r   rf   b  s   rf   )ra   r#   r   rB   ru   r6   
subprocessr   Zdistutils.unixccompilerr   Zdistutils.file_utilr   Zdistutils.errorsr   r   r   r   Zdistutils.versionr	   r
   r   rC   r   re   r!   rn   rp   r   rf   get_versionsr   r   r   r   <module>   s0    $ B)/