chiark / gitweb /
build: add -Wno-format-signedness
authorDavid Herrmann <dh.herrmann@gmail.com>
Tue, 24 Feb 2015 14:59:06 +0000 (15:59 +0100)
committerDavid Herrmann <dh.herrmann@gmail.com>
Tue, 24 Feb 2015 15:02:32 +0000 (16:02 +0100)
commit0a98d66159e474915afd6597d3aa444a698fdd2d
tree7680900b9432abee4407f583b6362d4b86dff62e
parenta804d849b3c2199bc25d1d4e65fc119fa4d7d0e2
build: add -Wno-format-signedness

gcc5 introduced this option (gcc4 silently ignores it, which is fine).
Given that gcc5 thinks 'unsigned char'/'unsigned short' is promoted to
'int' for var-args, stuff like this spits out warnings:
    uint8_t x;
    printf("%" PRIu8", x);

gcc5 promots 'x' to 'int', instead of 'unsigned int' and thus gets a
signedness-warnings as it expects an 'unsigned int'.

glibc states otherwise: unsigneds are always promoted to 'unsigned int'.
Until gcc and glibc figure this out, lets just ignore that warning (which
is totally useless in its current form).
configure.ac