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: PyMySQL/mysqlclient
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: ravyn440/mysqlclient-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on May 17, 2018

  1. resolve a missing symbol error under ubuntu 16

    On ubuntu 16, and possibly newer, this error occurs when
    doing a static build.
    
    undefined symbol: _ZTVN10__cxxabiv117__class_type_infoE
    
    Add -lstdc++ to the libraries to resolve.  Code remains
    functional under older versions.
    ravyn440 committed May 17, 2018
    Configuration menu
    Copy the full SHA
    21335a9 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2018

  1. change from using 'libraries' to 'language' for static builds

    to get the appropriate libstdc++ or equivalent linked in.
    setting language = 'c++' for non-static builds appears to
    have no ill effect but we will do it this way to keep the
    number and complexity of changes to a minimum.
    ravyn440 committed May 18, 2018
    Configuration menu
    Copy the full SHA
    4aeb4a8 View commit details
    Browse the repository at this point in the history
Loading