This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: python-2.6.4: test failure in test_distutils due to linking to system libpython2.6
Type: behavior Stage: resolved
Components: Distutils, Distutils2 Versions: Python 2.7
process
Status: closed Resolution: duplicate
Dependencies: Superseder: test_distutils failure with --enable-shared
View: 10126
Assigned To: eric.araujo Nosy List: barry, eric.araujo, matejcik, sandro.tosi, tarek, valeo
Priority: high Keywords:

Created on 2010-08-07 23:13 by valeo, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (14)
msg113217 - (view) Author: Valeo de Vries (valeo) Date: 2010-08-07 23:13
I'm under the impression that this is issue is known about, however I couldn't find an existing bug, so I'm creating a new one for the following test failure:


test_distutils
/usr/lib/gcc/i686-pc-linux-gnu/4.4.4/../../../../i686-pc-linux-gnu/bin/ld: cannot find -lpython2.6
collect2: ld returned 1 exit status
test test_distutils failed -- Traceback (most recent call last):
  File "/var/tmp/paludis/build/dev-lang-python-2.6.4-r1/work/Python-2.6.4/Lib/distutils/tests/test_build_ext.py", line 258, in test_get_outputs
    cmd.run()
  File "/var/tmp/paludis/build/dev-lang-python-2.6.4-r1/work/Python-2.6.4/Lib/distutils/command/build_ext.py", line 340, in run
    self.build_extensions()
  File "/var/tmp/paludis/build/dev-lang-python-2.6.4-r1/work/Python-2.6.4/Lib/distutils/command/build_ext.py", line 449, in build_extensions
    self.build_extension(ext)
  File "/var/tmp/paludis/build/dev-lang-python-2.6.4-r1/work/Python-2.6.4/Lib/distutils/command/build_ext.py", line 531, in build_extension
    target_lang=language)
  File "/var/tmp/paludis/build/dev-lang-python-2.6.4-r1/work/Python-2.6.4/Lib/distutils/ccompiler.py", line 848, in link_shared_object
    extra_preargs, extra_postargs, build_temp, target_lang)
  File "/var/tmp/paludis/build/dev-lang-python-2.6.4-r1/work/Python-2.6.4/Lib/distutils/unixccompiler.py", line 265, in link
    raise LinkError, msg
LinkError: command 'i686-pc-linux-gnu-gcc' failed with exit status 1


Perhaps I'm missing something here, but surely trying to link against the system (i.e. already installed, pre-existing) libpython2.6 defeats the purpose of having a testsuite, if you're not actually going to be testing what you're actually installing?

Any enlightenment here would be appreciated.
msg113232 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-08-08 03:18
Thanks for the report. Can you reproduce with a more recent 2.6, or even the current stable version 2.7?
msg113253 - (view) Author: Valeo de Vries (valeo) Date: 2010-08-08 12:36
Thanks for the speedy response! I'm fairly certain that this affects 2.6.5 as well. I'll test and report back when I'm in front of my development machine (sometime tomorrow).
msg113871 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-08-14 05:24
Valeo, can you reproduce the bug? Final version of 2.6 will come out on Monday.
msg114971 - (view) Author: jan matejek (matejcik) * Date: 2010-08-26 13:23
this affects 2.7 as well. the problem was introduced by r78136 which skips out of the directory containing newly built libpython2.7, so the linking command cannot find it in -L. and fails (unless a systemwide libpython is already present)

the tests should probably specify that they want to link to a specific file, instead of relying on -lpython
however, i have no idea how to do that in general, let alone within distutils :/

see also issue8335
msg118585 - (view) Author: Sandro Tosi (sandro.tosi) * (Python committer) Date: 2010-10-13 21:40
Hello,
on an up-to-date 2.7 I can't replicate this bug:

$ ./python Lib/test/regrtest.py test_distutils
test_distutils
1 test OK.

Is it just me or is been fixed already?
msg118733 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-10-14 23:30
If it still exists in 2.6, I don’t think it could be fixed, that version being in security mode now.  (Barry is the release manager, he’ll chime in if I’m wrong.)

Valeo, can you reproduces the bug on 2.7?  Distutils code has been reverted to a prior version recently, which may be the explanation for the apparent fix, but the bug could still exist with distutils2.  Can you clone http://hg.python.org/distutils2/ and run the test suite on your machine?
msg118734 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-10-14 23:35
Jan, do you think we should close this as a duplicate of #8335?  I’ve just read that one and it looks like the same bug.
msg118817 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2010-10-15 18:28
I'm afraid this can't be fixed in 2.6.
msg119012 - (view) Author: jan matejek (matejcik) * Date: 2010-10-18 13:09
i was able to reproduce this in clean 2.7
Sandro, this is only reproducible on systems without python - so by definition, you can hit this only during installation

as for issue8335, yes, i think that it's a duplicate

distutils2 is irrelevant here, because you can only install it on top of existing python. The problem here is that stdlib's distutils must use the newly built libpython, *not* the systemwide one - a problem that distutils2 don't need to solve until they become part of stdlib.
msg119013 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-10-18 13:29
> i was able to reproduce this in clean 2.7
> as for issue8335, yes, i think that it's a duplicate

Ok, then please add your failure messages on the other bug.

> Sandro, this is only reproducible on systems without python
>- so by definition, you can hit this only during installation

Hm, Sandro didn’t say whether he had a system Python or not.

> distutils2 is irrelevant here

This is internal bookkeeping, you can ignore it.  When we fix something in distutils, it’s forward-ported to distutils2.  I don’t want to wait until the end to synchronize bug fixes.
msg119016 - (view) Author: Sandro Tosi (sandro.tosi) * (Python committer) Date: 2010-10-18 13:49
On Mon, Oct 18, 2010 at 15:29, Éric Araujo <report@bugs.python.org> wrote:
> Éric Araujo <merwok@netwok.org> added the comment:
>> Sandro, this is only reproducible on systems without python
>>- so by definition, you can hit this only during installation
>
> Hm, Sandro didn’t say whether he had a system Python or not.

yes I have :) I can try on an isolated chroot to replicate the
problem, but it will probably take me some day to have the time to do
that,

Cheers,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi
msg119022 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2010-10-18 14:40
Even though this one's older, I'm going to mark it as a duplicate of issue 10126, which is tracking the backport of the fix I made in Python 3.2 to 3.1 and 2.7.

The key issues here are that Python was built with --enabled-shared and the test *only* fails when running 'make test'.  Running ./python as Sandro did does not trigger the bug - at least it didn't in 3.2.
msg119023 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2010-10-18 14:41
Seems like roundup hates me.  Just go to issue 10126.
History
Date User Action Args
2022-04-11 14:57:05adminsetgithub: 53748
2010-10-18 14:46:14eric.araujosetsuperseder: distutils test_build_ext's test_get_outputs fails in bootstrap environment -> test_distutils failure with --enable-shared
2010-10-18 14:41:48barrysetmessages: + msg119023
2010-10-18 14:40:36barrysetmessages: + msg119022
2010-10-18 13:49:41sandro.tosisetmessages: + msg119016
2010-10-18 13:29:05eric.araujosetstatus: open -> closed
resolution: duplicate
messages: + msg119013

superseder: distutils test_build_ext's test_get_outputs fails in bootstrap environment
stage: resolved
2010-10-18 13:09:47matejciksetmessages: + msg119012
2010-10-15 18:28:34barrysetmessages: + msg118817
versions: - Python 2.6, 3rd party
2010-10-14 23:35:23eric.araujosetmessages: + msg118734
2010-10-14 23:30:11eric.araujosetversions: + Python 2.6, 3rd party
nosy: barry, matejcik, tarek, eric.araujo, sandro.tosi, valeo
messages: + msg118733

assignee: tarek -> eric.araujo
components: + Distutils, Distutils2, - Tests
2010-10-13 21:40:57sandro.tosisetnosy: + sandro.tosi

messages: + msg118585
versions: - Python 2.6
2010-08-26 13:23:02matejciksetnosy: + matejcik

messages: + msg114971
versions: + Python 2.7
2010-08-14 05:24:24eric.araujosetpriority: normal -> high

nosy: + barry
messages: + msg113871

type: behavior
2010-08-08 12:36:25valeosetmessages: + msg113253
2010-08-08 03:18:02eric.araujosetassignee: tarek

messages: + msg113232
nosy: + eric.araujo, tarek
2010-08-07 23:13:13valeocreate