updated documentation.

Former-commit-id: a97fc806e7a76069b323a27db060227923941b82
This commit is contained in:
norayr 2016-01-13 15:48:37 +04:00
parent 6425e7f899
commit 93335d8460
2 changed files with 143 additions and 40 deletions

78
COMPILE
View file

@ -1,21 +1,71 @@
currently three bootstrap static binaries provided, for x86_64, x86, and armv6j_hardfp (works on raspberry pi) gnu/linux targets.
Platforms
=======:
several bootstrap static binaries provided, for
0) prerequisites: libc6-dev on debian, glibc-devel, glibc-static on fedora.
1) make with corresponding makefile
if it's rasp pi or other armhf platform then do
# make -f makefile.gcc.armv6j_hardfp
if it's x86 then
# make -f makefile.gcc.x86
and if it's x86_64, then default makefile is for this platform
# make
gnu/linux on x86_64
gnu/linux on x86
gnu/linux on armv6j_hardfp (i. e. raspberry pi)
darwin on x86_64 (read osx)
freebsd on x86_64
openbsd on x86_64
(theoretically you can also change TARCH in makefile and type make)
Prerequisites:
==========
on Debian GNU/Linux:
2) # sudo make install
gcc, libc6-dev on debian
this will install voc in /opt/voc-<version> and create /opt/voc symlink to it.
on RHEL/CentOS/Fedora:
gcc, glibc-devel, glibc-static
on OSX:
clang, Xcode.
How to install
==============
By default, voc will be installed to /opt/voc-<version> and /opt/voc symlink to it will be created.
If you want it in other prefix, then edit makefile for your platform, and change PRF = "/opt" to the path you need.
Then just cd into source directory and type
>make -f makefile.linux.gcc.x86_64
if you are on GNU/Linux x86_64 platform and you want voc to use gcc as backend.
otherwise use corresponding makefile.
Note for FreeBSD, OpenBSD and OSX users:
use gmake instead of make, i. e.
>gmake -f makefile.clang.darwin.x86_64
then type
>sudo make install
or
>sudo gmake -f makefile.clang.darwin.x86_64 install
on MacOSX/Darwin.
build rpm
=========
if you'd like to build an rpm installer, then
* compress sources as voc-1.0.src.tar.bz2
assuming you in voc directory
> cd ..
> tar -jcvpf voc-1.0.src.tar.bz2 voc
* put them to ~/rpmbuild/SOURCES (on some systems as root to /usr/src/redhat/SOURCES/) or other similar location.
> mkdir -p ~/rpmbuild/SOURCES
> cp voc-1.0.src.tar.bz2 ~/rpmbuild/SOURCES
* cd to voc directory and run
> rpmbuild -ba voc.spec
this should create voc rpm installers.
add /opt/voc/bin to your PATH and enjoy, compile, have fun!
-- noch