mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-11-17 07:48:27 +01:00
6b025b9541
- Added a bootstrap script to reduce manual work - Added a --enable-debug configure switch to define the DEBUG variable
60 lines
2 KiB
Text
60 lines
2 KiB
Text
Installation sous Linux (Un*x) (bien/facile)
|
|
------------------------------
|
|
* Pour installer à partir de l'archive CVS :
|
|
|
|
./bootstrap
|
|
|
|
./configure --prefix=/usr/local/eliot
|
|
make
|
|
make install
|
|
|
|
* Pour installer à partir de l'archive tar.gz
|
|
|
|
./configure --prefix=/usr/local/eliot
|
|
make
|
|
make install
|
|
|
|
Il suffit de rajouter le chemin pour trouver eliot
|
|
sur sa ligne de commande et le tour est joué.
|
|
|
|
|
|
|
|
Installation pour Windows (moins bien/facile)
|
|
-------------------------
|
|
|
|
Il y a 2 principales façons de procéder :
|
|
* directement depuis Windows, en utilisant Cygwin (http://www.cygwin.com/).
|
|
* depuis GNU/Linux, en utilisant le cross-compilateur Mingw32.
|
|
|
|
|
|
Dans les 2 cas, les étapes sont les mêmes :
|
|
* installation de l'environnement de compilation (cette étape n'est pas
|
|
décrite ici, car elle ne rentre pas dans le cadre de ce document)
|
|
|
|
* compilation et installation de wxWindows (http://www.wxwidgets.org/),
|
|
version 2.4.2 ou ultérieure (même remarque)
|
|
|
|
* compilation d'Eliot :
|
|
|
|
- si vous utilisez l'archive CVS, il faut générer le script 'configure'
|
|
(aussi bien sous Cygwin que sous GNU/Linux) :
|
|
./bootstrap
|
|
|
|
- avec Cygwin, configurer avec la ligne de commande suivante :
|
|
CC="gcc -mno-cygwin" CXX="g++ -mno-cygwin" \
|
|
./configure --with-wx-config=/path/to/wx-config
|
|
en prenant soin d'indiquer le chemin correct vers le fichier
|
|
'wx-config' de l'installation de wxWindows.
|
|
Ensuite, un simple 'make' suffit pour terminer la compilation,
|
|
éventuellement suivi de 'make install'.
|
|
|
|
- pour la cross-compilation depuis GNU/Linux, configurer avec la ligne
|
|
de commande suivante :
|
|
CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++ \
|
|
./configure --host=i586-mingw32msvc --build=i386-linux \
|
|
--with-wx-config=/path/to/wx-config
|
|
en prenant soin d'indiquer le chemin correct vers le fichier
|
|
'wx-config' de l'installation de wxWindows.
|
|
Ensuite, un simple 'make' suffit pour terminer la compilation,
|
|
éventuellement suivi de 'make install'.
|
|
|