[issue24116] --with-pydebug has no effect when the final python binary is compiled

2021-12-13 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bu

[issue24116] --with-pydebug has no effect when the final python binary is compiled

2019-04-10 Thread Inada Naoki
Inada Naoki added the comment: gcc is not compiler, but linker when `-o python`. So LDFLAGS is used instead of CFLAGS. I don't think we can document and maintain all configure & make behavior. I'm +1 on close this. -- nosy: +inada.naoki ___ Python

[issue24116] --with-pydebug has no effect when the final python binary is compiled

2019-04-10 Thread Cheryl Sabella
Cheryl Sabella added the comment: If this is a documentation issue on the build, then I think this issue should be moved to the devguide repo on GitHub. I'm not sure if it's still unclear though, so maybe this could just be closed? -- nosy: +cheryl.sabella _

[issue24116] --with-pydebug has no effect when the final python binary is compiled

2015-05-04 Thread Skip Montanaro
Skip Montanaro added the comment: > It's confusing that the CFLAGS specified when running make are passed further > sometimes but not always. So I guess that's a workaround? Or CFLAGS should > never be specified to make directly? In my experience, all the magic happens in configure. Most of th

[issue24116] --with-pydebug has no effect when the final python binary is compiled

2015-05-03 Thread R. David Murray
R. David Murray added the comment: Sounds like this is a duplicate of issue 9189? (--with-pydebug certainly works for me). -- nosy: +r.david.murray ___ Python tracker ___ _

[issue24116] --with-pydebug has no effect when the final python binary is compiled

2015-05-03 Thread aleb
aleb added the comment: It's confusing that the CFLAGS specified when running make are passed further sometimes but not always. So I guess that's a workaround? Or CFLAGS should never be specified to make directly? -- ___ Python tracker

[issue24116] --with-pydebug has no effect when the final python binary is compiled

2015-05-03 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Set CFLAGS when calling configure, not make. -- nosy: +Arfrever ___ Python tracker ___

[issue24116] --with-pydebug has no effect when the final python binary is compiled

2015-05-03 Thread aleb
New submission from aleb: This is how I configure and build: $ ./configure --prefix=/usr \ --with-threads \ --with-computed-gotos \ --enable-ipv6 \ --with-system-expat \ --with-dbmliborder=gdbm:ndbm \ --with-syst