We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15b555d commit ccc4b18Copy full SHA for ccc4b18
CMakeLists.txt
@@ -287,6 +287,12 @@ else()
287
set(QUIC_LOGGING_TYPE "lttng")
288
message(STATUS "Choosing lttng as default logging type for platform")
289
endif()
290
+
291
+ if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(arm|aarch64)$")
292
+ set(QUIC_LINUX_XDP_ENABLED OFF CACHE BOOL "XDP not supported on ARM architectures" FORCE)
293
+ else()
294
+ option(QUIC_LINUX_XDP_ENABLED "Enables XDP support" OFF)
295
+ endif()
296
297
elseif(CX_PLATFORM STREQUAL "darwin")
298
check_function_exists(sysctl HAS_SYSCTL)
0 commit comments