Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gatekeeper: add pkg-config as package dependency #667

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ jobs:
run: sudo apt-get update

- name: Install dependencies
run: sudo apt-get -y -q install git clang devscripts doxygen libhugetlbfs-bin build-essential gcc-multilib linux-headers-`uname -r` libmnl0 libmnl-dev libkmod2 libkmod-dev libnuma-dev libelf1 libelf-dev libc6-dev-i386 autoconf flex bison libncurses5-dev libreadline-dev python libcap-dev libcap2 meson ninja-build
run: >
sudo apt-get -y -q install git clang devscripts doxygen
libhugetlbfs-bin build-essential gcc-multilib linux-headers-`uname -r`
libmnl0 libmnl-dev libkmod2 libkmod-dev libnuma-dev libelf1 libelf-dev
libc6-dev-i386 autoconf flex bison libncurses5-dev libreadline-dev
python libcap-dev libcap2 meson ninja-build pkg-config

- name: Setup Gatekeeper
run: sudo ./setup.sh
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ $ sudo apt-get -y -q install git clang devscripts doxygen libhugetlbfs-bin \
build-essential gcc-multilib linux-headers-`uname -r` libmnl0 libmnl-dev \
libkmod2 libkmod-dev libnuma-dev libelf1 libelf-dev libc6-dev-i386 \
autoconf flex bison libncurses5-dev libreadline-dev python \
libcap-dev libcap2 meson ninja-build
libcap-dev libcap2 meson ninja-build pkg-config
```

Note: Both `libmnl0` and `libmnl-dev` are needed to compile and run
Expand All @@ -208,6 +208,7 @@ build Gatekeeper Debian packages.
`libcap-dev` is needed to compile Gatekeeper, but only `libcap2` is needed
to run Gatekeeper.
`meson` and `ninja-build` are needed for building DPDK.
`pkg-config` is needed to compile Gatekeeper.

To use DPDK, make sure you have all of the [environmental requirements](http://dpdk.org/doc/guides/linux_gsg/sys_reqs.html#running-dpdk-application).

Expand Down
Loading