This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-kni/cmake/FindLIBBPF.cmake
luwenpeng f7ea81dad8 TSG-10254 eBPF支持二元组分流
TSG-10527 eBPF支持四元组分流
TSG-10369 KNI多线程在TAP模式下支持eBPF分流
2022-05-31 17:38:42 +08:00

8 lines
149 B
CMake

include(FindPkgConfig)
pkg_check_modules(LIBBPF libbpf)
if(LIBBPF_FOUND)
set(SUPPORT_BPF true)
else()
set(SUPPORT_BPF false)
endif()