Changeset 13 for python/trunk/Lib


Ignore:
Timestamp:
Sep 12, 2010, 11:24:21 PM (15 years ago)
Author:
Yuri Dario
Message:

python: allows submodules to inherit python build flags, so they build with same options. fixes highmem in mercurial.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/trunk/Lib/distutils/sysconfig.py

    r10 r13  
    173173    varies across Unices and is stored in Python's Makefile.
    174174    """
    175     if compiler.compiler_type == "unix":
     175    if compiler.compiler_type == "unix" or compiler.compiler_type == "emx":
    176176        (cc, cxx, opt, cflags, ccshared, ldshared, so_ext) = \
    177177            get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS',
Note: See TracChangeset for help on using the changeset viewer.