01b47ef4acdab08b36d952985993064d6d43d66d
[platform/core/ml/nnfw.git] / infra / nnfw / cmake / buildtool / config / config_linux.cmake
1 #
2 # linux common compile options
3 #
4
5 # Remove warning: ignoring attributes on template argument (ACL, Eigen, etc)
6 # https://github.com/ARM-software/ComputeLibrary/issues/330
7 set(FLAGS_CXXONLY ${FLAGS_CXXONLY} "-Wno-ignored-attributes")
8
9 # Disable annoying ABI compatibility warning.
10 if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0)
11   list(APPEND FLAGS_CXXONLY "-Wno-psabi")
12 endif()