Cling - The Interactive C++ Interpreter
Go to file
2014-09-23 20:56:06 +02:00
demo Remove trailing spaces 2014-08-13 16:08:36 +02:00
docs From Dario Pellegrini: use $(PYTHON) instead of python. 2014-08-21 10:57:03 +02:00
include Do not display suggestions only for ROOT. 2014-09-19 14:05:15 +02:00
lib extern "C" is printed by the decl itself. 2014-09-23 20:56:06 +02:00
patches Use markdown 2014-02-27 12:49:09 +01:00
test Do not display suggestions only for ROOT. 2014-09-19 14:05:15 +02:00
tools Implement #29: Add support for --create-dev-env 2014-08-19 10:18:06 +02:00
www Remove trailing spaces 2014-08-13 16:08:36 +02:00
CMakeLists.txt Finish - Do not display suggestions only for ROOT. 2014-09-20 16:25:06 +02:00
CREDITS.txt Add credits. 2014-01-07 11:43:53 +01:00
LastKnownGoodLLVMSVNRevision.txt Update to llvm/clang rev 214630. 2014-08-14 14:56:43 +02:00
LICENSE.TXT Remove trailing spaces 2014-08-13 16:08:36 +02:00
Makefile Fix wrong path of VERSION in Makefile 2014-05-15 13:51:55 +02:00
Module.mk Do not display suggestions only for ROOT. 2014-09-19 14:05:15 +02:00
README.md Close #31: Update README.md to add CPT details 2014-08-19 10:18:06 +02:00
VERSION Use debian style version naming. 2014-05-11 18:27:58 +02:00

                         ______  __      ____  _   __  ______
                        / ____/ / /     /  _/ / | / / / ____/
                       / /     / /      / /  /  |/ / / / __
                      / /___  / /___  _/ /  / /|  / / /_/ /
                      \____/ /_____/ /___/ /_/ |_/  \____/

##DESCRIPTION Cling is an interactive C++ interpreter, built on top of Clang and LLVM compiler infrastructure. Cling realizes the read-print-evaluate-loop concept, in order to leverage rapid application development. Implemented as a small extension to LLVM and Clang, the interpreter reuses their strengths such as the praised concise and expressive compiler diagnostics.

Further information & demos

Please note that some of the resources are rather old and most of the stated limitations are outdated.

##INSTALLATION ###Binaries We offer binary snapshots for download at https://ecsft.cern.ch/dist/cling

###Source CLING source depends on the LLVM[1] and CLANG[2] headers and libraries. You will also need CMake[3] >= 2.6.1 or GNU Make to build all of those packages and subversion[4] and git[5] to get the source code.

[1] http://llvm.org [2] http://clang.llvm.org [3] http://cmake.org [4] http://subversion.tigris.org [5] http://git-scm.com

####Building Building LLVM and CLANG you must:

  • Check out the sources:
    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:
    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):
    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 Cling Packaging Tool (CPT) which can build Cling from source and generate installer bundles for a wide range of platforms.

If you have Cling's source cloned locally, you can find the tool in tools/packaging directory. Alternatively, you can download the script manually, or by using wget:

wget https://github.com/vgvassilev/cling/raw/cpt/tools/packaging/cpt.py
chmod +x cpt.py

Full documentation of CPT can be found in [tools/packaging]. [tools/packaging]:https://github.com/vgvassilev/cling/tree/cpt/tools/packaging

##USAGE To get started run: /some/install/dir/bin/cling --help or type /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/ ###CONTRIBUTIONS Every contribution is very welcome. It is considered as a donation and its copyright and any other related rights become exclusive ownership of the person merged the code or in any other case the main developers. In order for a contribution to be accepted it has to obey the previously established rules for contribution acceptance in cling's work flow and rules.