X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2FCMakeLists.txt;h=fb4463e332e58801b43a71aff5612442023a0495;hb=000a4ebed7d4097b88869a336a311f49873f8cf7;hp=2fb0703e1748451c9788b36f830c7cb830e64540;hpb=abd5669422c5805da5135496d5e5a394fa5aa602;p=vpp.git diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2fb0703e174..fb4463e332e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -55,6 +55,10 @@ elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU") if (CMAKE_C_COMPILER_VERSION VERSION_LESS MIN_SUPPORTED_GNU_C_COMPILER_VERSION) set(COMPILER_TOO_OLD TRUE) endif() + set(GCC_STRING_OVERFLOW_WARNING_DISABLE_VERSION 10.0.0) + if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL GCC_STRING_OVERFLOW_WARNING_DISABLE_VERSION) + add_compile_options(-Wno-stringop-overflow) + endif() else() message(WARNING "WARNING: Unsupported C compiler `${CMAKE_C_COMPILER_ID}` is used") set (PRINT_MIN_C_COMPILER_VER TRUE)