[issue1326113] Letting build_ext --libraries take more than one lib

2012-04-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Another instance of this is #1703178. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1326113 ___

[issue1326113] Letting build_ext --libraries take more than one lib

2012-02-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 53df93a9c002 by Éric Araujo in branch '3.2': Fix parsing of build_ext --libraries option (#1326113) http://hg.python.org/cpython/rev/53df93a9c002 New changeset f7163afecb97 by Éric Araujo in branch 'default': Merge

[issue1326113] Letting build_ext --libraries take more than one lib

2012-02-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 96f5718bf005 by Éric Araujo in branch '2.7': Fix parsing of build_ext --libraries option (#1326113) http://hg.python.org/cpython/rev/96f5718bf005 -- ___ Python tracker

[issue1326113] Letting build_ext --libraries take more than one lib

2012-02-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 4ba43318e56b by Éric Araujo in branch 'default': Fix parsing of packaging’s build_ext --libraries option (#1326113) http://hg.python.org/cpython/rev/4ba43318e56b -- ___

[issue1326113] Letting build_ext --libraries take more than one lib

2012-02-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 60dd0041c9bc by Éric Araujo in branch 'default': Fix parsing of build_ext --libraries option (#1326113) http://hg.python.org/distutils2/rev/60dd0041c9bc New changeset 158697fd8fa1 by Éric Araujo in branch 'python3':

[issue1326113] Letting build_ext --libraries take more than one lib

2012-02-15 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Here you are! Thanks for the testing. -- resolution: - fixed stage: test needed - committed/rejected status: open - closed versions: +Python 3.3 -Python 3.1 ___ Python tracker rep...@bugs.python.org

[issue1326113] Letting build_ext --libraries take more than one lib

2012-02-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 77ac369fbbf1 by Éric Araujo in branch '3.2': Fix test failure for shared builds caused by #1326113 fix http://hg.python.org/cpython/rev/77ac369fbbf1 -- ___ Python tracker

[issue1326113] Letting build_ext --libraries take more than one lib

2012-02-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 98fb1c0fc7a0 by Éric Araujo in branch 'default': Fix for packaging test failure on shared builds (#1326113) http://hg.python.org/cpython/rev/98fb1c0fc7a0 -- ___ Python

[issue1326113] Letting build_ext --libraries take more than one lib

2012-02-15 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset db1c52aa4d2a by Éric Araujo in branch '2.7': Fix test failure for shared builds caused by #1326113 fix http://hg.python.org/cpython/rev/db1c52aa4d2a -- ___ Python tracker

[issue1326113] Letting build_ext --libraries take more than one lib

2012-02-14 Thread Eric Snow
Eric Snow ericsnowcurren...@gmail.com added the comment: Ran into this bug today in 2.7 (building python-sybase with freetds). The fix in msg121260 took care of it (didn't try the patch). Thanks, Éric. Is this something that could get patched in the upcoming micro releases? It's not so

[issue1326113] Letting build_ext --libraries take more than one lib

2010-11-15 Thread Palm Kevin
Palm Kevin kevin.p...@labsolution.lu added the comment: This one is really annoying. Could you please consider fixing this one for the next release? (=lightweight change) -- nosy: +palm.kevin ___ Python tracker rep...@bugs.python.org

[issue1326113] Letting build_ext --libraries take more than one lib

2010-11-15 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: Distutils is frozen and we fix only bugs. This case is a little bit at the edge. Can you show us an example of a call you are trying to make, and the gcc command line output that fails ? I want to see if we can find a workaround. If so,

[issue1326113] Letting build_ext --libraries take more than one lib

2010-11-15 Thread Palm Kevin
Palm Kevin kevin.p...@labsolution.lu added the comment: I applied the patch proposed by slanger. This one is working. Now, I'm executing this instruction to build my extension: %pythonRoot%\python.exe setup.py build_ext --include-dirs C:\MyApp\include --library-dir C:\MyApp\lib --libraries

[issue1326113] Letting build_ext --libraries take more than one lib

2010-11-15 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Since --libraries is plural, and since the help text says: --libraries (-l) external C libraries to link with it should IMO be considered a bug. (Standard UNIX linkers have a different convention: you can specify -l several times in order

[issue1326113] Letting build_ext --libraries take more than one lib

2010-11-15 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I agree this is a bug: it’s a broken feature, not a new one, even if it can be argued that fixing a long-standing behavior enables new usages, and is thus comparable to a new feature. I found no mention of --libraries in the docs, so I looked

[issue1326113] Letting build_ext --libraries take more than one lib

2010-11-15 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I’ve reviewed other modules for the same error and found two candidates: config.libraries, the same thing as build_ext.libraries, and install.extra_path, for which I’m not sure. (More distutils2 thoughts: A number of options are split on

[issue1326113] Letting build_ext --libraries take more than one lib

2010-07-10 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.2 -Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1326113 ___

[issue1326113] Letting build_ext --libraries take more than one lib

2009-02-08 Thread Akira Kitada
Changes by Akira Kitada akit...@gmail.com: -- nosy: +tarek type: - feature request ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1326113 ___ ___

[issue1326113] Letting build_ext --libraries take more than one lib

2009-02-08 Thread Tarek Ziadé
Changes by Tarek Ziadé ziade.ta...@gmail.com: -- assignee: - tarek versions: +Python 2.7, Python 3.0, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1326113 ___

[issue1326113] Letting build_ext --libraries take more than one lib

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Another bug day task -- nosy: +tiran versions: +Python 2.6 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1326113 _ ___