Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pybindings] Fix linking on Mac #13766

Merged
merged 1 commit into from
Nov 6, 2020

Commits on Sep 30, 2020

  1. [pybindings] Fix linking on Mac

    Mac has different linker defaults than linux, and by default it
    does not allow undefined symbols to be left in resulting pybinding
    library.
    To allow it, we specifically pass linker argument when linking final
    pybinding object.
    
    This is done to avoid linking excessively to libpythonX.Y since at the
    time pybinding is loaded into Python process, all libpython symbols
    would be immediately available.
    vicpopov committed Sep 30, 2020
    Configuration menu
    Copy the full SHA
    28e5ba3 View commit details
    Browse the repository at this point in the history