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 akitada
Recipients akitada
Date 2008-11-20.18:20:38
SpamBayes Score 1.51801e-05
Marked as misclassified No
Message-id <1227205239.88.0.419191399789.issue4370@psf.upfronthosting.co.za>
In-reply-to
Content
Some compilers don't understand "%zd" format specifer
and gcc 2.95.4 is one of them.
(You can find more on http://www.and.org/vstr/printf_comparison)

When building Python with such compilers, you will see a lot of
"warning: unknown conversion type character `z' in format" messages.
This is not a big issue but I think this can be fixed by using autoconf
right way because configure script seems checking availability of "zd".

  "checking for %zd printf() format support"

So I suppose there is a way to eliminate this warning completely.
History
Date User Action Args
2008-11-20 18:20:40akitadasetrecipients: + akitada
2008-11-20 18:20:39akitadasetmessageid: <1227205239.88.0.419191399789.issue4370@psf.upfronthosting.co.za>
2008-11-20 18:20:39akitadalinkissue4370 messages
2008-11-20 18:20:38akitadacreate