[issue11667] 'configure' script overrides users setting of CFLAGS

2011-03-28 Thread David Kirkby

David Kirkby david.kir...@onetel.net added the comment:

Yes, I think this could do with being documented, as it is not obvious. 
Generally one would expect CFLAGS to do this, and not OPT.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11667
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11667] 'configure' script overrides users setting of CFLAGS

2011-03-25 Thread Amaury Forgeot d'Arc

Amaury Forgeot d'Arc amaur...@gmail.com added the comment:

You should override the OPT variable as well. I tried:

$ CFLAGS= OPT=-fwrapv -O3 -Wall ./configure

Then make shows lines like:

gcc -pthread -c -fno-strict-aliasing  -DNDEBUG -fwrapv -O3 -Wall  -I. -IInclude 
-I./Include   -DPy_BUILD_CORE -o Modules/python.o ./Modules/python.c

--
nosy: +amaury.forgeotdarc
resolution:  - works for me
status: open - pending

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11667
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11667] 'configure' script overrides users setting of CFLAGS

2011-03-25 Thread David Kirkby

David Kirkby david.kir...@onetel.net added the comment:

Thank you. That solved it, so you can close this.

--
status: pending - open

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11667
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11667] 'configure' script overrides users setting of CFLAGS

2011-03-25 Thread Amaury Forgeot d'Arc

Changes by Amaury Forgeot d'Arc amaur...@gmail.com:


--
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11667
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11667] 'configure' script overrides users setting of CFLAGS

2011-03-25 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Is this worth a README or doc update?

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11667
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11667] 'configure' script overrides users setting of CFLAGS

2011-03-24 Thread David Kirkby

New submission from David Kirkby david.kir...@onetel.net:

I'm trying to build a version of Python *without* debugging information.

The reason for me wanting to do this is because there is a bug which is either 
in gcc or AIX , that prevents recently patched versions of AIX building code 
where there are static variables that are unitilized. 

So I have tried 

$ export CFLAGS=-g0
$export CXXFLAGS=-g0

The -g0 should disable debugging information. But instead the option occurs 
before the automatically inserted options, so I see:

gcc -c -fno-strict-aliasing -g0 -DNDEBUG -g -fwrapv -O3 -Wall 
-Wstrict-prototypes  -I. -IInclude -I./Include   -DPy_BUILD_CORE -o 
Parser/pgen.o Parser/pgen.c

Because of this, the -g overrides the -g0 and I get debugging information. 

Is there any way to not add -g when building Python?

--
components: Installation
messages: 132056
nosy: drkirkby
priority: normal
severity: normal
status: open
title: 'configure' script overrides users setting of CFLAGS
type: behavior
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11667
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com