mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-21 23:33:07 +00:00
Merge pull request #8586 from in0rdr/fix/libffi-dev
doc(installation): add libffi-dev dependency
This commit is contained in:
commit
690ffd1454
1 changed files with 4 additions and 0 deletions
|
@ -168,6 +168,7 @@ following dependencies first:
|
||||||
- liblz4_ >= 1.7.0 (r129)
|
- liblz4_ >= 1.7.0 (r129)
|
||||||
- libzstd_ >= 1.3.0
|
- libzstd_ >= 1.3.0
|
||||||
- libxxhash >= 0.8.1 (0.8.0 might work also)
|
- libxxhash >= 0.8.1 (0.8.0 might work also)
|
||||||
|
- libffi (required for argon2-cffi-bindings)
|
||||||
* pkg-config (cli tool) and pkgconfig python package (borg uses these to
|
* pkg-config (cli tool) and pkgconfig python package (borg uses these to
|
||||||
discover header and library location - if it can't import pkgconfig and
|
discover header and library location - if it can't import pkgconfig and
|
||||||
is not pointed to header/library locations via env vars [see setup.py],
|
is not pointed to header/library locations via env vars [see setup.py],
|
||||||
|
@ -203,6 +204,7 @@ Install the dependencies with development headers::
|
||||||
libacl1-dev libacl1 \
|
libacl1-dev libacl1 \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
liblz4-dev libzstd-dev libxxhash-dev \
|
liblz4-dev libzstd-dev libxxhash-dev \
|
||||||
|
libffi-dev \
|
||||||
build-essential \
|
build-essential \
|
||||||
pkg-config python3-pkgconfig
|
pkg-config python3-pkgconfig
|
||||||
sudo apt-get install libfuse-dev fuse # needed for llfuse
|
sudo apt-get install libfuse-dev fuse # needed for llfuse
|
||||||
|
@ -221,6 +223,7 @@ Install the dependencies with development headers::
|
||||||
libacl-devel libacl \
|
libacl-devel libacl \
|
||||||
openssl-devel \
|
openssl-devel \
|
||||||
lz4-devel libzstd-devel xxhash-devel \
|
lz4-devel libzstd-devel xxhash-devel \
|
||||||
|
libffi-devel \
|
||||||
pkgconf python3-pkgconfig
|
pkgconf python3-pkgconfig
|
||||||
sudo dnf install gcc gcc-c++ redhat-rpm-config
|
sudo dnf install gcc gcc-c++ redhat-rpm-config
|
||||||
sudo dnf install fuse-devel fuse # needed for llfuse
|
sudo dnf install fuse-devel fuse # needed for llfuse
|
||||||
|
@ -237,6 +240,7 @@ Alternatively, you can enumerate all build dependencies in the command line::
|
||||||
|
|
||||||
sudo zypper install python3 python3-devel \
|
sudo zypper install python3 python3-devel \
|
||||||
libacl-devel openssl-devel xxhash-devel libzstd-devel liblz4-devel \
|
libacl-devel openssl-devel xxhash-devel libzstd-devel liblz4-devel \
|
||||||
|
libffi-devel \
|
||||||
python3-Cython python3-Sphinx python3-msgpack-python python3-pkgconfig pkgconf \
|
python3-Cython python3-Sphinx python3-msgpack-python python3-pkgconfig pkgconf \
|
||||||
python3-pytest python3-setuptools python3-setuptools_scm \
|
python3-pytest python3-setuptools python3-setuptools_scm \
|
||||||
python3-sphinx_rtd_theme gcc gcc-c++
|
python3-sphinx_rtd_theme gcc gcc-c++
|
||||||
|
|
Loading…
Reference in a new issue