Windows 上的 DPDK 独立构建对于示例应用程序失败
Standalone build of DPDK on Windows fails for examples application
通过带有选项 -Dexamples=
的 DPDK 介子构建示例应用程序 skeleton 或 l2fwd 或 l3fwd,创建二进制可执行文件而没有任何警告或错误。但是执行与独立构建相同的示例会导致 DPDK 构建错误
C:\dpdk\dpdk-21.02\examples\skeleton>gcc basicfwd.c -include rte_config.h -march=native -IC:/include -Wl,--as-needed -LC:/lib -lrte_cfgfile -lrte_hash -lrte_cmdline -lrte_pci -lrte_ethdev -lrte_meter -lrte_net -lrte_mbuf -lrte_mempool -lrte_rcu -lrte_ring -lrte_eal -lrte_telemetry -lrte_kvargs
In file included from C:/include/rte_eal.h:21,
from basicfwd.c:7:
C:/include/rte_bus.h:22:10: fatal error: sys/queue.h: No such file or directory
#include <sys/queue.h>
^~~~~~~~~~~~~
compilation terminated.
期望:
C:\dpdk\dpdk-21.02\examples\skeleton>dir
Directory of C:\dpdk\dpdk-21.02\examples\skeleton
<DIR> .
<DIR> ..
163,348 a.exe
5,458 basicfwd.c
1,511 Makefile
322 meson.build
重现错误的步骤
- 平台:x86_64,Intel E5 2680 Xeon
- OS: windows 服务器 2019
- DPDK 版本:21.02
- 介子版本:0.57.1
- 忍者版本:1.10.2
- Pkg-config 版本:0.26
- 遵循的步骤:http://doc.dpdk.org/guides/windows_gsg/index.html
- 编译器标志:执行
pkg-config --cflags --libs libdpdk
使用介子meson -Dexamples=l2fwd build
和meson build
时CFLAGS和LDFLAGS是有区别的。在前一种情况下,直接从 DPDK 根文件夹中拉取依赖项并直接 link 到 lib/librte_eal/windows/include
。但是,当 DPDK pkg 安装后,lib/librte_eal/windows/include
下的文件不会被复制过来,这会导致构建失败。
检查 lib/librte_eal/windows/
中的 meson.build
显示唯一的安装是 'rte_os.h'、'rte_virt2phys.h' 和 'rte_windows.h'。文件夹 'netinet' 和 'sys' 被跳过。根据 DPDK 维护者的更新,由于 windows 上的 DPDK 是实验性的,因此仅使用 meson -Dexamples=l2fwd build
完成验证。因此临时解决方法是使用 -I[DPDK folder]\lib\librte_eal\windows\include\
注:
- 感谢@stackinside 的评论
- 正在开发 DPDK 补丁以插入丢失的文件。
通过带有选项 -Dexamples=
的 DPDK 介子构建示例应用程序 skeleton 或 l2fwd 或 l3fwd,创建二进制可执行文件而没有任何警告或错误。但是执行与独立构建相同的示例会导致 DPDK 构建错误
C:\dpdk\dpdk-21.02\examples\skeleton>gcc basicfwd.c -include rte_config.h -march=native -IC:/include -Wl,--as-needed -LC:/lib -lrte_cfgfile -lrte_hash -lrte_cmdline -lrte_pci -lrte_ethdev -lrte_meter -lrte_net -lrte_mbuf -lrte_mempool -lrte_rcu -lrte_ring -lrte_eal -lrte_telemetry -lrte_kvargs
In file included from C:/include/rte_eal.h:21,
from basicfwd.c:7:
C:/include/rte_bus.h:22:10: fatal error: sys/queue.h: No such file or directory
#include <sys/queue.h>
^~~~~~~~~~~~~
compilation terminated.
期望:
C:\dpdk\dpdk-21.02\examples\skeleton>dir
Directory of C:\dpdk\dpdk-21.02\examples\skeleton
<DIR> .
<DIR> ..
163,348 a.exe
5,458 basicfwd.c
1,511 Makefile
322 meson.build
重现错误的步骤
- 平台:x86_64,Intel E5 2680 Xeon
- OS: windows 服务器 2019
- DPDK 版本:21.02
- 介子版本:0.57.1
- 忍者版本:1.10.2
- Pkg-config 版本:0.26
- 遵循的步骤:http://doc.dpdk.org/guides/windows_gsg/index.html
- 编译器标志:执行
pkg-config --cflags --libs libdpdk
使用介子meson -Dexamples=l2fwd build
和meson build
时CFLAGS和LDFLAGS是有区别的。在前一种情况下,直接从 DPDK 根文件夹中拉取依赖项并直接 link 到 lib/librte_eal/windows/include
。但是,当 DPDK pkg 安装后,lib/librte_eal/windows/include
下的文件不会被复制过来,这会导致构建失败。
检查 lib/librte_eal/windows/
中的 meson.build
显示唯一的安装是 'rte_os.h'、'rte_virt2phys.h' 和 'rte_windows.h'。文件夹 'netinet' 和 'sys' 被跳过。根据 DPDK 维护者的更新,由于 windows 上的 DPDK 是实验性的,因此仅使用 meson -Dexamples=l2fwd build
完成验证。因此临时解决方法是使用 -I[DPDK folder]\lib\librte_eal\windows\include\
注:
- 感谢@stackinside 的评论
- 正在开发 DPDK 补丁以插入丢失的文件。