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

distutils build_ext fails to set library_dirs in 2.7.2 on Linux #60530

Closed
AndySalnikov mannequin opened this issue Oct 25, 2012 · 11 comments
Closed

distutils build_ext fails to set library_dirs in 2.7.2 on Linux #60530

AndySalnikov mannequin opened this issue Oct 25, 2012 · 11 comments
Assignees
Labels
build The build process and cross-build stdlib Python modules in the Lib dir

Comments

@AndySalnikov
Copy link
Mannequin

AndySalnikov mannequin commented Oct 25, 2012

BPO 16326
Nosy @vsajip, @tarekziade, @merwok, @zware
Files
  • distutils-sysexecutable.patch
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = 'https://github.com/merwok'
    closed_at = <Date 2020-04-26.17:12:02.878>
    created_at = <Date 2012-10-25.19:44:24.250>
    labels = ['build', 'library']
    title = 'distutils build_ext fails to set library_dirs in 2.7.2 on Linux'
    updated_at = <Date 2020-04-26.17:12:02.876>
    user = 'https://bugs.python.org/AndySalnikov'

    bugs.python.org fields:

    activity = <Date 2020-04-26.17:12:02.876>
    actor = 'zach.ware'
    assignee = 'eric.araujo'
    closed = True
    closed_date = <Date 2020-04-26.17:12:02.878>
    closer = 'zach.ware'
    components = ['Distutils']
    creation = <Date 2012-10-25.19:44:24.250>
    creator = 'Andy.Salnikov'
    dependencies = []
    files = ['27800']
    hgrepos = []
    issue_num = 16326
    keywords = ['patch']
    message_count = 11.0
    messages = ['173796', '173953', '174050', '174096', '174225', '177187', '177209', '177379', '177396', '213226', '367321']
    nosy_count = 5.0
    nosy_names = ['vinay.sajip', 'tarek', 'eric.araujo', 'zach.ware', 'Andy.Salnikov']
    pr_nums = []
    priority = 'normal'
    resolution = 'out of date'
    stage = 'resolved'
    status = 'closed'
    superseder = None
    type = 'compile error'
    url = 'https://bugs.python.org/issue16326'
    versions = ['Python 2.7', 'Python 3.2', 'Python 3.3', 'Python 3.4']

    @AndySalnikov
    Copy link
    Mannequin Author

    AndySalnikov mannequin commented Oct 25, 2012

    Hi,

    when trying to build extension modules with distutils I ran into
    a problem that linking fails with an errors like:

    gcc -pthread -shared -L build/temp.linux-x86_64-2.7/h5py/defs.o -L/reg/g/psdm/sw/external/hdf5/1.8.4p1/x86_64-rhel6-gcc44-opt/lib -L. -Wl,-R/reg/g/psdm/sw/external/hdf5/1.8.4p1/x86_64-rhel6-gcc44-opt/lib -lhdf5 -lpython2.7 -o build/lib.linux-x86_64-2.7/h5py/defs.so
    /usr/bin/ld: cannot find -lpython2.7
    collect2: ld returned 1 exit status

    For some reason location of the python library is not added to the
    command line with -L option.

    I tracked the reason down to a particular environment that we have,
    in out environment python executable found in a $PATH is a symbolic link
    to a binary installed in some non-standard location. I believe this
    piece of code in build_ext.py fails to realize this:

                if sys.executable.startswith(os.path.join(sys.exec_prefix, "bin")):
                    # building third party extensions
                    self.library_dirs.append(sysconfig.get_config_var('LIBDIR'))
                else:
                    # building python standard extensions
                    self.library_dirs.append('.')

    apparently sys.executable in our case refers to a symlink path, while
    sys.exec_prefix refers to actual installation directory.

    I think fix for our case should be easy (I can't say about other cases
    which may be broken by this logic), one just need to apply os.path.realpath()
    to sys.executable before comparing it to sys.exec_prefix.

    Andy

    @AndySalnikov AndySalnikov mannequin assigned merwok Oct 25, 2012
    @AndySalnikov AndySalnikov mannequin added stdlib Python modules in the Lib dir build The build process and cross-build labels Oct 25, 2012
    @merwok
    Copy link
    Member

    merwok commented Oct 27, 2012

    Would you like to work on a patch?

    @AndySalnikov
    Copy link
    Mannequin Author

    AndySalnikov mannequin commented Oct 28, 2012

    I never submitted any patch to Python, but unless somebody more
    experienced wants to contribute I can try.

    @merwok
    Copy link
    Member

    merwok commented Oct 29, 2012

    Great! http://docs.python.org/devguide contains all the info needed to get the code and make a patch. If you apply your suggestion to the code and it fixes your build, I will commit it. A small unit test to check the new behavior of build_ext and avoid regressions will be needed, but it’s not always easy to write these tests, so depending on your time I will be able to provide guidance or write the test myself.

    @AndySalnikov
    Copy link
    Mannequin Author

    AndySalnikov mannequin commented Oct 30, 2012

    Hi Éric,

    I am attaching a patch that fixes the problem. The patch is tiny, basically 1-line. This replaces the direct use of sys.executable with the symlink-resolved version of the same path. I made the change for linux/unix platforms and also for cygwin/atheos (I'm sure cygwin has symlinks, not sure if atheos does but resolving symlinks can't hurt in general).

    The patch was created from default hg branch (3.4.0a0 I guess), I have built it and tested in my simple setup. The problem that we have (in 2.7) is indeed reproducible without this patch and it is fixed with this patch applied.

    Concerning the unit test - I'm not sure how to write one but if you have suggestions I could try. The complications in this case are that python needs to be installed in its configured location and the symlink needs to be created outside python install directory which points to the installed interpreter. If unit test could handle this then it might be possible.

    I did not update any documentation, could not find any place to mention this change. Sure you will know better what else is needed to be updated. I'd be happy to help you with whatever else is necessary to commit this patch.

    Cheers,
    Andy

    @merwok
    Copy link
    Member

    merwok commented Dec 9, 2012

    Vinay, do you think dereferencing sys.executable could lead to trouble with venvs?

    @vsajip
    Copy link
    Member

    vsajip commented Dec 9, 2012

    Vinay, do you think dereferencing sys.executable could lead to trouble with venvs?

    It could - the venv code looks for a venv configuration file relative to sys.executable, which could be a symlink into a system-wide Python installation. Resolving the symlink would mean that the venv can't be found.

    @AndySalnikov
    Copy link
    Mannequin Author

    AndySalnikov mannequin commented Dec 12, 2012

    OK, I see the problem. Do you think it would help if it tested both
    sys.executable and its symlynk-resolved path against sys.exec_prefix
    like this:

            if sys.executable.startswith(os.path.join(sys.exec_prefix, "bin")) or
                os.path.realpath(sys.executable).startswith(os.path.join(sys.exec_prefix, "bin")):
                # building third party extensions
                self.library_dirs.append(sysconfig.get_config_var('LIBDIR'))
            else:
                # building python standard extensions
                self.library_dirs.append('.')
    

    Alternatively one can reverse the test. I guess that 'else:' is supposed
    to apply when one builds new Python installation? Where does the
    sys.executable points to in this case? Is there any other (more reliable)
    way to figure out that the standard extensions are being built instead of
    third-party modules?

    Andy

    @vsajip
    Copy link
    Member

    vsajip commented Dec 13, 2012

    In terms of the venv code, I don't see how doing the test in that way would cause problems - as long as the value of sys.executable doesn't change, then as I see it, the venv code should operate as it's meant to.

    @merwok
    Copy link
    Member

    merwok commented Mar 12, 2014

    FTR a patch in bpo-18976 is said to also fix this one.

    @zware
    Copy link
    Member

    zware commented Apr 26, 2020

    Given that bpo-18976 was said to have fixed this and is now closed as "fixed", and every tagged version is now EOL, I'm closing the issue.

    @zware zware closed this as completed Apr 26, 2020
    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    build The build process and cross-build stdlib Python modules in the Lib dir
    Projects
    None yet
    Development

    No branches or pull requests

    3 participants