We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cf8aed commit f8a5501Copy full SHA for f8a5501
sqlite/CMakeLists.txt
@@ -44,6 +44,9 @@ if (GCC OR CLANG)
44
if (CLANG)
45
target_compile_options(tdsqlite PRIVATE -Wno-parentheses-equality -Wno-unused-value)
46
endif()
47
+ if (GCC AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 10.0))
48
+ target_compile_options(tdsqlite PRIVATE -Wno-return-local-addr -Wno-stringop-overflow)
49
+ endif()
50
elseif (MSVC)
51
target_compile_options(tdsqlite PRIVATE /wd4996)
52
0 commit comments