You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
438 B
21 lines
438 B
2 years ago
|
# general clang warnings flags
|
||
|
-Wall
|
||
|
-Warray-bounds
|
||
|
-Wcast-qual
|
||
|
-Wconversion
|
||
|
-Wdouble-promotion
|
||
|
-Wextra
|
||
|
-Wformat=2
|
||
|
-Wframe-larger-than=16384
|
||
|
-Wimplicit-fallthrough
|
||
|
-Wnull-dereference
|
||
|
-Wunused-const-variable
|
||
|
-Wwrite-strings
|
||
|
-Wpedantic
|
||
|
-Wvolatile-register-var
|
||
|
# NOTE: Due to the divergence in the C and C++, we're dropping support for
|
||
|
# compiling the C library with a C++ compiler and dropping the -Wc++-compat
|
||
|
# warning.
|
||
|
#
|
||
|
-Wno-c++-compat
|