如何修复在 Github 操作中构建 Rust 时出现“找不到 -lpcap”错误?

问题描述 投票:0回答:1

我在 Github 上有一个小型 Rust 项目,我添加了一个

rust.yml
文件用于构建项目并自动运行测试的操作。

编译时构建崩溃

libc v0.2.153
,如下所示:

note: /usr/bin/ld: cannot find -lpcap: No such file or directory

我用于操作的 YAML 文件是 Github 提供的基本 Rust 文件:

name: Rust

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose

我需要向文件添加一些库或路径吗?

github rust github-actions linker-errors libpcap
1个回答
2
投票

我需要安装

libpcap-dev

在构建步骤之前将其添加到 YAML 文件的作业构建部分:

    - name: Install libpcap
      run: sudo apt-get update && sudo apt-get install -y libpcap-dev
© www.soinside.com 2019 - 2024. All rights reserved.