[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2020-12-02 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: -> resolved status: pending -> closed ___ Python tracker ___ ___

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2020-11-06 Thread Irit Katriel
Irit Katriel added the comment: I think this was resolved by issue9189. -- nosy: +iritkatriel status: open -> pending ___ Python tracker ___

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2014-06-13 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still relevant as GCC 4.9.0 was released on April 22, 2014? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8535 ___

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2010-04-29 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: Matthias Klose wrote: Matthias Klose d...@debian.org added the comment: It's probably better to just pass OPT to the linker instead. not enough, because -fno-strict-aliasing might be passed in BASE_CFLAGS. Shouldn't

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2010-04-29 Thread Matthias Klose
Matthias Klose d...@debian.org added the comment: my understanding is that the builder is allowed to overwrite OPT, but not BASE_CFLAGS. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8535

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2010-04-28 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: LDSHARED not always is compiler and I'm not sure that linkers always accept compiler flags . After fix of issue xxx about CFLAGS and issues a, b, c, for LDFLAGS now all is passed to python build system and users could set argument to

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2010-04-26 Thread Matthias Klose
New submission from Matthias Klose d...@debian.org: Building with -flto (GCC 4.5.0) requires passing the very same optimization flags to the linker (lto1) as well. The attached patch just does this. Tested on Linux only, I don't know what will/could break on on other systems/compilers.

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2010-04-26 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: Matthias Klose wrote: New submission from Matthias Klose d...@debian.org: Building with -flto (GCC 4.5.0) requires passing the very same optimization flags to the linker (lto1) as well. The attached patch just does this. Tested on

[issue8535] passing optimization flags to the linker required for builds with gcc -flto

2010-04-26 Thread Matthias Klose
Matthias Klose d...@debian.org added the comment: It's probably better to just pass OPT to the linker instead. not enough, because -fno-strict-aliasing might be passed in BASE_CFLAGS. -- ___ Python tracker rep...@bugs.python.org