Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: python/cpython
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.5
Choose a base ref
...
head repository: python-cmake-buildsystem/cpython
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.5.3-patches
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Nov 6, 2017

  1. Prevent incorrect include of "io.h" found in libmpdec directory

    This commit improves support for building python with built-in extensions
    on windows where the header provided by libmpdec would be included instead
    of the system one.
    jcfr committed Nov 6, 2017
    Configuration menu
    Copy the full SHA
    d754d3b View commit details
    Browse the repository at this point in the history
  2. Prevent duplicated OverlappedType symbols with built-in extension on …

    …windows
    
    This commit improves support for building python with built-in extensions
    on windows where the symbol from overlapped.c would clash with the one
    from _winapi.c
    jcfr committed Nov 6, 2017
    Configuration menu
    Copy the full SHA
    174e8bc View commit details
    Browse the repository at this point in the history
  3. mpdecimal: Export inlined functions to support extension built-in on …

    …windows
    
    This commit ensures that symbols are available when building _freeze_importlib
    with all extensions built-in on windows.
    
    It addresses the following link error associated
    with CMakeBuild\libpython\_freeze_importlib.vcxproj:
    
      3>_decimal.obj : error LNK2019: unresolved external symbol _mpd_del referenced in function _PyDec_AsTuple
      3>io.obj : error LNK2001: unresolved external symbol _mpd_del
      3>basearith.obj : error LNK2019: unresolved external symbol _mpd_uint_zero referenced in function __mpd_baseshiftl
      3>io.obj : error LNK2019: unresolved external symbol _mpd_qresize referenced in function _mpd_qset_string
    jcfr committed Nov 6, 2017
    Configuration menu
    Copy the full SHA
    82969c6 View commit details
    Browse the repository at this point in the history
Loading