Message114081
This is what happens. In the Makefile, I have:
CONFIGURE_LDFLAGS= -fprofile-arcs
PY_LDFLAGS= $(CONFIGURE_LDFLAGS) $(LDFLAGS)
But since LDFLAGS=-fprofile-arcs is in the environment, too, we get the
duplication.
The sysconfig issue is related. In Lib/sysconfig.py, _parse_makefile
grabs LDFLAGS from the environment if it is set, so LDFLAGS ultimately
expands to '-fprofile-arcs -fprofile-arcs'. |
|
Date |
User |
Action |
Args |
2010-08-16 22:08:13 | skrah | set | recipients:
+ skrah, lemburg, loewis, brett.cannon, ronaldoussoren, mark.dickinson, pitrou, jyasskin, tarek, eric.araujo, Arfrever |
2010-08-16 22:08:13 | skrah | set | messageid: <1281996493.42.0.580506698914.issue9189@psf.upfronthosting.co.za> |
2010-08-16 22:08:11 | skrah | link | issue9189 messages |
2010-08-16 22:08:11 | skrah | create | |
|