Bug#499251: gcc -MMD erroneously regards missing #includes as only warnings

2010-05-30 Thread Matthias Klose
tag 499251 + upstream tag 499251 + fixed-upstream tag 499251 + wontfix reassign 499251 cpp-4.4 retitle 499251 [fixed in 4.5] gcc -MMD erroneously regards missing #includes as only warnings thanks -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe".

Bug#499251: gcc -MMD erroneously regards missing #includes as only warnings

2008-09-17 Thread Ian Jackson
Package: cpp-4.1 Version: 4.1.1-21 mariner:~/junk> cat t.c #include int x; mariner:~/junk> gcc-4.1 -c -MD t.c && echo hi t.c:1:25: error: nonexistent.h: No such file or directory mariner:~/junk> gcc-4.1 -c -MMD t.c && echo hi t.c:1:25: warning: nonexistent.h: No such file or directory hi mariner: