Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は GCC 4.8 を使用して C でプロジェクトを作成しており、すべての警告を表示したい (それらを排除したい) が、問題は #include であるということです。壁のオプション。それらを修正する方法はなく、実際に書いたり維持したりするコードに焦点を当てて無視したいだけです。
私も:
gcc -Wall-excluding-OldBlackBox.c -myproject.c ?
Update your makefile so that you have a different gcc -Wxxx line for different files (or groups of files)
result.exe : xxx.o yyy.o gcc -o result.exe xxx.o yyy.o xxx.o : xxx.c gcc -Wall xxx.c yyy.o : yyy.c gcc -W yyy.c