mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-11-17 07:48:27 +01:00
0032104189
Very few strings are marked as translatable yet... - ncurses.cpp: fixed a memory leak
69 lines
2.2 KiB
Text
69 lines
2.2 KiB
Text
Installation sous Linux (Un*x) (bien/facile)
|
|
------------------------------
|
|
* Pour installer à partir de l'archive CVS :
|
|
|
|
autopoint -f
|
|
aclocal -I m4
|
|
autoheader
|
|
automake --add-missing --foreign --copy
|
|
autoconf
|
|
|
|
./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 y a quelques commandes préalables
|
|
à exécuter (aussi bien sous Cygwin que sous GNU/Linux) :
|
|
autopoint -f
|
|
aclocal -I m4
|
|
autoheader
|
|
automake --add-missing --foreign --copy
|
|
autoconf
|
|
|
|
- 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'.
|
|
|
|
|