This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tebeka
Recipients gvanrossum, loewis, tebeka
Date 2007-11-16.19:05:17
SpamBayes Score 0.607932
Marked as misclassified No
Message-id <1195239918.15.0.374957906256.issue1453@psf.upfronthosting.co.za>
In-reply-to
Content
I'll try to be clearer:
`./configure --help` states (at the end):
    Some influential environment variables:
      CC          C compiler command
      CFLAGS      C compiler flags
      LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries  in a
                  nonstandard directory <lib dir>
      CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
                  headers in a nonstandard directory <include dir>
      CPP         C preprocessor

    Use these variables to override the choices made by `configure' or
to help
    it to find libraries and programs with nonstandard names/locations.

What I've tried to do is compile Python with gprof, adding the -pg flag.
So I ran `CFLAGS=-pg ./configure`, the resulting Makefile did not
contained the -pg in the CFLAGS (or OPT) variables.

Using `make CFLAGS=XXX` will override the CFLAGS definition in the
Makefile, I just want to add to it.
History
Date User Action Args
2007-11-16 19:05:18tebekasetspambayes_score: 0.607932 -> 0.607932
recipients: + tebeka, gvanrossum, loewis
2007-11-16 19:05:18tebekasetspambayes_score: 0.607932 -> 0.607932
messageid: <1195239918.15.0.374957906256.issue1453@psf.upfronthosting.co.za>
2007-11-16 19:05:18tebekalinkissue1453 messages
2007-11-16 19:05:17tebekacreate