Skip to content

Commit cd24361

Browse files
authored
Add libarchive to CentOS 8 section (#2383)
Unfortunately cmake does't work without libarchive nor does it install it as a dependancy (probably it's a bug, see https://programmerah.com/solved-cmake-symbol-lookup-error-cmake-undefined-symbol-archive_write_add_filter_zstd-32832/). So, we have to install it manually. Otherwise we get: ``` [vagrant@localhost ~]$ cmake cmake: symbol lookup error: cmake: undefined symbol: archive_write_add_filter_zstd ```
1 parent 9f10fa0 commit cd24361

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/dev_guide/building_from_source.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ RHEL/CentOS 7
105105

106106
.. code-block:: console
107107
108-
$ yum install python-pip
109-
$ yum install epel-release
108+
$ yum install -y python-pip
109+
$ yum install -y epel-release
110110
111111
$ curl -s https://packagecloud.io/install/repositories/packpack/backports/script.rpm.sh | bash
112112
@@ -139,10 +139,10 @@ CentOS 8
139139

140140
.. code-block:: console
141141
142-
$ dnf install epel-release
142+
$ dnf install -y epel-release
143143
144-
$ dnf install -y git gcc cmake3 make gcc-c++ zlib-devel readline-devel \
145-
ncurses-devel openssl-devel libunwind-devel libicu-devel \
144+
$ dnf install -y git gcc cmake3 libarchive make gcc-c++ zlib-devel \
145+
readline-devel ncurses-devel openssl-devel libunwind-devel libicu-devel \
146146
python3-pyyaml python3-six python3-gevent
147147
148148
$ git clone https://github.com/tarantool/tarantool.git --recursive

0 commit comments

Comments
 (0)