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 ecff942 commit 6eccb54Copy full SHA for 6eccb54
CMakeLists.txt
@@ -41,6 +41,13 @@ check_type_size("int" SIZEOF_INT)
41
# NOTE: This `-O2` is crucial for preventing eBPF program verification errors.
42
add_compile_options(-Wall -Wextra -Werror -O2)
43
44
+# NOTE: Add `-Wno-maybe-uninitialized` for g++ due to some issue with the libraries
45
+# in the GitHub runner.
46
+# https://github.com/netarch/neo/actions/runs/10068822841/job/27834817300
47
+if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
48
+ add_compile_options(-Wno-maybe-uninitialized)
49
+endif()
50
+
51
#
52
# release/debug compile flags
53
0 commit comments