[issue10262] Add --soabi option to `configure`

2013-11-10 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I think we've had plenty of time to adjust to the abi tags. Does anybody think that nearly 3 years later anything really needs to be done here? -- resolution: -> wont fix status: open -> closed ___ Python tracker

[issue10262] Add --soabi option to `configure`

2010-12-14 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Amaury, did you see my suggestion re $SOBASE and $SOEXTRA? Also, do you think you can write some tests, even if they only run on a single platform? I suspect the Makefile.pre.in part of the patch will have to be updated now. Please be sure to test your chan

[issue10262] Add --soabi option to `configure`

2010-12-14 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The soabi tag could be useful on Windows as well, for example if some package maintainer chooses another version of the compiler, or a custom version of MSVCRT. And FWIW, PyPy currently uses "--soabi=pypy-1.4" on all platforms: "import foo" will load f

[issue10262] Add --soabi option to `configure`

2010-12-14 Thread Matthias Klose
Matthias Klose added the comment: shouldn't that option work on platforms too, which currently default to not using the soabi? It would make sense for all posix, and macos, maybe not for Windows. -- ___ Python tracker

[issue10262] Add --soabi option to `configure`

2010-12-13 Thread R. David Murray
R. David Murray added the comment: What's the status of this? It sounds like it something that should be taken care of before the 3.2 release, but I know there has been other activity in this area and I haven't looked closely enough to understand the issues involved. -- nosy: +r.davi

[issue10262] Add --soabi option to `configure`

2010-11-30 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Let's test Linux at least, then. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue10262] Add --soabi option to `configure`

2010-11-30 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Nov 30, 2010, at 10:12 PM, Amaury Forgeot d'Arc wrote: >The value of get_config_var("SO") is the same as before, something like >".cpython-32.so" by default on Linux. (see, I just moved the line >SO=.$SOABI$SO at the bottom of the patch). Cool, thanks. >I

[issue10262] Add --soabi option to `configure`

2010-11-30 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: The value of get_config_var("SO") is the same as before, something like ".cpython-32.so" by default on Linux. (see, I just moved the line SO=.$SOABI$SO at the bottom of the patch). In the C file dynload_shlib.c, I chose the names SO_BASE for the "simple

[issue10262] Add --soabi option to `configure`

2010-11-30 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Of course, you don't change configure directly, you change configure.in and let autoconf update the configure (but you already know that I'm sure :). The patch looks fairly reasonable, though I haven't tried it. One question: does $SO have the same value af

[issue10262] Add --soabi option to `configure`

2010-11-29 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Here is a first patch that adds the "--with-soabi" option. --with-soabi=yes or --with-soabi sets SOABI to the computed value (cpython-32m when I tried it). This is the default behavior on Linux. --with-soabi=no or --without-soabi sets SOABI to t

[issue10262] Add --soabi option to `configure`

2010-11-29 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- title: Add --disable-abi-flags option to `configure` -> Add --soabi option to `configure` ___ Python tracker ___