[issue14774] _sysconfigdata.py doesn't support multiple build configurations

2012-10-13 Thread Trent Nelson
Trent Nelson added the comment: I'm pretty sure this is a duplicate of http://bugs.python.org/issue15298 (which should be fixed shortly). Feel free to re-open if I'm wrong. -- nosy: +trent resolution: -> duplicate status: open -> closed ___ Python

[issue14774] _sysconfigdata.py doesn't support multiple build configurations

2012-09-04 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue14774] _sysconfigdata.py doesn't support multiple build configurations

2012-05-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Is there a way of fixing this whilst keeping it a python file? Or do > we need to build from a C file, perhaps? Well I hope we don't make it a C file just for that reason. It would complicate the generation code quite a bit (right now it's just 3 lines long

[issue14774] _sysconfigdata.py doesn't support multiple build configurations

2012-05-10 Thread Éric Araujo
Éric Araujo added the comment: Would always recreating _sysconfigdata.py solve the problem? -- ___ Python tracker ___ ___ Python-bugs

[issue14774] _sysconfigdata.py doesn't support multiple build configurations

2012-05-10 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue14774] _sysconfigdata.py doesn't support multiple build configurations

2012-05-10 Thread Dave Malcolm
Dave Malcolm added the comment: Note to self: workaround is to rm ../../Lib/_sysconfigdata.py || make ../../Lib/_sysconfigdata.py before running my tests in either configuration, to force the file to be regenerated using what "make" thinks the settings are -- ___

[issue14774] _sysconfigdata.py doesn't support multiple build configurations

2012-05-10 Thread Dave Malcolm
New submission from Dave Malcolm : When building from source, if I create multiple configuration directories and build from there e.g.: mkdir configs cd configs mkdir config-A cd config-A ../../configure make cd .. mkdir config-B cd config-B ../../configure --enable-shared make cd ../config-A .