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 Marc.Abramowitz
Recipients Garen, Marc.Abramowitz, belopolsky, benjamin.peterson, danchr, dhduvall, dmalcolm, eric.snow, fche, glyph, hazmat, jbaker, jcea, jmcp, laca, lasizoillo, loewis, mjw, movement, neologix, pitrou, rhettinger, robert.kern, ronaldoussoren, scox, serverhorror, sirg3, techtonik, twleung, wsanchez
Date 2012-02-22.08:00:17
SpamBayes Score 0.00012737814
Marked as misclassified No
Message-id <1329897618.33.0.243620355468.issue13405@psf.upfronthosting.co.za>
In-reply-to
Content
With an hg checkout, I don't run into the `offsetof` problem - it fails when it gets to calling dtrace to generate Python/dtrace.o (again -G is the culprit).

```
$ hg clone https://hg.jcea.es/cpython-2011/
$ cd cpython-2011
$ hg update dtrace-issue13405_2.7
$ ./configure --prefix=/Users/marca/custom --enable-shared --with-dtrace
...
$ make
...
$ make
if test "dtrace" != "" ; then \
		dtrace -o Python/dtrace.o -64 \
			-C -G -s ./Include/pydtrace.d \
				Python/ceval.o Modules/gcmodule.o \
				Objects/classobject.o Objects/typeobject.o; \
	else    touch Python/dtrace.o ; \
	fi;
dtrace: ignored option -- 64
Usage: dtrace [-aACeFHlqSvVwZ] [-arch i386|x86_64] [-b bufsz] [-c cmd] [-D name[=def]]
	[-I path] [-L path] [-o output] [-p pid] [-s script] [-U name]
	[-x opt[=val]]
...
```
History
Date User Action Args
2012-02-22 08:00:18Marc.Abramowitzsetrecipients: + Marc.Abramowitz, loewis, rhettinger, jcea, ronaldoussoren, belopolsky, pitrou, wsanchez, movement, techtonik, benjamin.peterson, serverhorror, glyph, laca, twleung, jbaker, robert.kern, sirg3, danchr, dhduvall, dmalcolm, mjw, Garen, neologix, lasizoillo, fche, hazmat, eric.snow, jmcp, scox
2012-02-22 08:00:18Marc.Abramowitzsetmessageid: <1329897618.33.0.243620355468.issue13405@psf.upfronthosting.co.za>
2012-02-22 08:00:17Marc.Abramowitzlinkissue13405 messages
2012-02-22 08:00:17Marc.Abramowitzcreate