GCC: Disabled the -Wsign-conversion. It is quite noisy.
This commit is contained in:
parent
dfba4b7332
commit
f5ebd779f8
4
Makefile
4
Makefile
|
@ -1,7 +1,11 @@
|
||||||
# This file is generated by tools/dmake, do not edit.
|
# This file is generated by tools/dmake, do not edit.
|
||||||
|
|
||||||
ifndef CXXFLAGS
|
ifndef CXXFLAGS
|
||||||
|
<<<<<<< HEAD
|
||||||
CXXFLAGS=-DHAVE_RULES -Wall -Wextra -Wshadow -pedantic -Wno-long-long -Wfloat-equal -Wcast-qual -Wsign-conversion -g
|
CXXFLAGS=-DHAVE_RULES -Wall -Wextra -Wshadow -pedantic -Wno-long-long -Wfloat-equal -Wcast-qual -Wsign-conversion -g
|
||||||
|
=======
|
||||||
|
CXXFLAGS=-DHAVE_DEPENDENCIES -Wall -Wextra -Wshadow -pedantic -Wno-long-long -Wfloat-equal -Wcast-qual -g
|
||||||
|
>>>>>>> qwe
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef CXX
|
ifndef CXX
|
||||||
|
|
|
@ -232,6 +232,7 @@ int main(int argc, char **argv)
|
||||||
// TODO: add more compiler warnings.
|
// TODO: add more compiler warnings.
|
||||||
// -Wlogical-op : doesn't work on older GCC
|
// -Wlogical-op : doesn't work on older GCC
|
||||||
// -Wconversion : too many warnings
|
// -Wconversion : too many warnings
|
||||||
|
// -Wsign-conversion : too many warnings
|
||||||
|
|
||||||
// The _GLIBCXX_DEBUG doesn't work in cygwin
|
// The _GLIBCXX_DEBUG doesn't work in cygwin
|
||||||
makeConditionalVariable(fout, "CXXFLAGS",
|
makeConditionalVariable(fout, "CXXFLAGS",
|
||||||
|
@ -243,7 +244,7 @@ int main(int argc, char **argv)
|
||||||
"-Wno-long-long "
|
"-Wno-long-long "
|
||||||
"-Wfloat-equal "
|
"-Wfloat-equal "
|
||||||
"-Wcast-qual "
|
"-Wcast-qual "
|
||||||
"-Wsign-conversion "
|
// "-Wsign-conversion "
|
||||||
// "-Wconversion "
|
// "-Wconversion "
|
||||||
"-g");
|
"-g");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue