We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b16ded commit 236b20fCopy full SHA for 236b20f
cmake/macros/configure_cesium_library.cmake
@@ -13,7 +13,8 @@ function(configure_cesium_library targetName)
13
14
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 13)
15
# Disable dangling-reference warning due to amount of false positives: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109642
16
- target_compile_options(${targetName} PRIVATE -Wno-dangling-reference)
+ # Also disable stringop-overflow warning which causes false positives when building with aarch64-linux-gnu-g++-13
17
+ target_compile_options(${targetName} PRIVATE -Wno-dangling-reference -Wno-stringop-overflow)
18
endif()
19
20
if (CESIUM_GLM_STRICT_ENABLED)
0 commit comments