Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
68d72a23
Commit
68d72a23
authored
12 years ago
by
pcherenkov
Browse files
Options
Downloads
Patches
Plain Diff
README.platform documentation updated
parent
3dcea4b3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.CentOS
+15
-6
15 additions, 6 deletions
README.CentOS
README.FreeBSD
+28
-0
28 additions, 0 deletions
README.FreeBSD
with
43 additions
and
6 deletions
README.CentOS
+
15
−
6
View file @
68d72a23
...
...
@@ -6,20 +6,29 @@ http://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_E
sudo rpm -iv ./epel-release-5-4.noarch.rpm
2. Install
build-required
packages:
2. Install
necessary
packages:
-------------
sudo yum install gcc gcc-c++ gcc-objc cmake git readline-devel ncurses-devel binutuls-devel
3. Download & build tarantool source code:
3. Install gcc 4.6.x and gcc infrastructure pre-requisites
-------------
(x) From one of the gcc mirrors download from /gcc/infrastructure: gmp, mpfr and mpc packages;
(x) Configure and build the pre-requisites using --prefix=/usr/local and --with-gmp=/usr/local (see gcc.gnu.org/install);
(x) Configure gcc as:
configure --prefix=/usr/local --enable-languages=c,c++,objc --program-suffix=463 --enable-shared --enable-threads=posix --with-mpc=/usr/local
(x) Build gcc as per steps outlined in GCC documentation gcc.gnu.org/install;
(x) Set up the environment to include the new GCC's libs: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib:/usr/local/lib64
4. Download & build tarantool source code:
-------------
git clone git://github.com/mailru/tarantool.git
cd tarantool
cmake . -DCMAKE_BUILD_TYPE=RelWithDebugInfo -DENABLE_CLIENT=true && make
CC=gcc463 CXX=g++463
cmake . -DCMAKE_BUILD_TYPE=RelWithDebugInfo -DENABLE_CLIENT=true && make
4
. Install test-required packages and modules for Python 2.6
5
. Install test-required packages and modules for Python 2.6
-------------
sudo yum install python26 python26-PyYAML python26-argparse
...
...
@@ -32,12 +41,12 @@ wget http://pypi.python.org/packages/source/d/daemon/daemon-1.0.tar.gz#md5=b0beb
tar -xzvf daemon-1.0.tar.gz
sudo python26 setup.py install
5
. Set up python 2.6 to run tarantool tests
6
. Set up python 2.6 to run tarantool tests
-------------
mkdir ~/build/bin && ln -s /usr/bin/python26 ~/build/bin/python
6
. Run tarantool test suite
7
. Run tarantool test suite
-------------
cd ~/build/tarantool/test
...
...
This diff is collapsed.
Click to expand it.
README.FreeBSD
+
28
−
0
View file @
68d72a23
Target OS: FreeBSD 8.3 (RELEASE)
1. Install necessary packages:
-------------
pkg_add -r sudo git cmake gmake libbfd
pkg_add -r python27
2. Install gcc 4.6.x and gcc infrastructure pre-requisites
-------------
(x) From one of the gcc mirrors download from /gcc/infrastructure: gmp, mpfr and mpc packages;
(x) Configure and build the pre-requisites using --prefix=/usr/local and --with-gmp=/usr/local (see gcc.gnu.org/install);
(x) Configure gcc as:
configure --prefix=/usr/local --enable-languages=c,c++,objc --program-suffix=463 --enable-shared --enable-threads=posix --with-mpc=/usr/local
(x) Build gcc as per steps outlined in GCC documentation gcc.gnu.org/install;
(x) Set up the environment to include the new GCC's libs: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
3. Install necessary python modules:
-------------
cd /usr/ports/misc/py-pexpect
sudo make install
...
...
@@ -13,7 +27,21 @@ cd /usr/ports/devel/py-daemon
sudo make install
git clone git://github.com/mailru/tarantool.git
cd tarantool
CC=gcc463 CXX=g++463 cmake . -DCMAKE_BUILD_TYPE=RelWithDebugInfo -DENABLE_CLIENT=true
gmake
4. Set up python 2.6 to run tarantool tests
-------------
mkdir ~/build/bin && ln -s /usr/bin/python26 ~/build/bin/python
5. Run tarantool test suite
-------------
cd ~/build/tarantool/test
PATH=~/build/bin:$PATH ./run
-- EOF
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment