登录 注册
当前位置:主页 > 资源下载 > 31 > Rust-dpdk: Rust为DPDK提供绑定支持

Rust-dpdk: Rust为DPDK提供绑定支持

  • 更新:2024-11-03 18:46:15
  • 大小:243KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

锈-dpdk Rust-Dpdk是使用Rust语言包装 API的实验性原型。 建造 首先,请按照设置DPDK开发环境。 $ CONFIG_RTE_BUILD_COMBINE_LIBS=y EXTRA_CFLAGS="-fPIC -O0 -g -ggdb" make install T=x86_64-native-linuxapp-gcc -j 4 并使用RTE_SDK变量构建rust-dpdk : $ RTE_SDK= cargo build 例子 extern crate rte; use std :: env; use std :: ptr; use std :: os :: raw :: c_void; use rte :: * ; extern "C" fn lcore_hello (_: * const c_void) -> i32 { p