@@ -25,9 +25,12 @@ the preferences can differ. But strategically the steps are always the same.
25
25
* `ReadLine <http://www.gnu.org/software/readline/ >`_ library, any version
26
26
* `ncurses <https://www.gnu.org/software/ncurses/ >`_ library, any version
27
27
* `OpenSSL <https://www.openssl.org >`_ library, version 1.0.1+
28
- * `cURL <https://curl.haxx.se/ >`_ library, version 0.725+
29
28
* `LibYAML <http://pyyaml.org/wiki/LibYAML >`_ library, version 0.1.4+
30
29
* `ICU <http://site.icu-project.org/download >`_ library, recent version
30
+ * `Autoconf <https://www.gnu.org/software/autoconf/ >`_ library, any version
31
+ * `Automake <https://www.gnu.org/software/automake/ >`_ library, any version
32
+ * `Libtool <https://www.gnu.org/software/libtool/ >`_ library, any version
33
+ * `Zlib-devel <https://www.zlib.net/ >`_ library, any version
31
34
32
35
* Python and modules. |br | Python interpreter is not necessary for building
33
36
Tarantool itself, unless you intend to use the "Run the test suite"
@@ -47,8 +50,9 @@ the preferences can differ. But strategically the steps are always the same.
47
50
.. code-block :: console
48
51
49
52
$ apt install -y build-essential cmake coreutils sed \
53
+ autoconf automake libtool zlib1g-dev \
50
54
libreadline-dev libncurses5-dev libyaml-dev libssl-dev \
51
- libcurl4-openssl-dev libunwind-dev libicu-dev \
55
+ libunwind-dev libicu-dev \
52
56
python python-pip python-setuptools python-dev \
53
57
python-msgpack python-yaml python-argparse python-six python-gevent
54
58
@@ -57,8 +61,9 @@ the preferences can differ. But strategically the steps are always the same.
57
61
.. code-block :: console
58
62
59
63
$ yum install -y gcc gcc-c++ cmake coreutils sed \
64
+ autoconf automake libtool zlib-devel \
60
65
readline-devel ncurses-devel libyaml-devel openssl-devel \
61
- libcurl-devel libunwind-devel libicu-devel \
66
+ libunwind-devel libicu-devel \
62
67
python python-pip python-setuptools python-devel \
63
68
python-msgpack python-yaml python-argparse python-six python-gevent
64
69
@@ -69,10 +74,15 @@ the preferences can differ. But strategically the steps are always the same.
69
74
.. code-block :: console
70
75
71
76
$ brew install cmake autoconf binutils zlib \
72
- readline ncurses libyaml openssl curl libunwind-headers icu4c \
77
+ autoconf automake libtool \
78
+ readline ncurses libyaml openssl libunwind-headers icu4c \
73
79
&& pip install python-daemon \
74
80
msgpack-python pyyaml configargparse six gevent
75
81
82
+ .. NOTE ::
83
+
84
+ You can not install `zlib-devel <https://www.zlib.net/ >`_ package this way.
85
+
76
86
Alternatively, download Apple's default Xcode toolset:
77
87
78
88
.. code-block :: console
@@ -85,7 +95,8 @@ the preferences can differ. But strategically the steps are always the same.
85
95
.. code-block :: console
86
96
87
97
$ pkg install -y sudo git cmake gmake gcc coreutils \
88
- readline ncurses libyaml openssl curl libunwind icu \
98
+ autoconf automake libtool \
99
+ readline ncurses libyaml openssl libunwind icu \
89
100
python27 py27-pip py27-setuptools py27-daemon \
90
101
py27-msgpack-python py27-yaml py27-argparse py27-six py27-gevent
91
102
0 commit comments