Skip to content

Commit

Permalink
Merge pull request #83 from uralbash/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
vgvassilev authored Jul 3, 2016
2 parents 7dcca37 + d6af4a2 commit c422e08
Showing 1 changed file with 28 additions and 25 deletions.
53 changes: 28 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,37 +42,37 @@ packages and [subversion][4] and [git][5] to get the source code.
Building LLVM and CLANG you must:
* Check out the sources:
```bash
git clone http://root.cern.ch/git/llvm.git src
cd src
git checkout cling-patches
cd tools
git clone http://root.cern.ch/git/cling.git
git clone http://root.cern.ch/git/clang.git
cd clang
git checkout cling-patches
git clone http://root.cern.ch/git/llvm.git src
cd src
git checkout cling-patches
cd tools
git clone http://root.cern.ch/git/cling.git
git clone http://root.cern.ch/git/clang.git
cd clang
git checkout cling-patches
```
* Configure, build and install them, either using CMake:

```bash
cd ..
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/some/install/dir \
-DLLVM_TARGETS_TO_BUILD=CBackend\;CppBackend\;X86 \
-DCMAKE_BUILD_TYPE=Debug \
../src
make
make install
cd ../../../
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/some/install/dir \
-DLLVM_TARGETS_TO_BUILD=CBackend\;CppBackend\;X86 \
-DCMAKE_BUILD_TYPE=Debug \
../src
make
make install
```
* or GNU Make (see ../src/configure --help for all options):

```bash
cd ..
mkdir build
cd build
../src/configure --prefix=/some/install/dir
make
make install
cd ../../../
mkdir build
cd build
../src/configure --prefix=/some/install/dir
make
make install
```
#####Cling Packaging Tool
Cling's tree has a user-friendly, command-line utility written in Python called
Expand All @@ -91,10 +91,13 @@ Full documentation of CPT can be found in [tools/packaging](https://github.com/v

##USAGE
`/some/install/dir/bin/cling '#include <stdio.h>' 'printf("Hello World!\n")'`

To get started run: `/some/install/dir/bin/cling --help`
or type
`/some/install/dir/bin/cling`
`[cling]$ .help`
```bash
/some/install/dir/bin/cling
[cling]$ .help
```

##DEVELOPERS' CORNER:
We have doxygen documentation of cling's code at: http://cling.web.cern.ch/cling/doxygen/
Expand Down

0 comments on commit c422e08

Please sign in to comment.