我运行最新的 debian 测试(使用内核 4.19)。
在我的系统上找不到助手(但它们存在于标题中,Qt 跳转到它们)
#include "bpf/bpf.h"
int main (){
int r = bpf_create_map(BPF_MAP_TYPE_ARRAY,1,1,1,0);
return 0;
}
编译结果为
undefined reference to `bpf_create_map(bpf_map_type, int, int, int, unsigned int)'
编译
g++ -c -pipe -g -std=gnu++1z -Wall -W -fPIC -DQT_QML_DEBUG -I. -I../../Qt/5.13.0/gcc_64/mkspecs/linux-g++ -o main.o main.cpp
g++ -lbpf -o server main.o
结果相同
g++ main.cpp -lbpf -o out
我也安装了 libbpf-dev 并且我有相关的库(一个等等)。
怎么了?
更新
即使下面的代码也行不通
#include <linux/bpf.h>
int main (){
//int r = bpf_create_map(BPF_MAP_TYPE_ARRAY,1,1,1,0);
bpf_attr attr = {};
attr.map_type = BPF_MAP_TYPE_ARRAY;
attr.key_size = 1;
attr.value_size = 1;
attr.max_entries = 1;
bpf(BPF_MAP_CREATE, &attr, sizeof(attr));
return 0;
}
结果是
error: 'bpf' was not declared in this scope
更新2:
顺便说一句,密钥大小被规定为 4 而不是 1;但除此之外,这与我的问题无关。