| Submitter | Blue Swirl |
|---|---|
| Date | Sept. 10, 2010, 9 p.m. |
| Message ID | <AANLkTi=-OU7CojDscaY=j7ujcoPEHUj9XrfRsnD=ih15@mail.gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/64466/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/configure b/configure index 4061cb7..29d3548 100755 --- a/configure +++ b/configure @@ -138,7 +138,7 @@ QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" QEMU_CFLAGS="-I. -I\$(SRC_PATH) $QEMU_CFLAGS" LDFLAGS="-g $LDFLAGS" -gcc_flags="-Wold-style-declaration -Wold-style-definition -fstack-protector-all" +gcc_flags="-Wold-style-declaration -Wold-style-definition -Wtype-limits -fstack-protector-all" cat > $TMPC << EOF int main(void) { return 0; } EOF
If the compiler supports the warning flag -Wtype-limits, use it. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)