Difference between revisions of "Getting Started"

From Liberty Eiffel Wiki
Jump to navigation Jump to search
(adding pre-requisites)
(added GC deps)
Line 5: Line 5:
 
* GCC compiler
 
* GCC compiler
 
* GCC-XML extension
 
* GCC-XML extension
  +
* Boehm-Demers-Weiser garbage collector dev-packages
   
 
On debian-like systems you may install them with:
 
On debian-like systems you may install them with:
sudo apt-get install git build-essential gccxml
+
sudo apt-get install git build-essential gccxml libgc-dev
   
 
Now clone the repository:
 
Now clone the repository:

Revision as of 18:33, 14 August 2013

On Linux (and most other Unix-like systems) installation of Liberty from source is simple:

Check that the following Pre-requisites are available on your system:

  • git
  • GCC compiler
  • GCC-XML extension
  • Boehm-Demers-Weiser garbage collector dev-packages

On debian-like systems you may install them with:

sudo apt-get install git build-essential gccxml libgc-dev

Now clone the repository:

git clone git@github.com:LibertyEiffel/Liberty

Change into the directory you created by this:

cd Liberty

and execute

./install.sh -bootstrap

This will create a default liberty configuration in $HOME$/.serc/, bootstrap the compiler and compile all the tools. Afterwards you just need to add <LibertyHome>/target/bin to your path, e. g. in .bashrc:

PATH=$PATH:<LibertyHome>/target/bin
export PATH 

Please note that SmartEiffel should not be already installed on your system. Particularily, any /etc/serc file will prevent you from installing Liberty correctly. Now you can call se as interface for all tools. For examples go to

cd $LibertyHome/tutorial

and compile with

se compile hello_world.e -o hello_world

your first LibertyEiffel program.

After this great success, play with the language, tools and libraries. Develop cool applications and for any question, suggestion or complaint get in touch with us. We are also happy to receive pull requests and provide accounts to this wiki if you want to contribute code or documentation. Be welcome to get involved.