diff options
-rw-r--r-- | expat/StaticLibrary_expat.mk | 5 | ||||
-rw-r--r-- | ucpp/Executable_ucpp.mk | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/expat/StaticLibrary_expat.mk b/expat/StaticLibrary_expat.mk index 2501d72dbc7e..2f754526b6e9 100644 --- a/expat/StaticLibrary_expat.mk +++ b/expat/StaticLibrary_expat.mk @@ -42,6 +42,11 @@ $(eval $(call gb_StaticLibrary_add_defs,expat,\ )) endif +# suppress warning spam +$(eval $(call gb_StaticLibrary_add_cflags,expat,\ + -w \ +)) + $(eval $(call gb_StaticLibrary_add_generated_cobjects,expat,\ UnpackedTarball/expat/lib/xmlparse \ UnpackedTarball/expat/lib/xmlrole \ diff --git a/ucpp/Executable_ucpp.mk b/ucpp/Executable_ucpp.mk index 325d4149598e..a2e64e644eed 100644 --- a/ucpp/Executable_ucpp.mk +++ b/ucpp/Executable_ucpp.mk @@ -19,6 +19,12 @@ $(eval $(call gb_Executable_add_defs,ucpp,\ -DSTAND_ALONE \ )) +# suppress warning spam +$(eval $(call gb_Executable_add_cflags,ucpp,\ + -w \ +)) + + $(eval $(call gb_Executable_add_generated_cobjects,ucpp,\ UnpackedTarball/ucpp/assert \ UnpackedTarball/ucpp/cpp \ |