Difference between revisions of "Development on Windows/fr"
(Updating to match new version of source page) |
|||
Line 1: | Line 1: | ||
<languages /> | <languages /> | ||
+ | <span class="mw-translate-fuzzy"> | ||
Cette page explique comment installer un environnement de compilation (basé sur MinGW) pour construire GIMX.<br /> | Cette page explique comment installer un environnement de compilation (basé sur MinGW) pour construire GIMX.<br /> | ||
Elle explique aussi comment installer Eclipse CDT et comment effectuer un checkout.<br /> | Elle explique aussi comment installer Eclipse CDT et comment effectuer un checkout.<br /> | ||
Sauf cas contraire, effectuer une installation par défaut (répertoires par défaut, etc...). | Sauf cas contraire, effectuer une installation par défaut (répertoires par défaut, etc...). | ||
+ | </span> | ||
− | = | + | <span class="mw-translate-fuzzy"> |
− | |||
− | |||
− | |||
==MinGW/MSYS== | ==MinGW/MSYS== | ||
+ | </span> | ||
− | + | Download and install [http://sourceforge.net/p/msys2/wiki/MSYS2%20installation/ Msys2]. | |
− | + | Make sure to follow the instructions from the Msys2 wiki. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | If you are running a 32-bit Windows, install the "32-bit" of Msys2.<br /> | |
− | + | If you are running a 64-bit Windows, you can choose either the "64-bit" version or the "32-bit" version. | |
− | |||
− | + | ==Development tools== | |
− | + | Run the Msys2 shell and type: | |
− | + | pacman --noconfirm -S wget | |
− | + | wget <nowiki>https://raw.githubusercontent.com/matlo/GIMX-build/master/win/install.sh</nowiki> | |
+ | ./install.sh | ||
==Compilation== | ==Compilation== | ||
+ | <span class="mw-translate-fuzzy"> | ||
Cette partie explique comment faire un checkout et comment compiler GIMX depuis la ligne de commande.<br /> | Cette partie explique comment faire un checkout et comment compiler GIMX depuis la ligne de commande.<br /> | ||
Lancer C:\MinGW\msys\1.0\msys.bat<br /> | Lancer C:\MinGW\msys\1.0\msys.bat<br /> | ||
Télécharger et exécuter build.sh : | Télécharger et exécuter build.sh : | ||
+ | </span> | ||
wget <nowiki>https://raw.github.com/matlo/GIMX-build/master/win/build.sh</nowiki> | wget <nowiki>https://raw.github.com/matlo/GIMX-build/master/win/build.sh</nowiki> |
Revision as of 10:40, 10 June 2014
Cette page explique comment installer un environnement de compilation (basé sur MinGW) pour construire GIMX.
Elle explique aussi comment installer Eclipse CDT et comment effectuer un checkout.
Sauf cas contraire, effectuer une installation par défaut (répertoires par défaut, etc...).
MinGW/MSYS
Download and install Msys2. Make sure to follow the instructions from the Msys2 wiki.
If you are running a 32-bit Windows, install the "32-bit" of Msys2.
If you are running a 64-bit Windows, you can choose either the "64-bit" version or the "32-bit" version.
Development tools
Run the Msys2 shell and type:
pacman --noconfirm -S wget wget https://raw.githubusercontent.com/matlo/GIMX-build/master/win/install.sh ./install.sh
Compilation
Cette partie explique comment faire un checkout et comment compiler GIMX depuis la ligne de commande.
Lancer C:\MinGW\msys\1.0\msys.bat
Télécharger et exécuter build.sh :
wget https://raw.github.com/matlo/GIMX-build/master/win/build.sh ./build.sh
Tous les binaires sont copiés dans C:\MinGW\msys\1.0\home\username\GIMX\setup.
Eclipse IDE
Cette partie n'est utile que si vous avez l'intention de modifier le code source. Si vous voulez seulement compiler GIMX, vous pouvez ignorer ceci.
Eclipse est un IDE qui peut être utilisé avec les outils de compilation MinGW/MSYS.
Assurez vous d'avoir un JRE java installé sur votre système.
Télécharger Eclipse IDE for C/C++ Developers. Le décompresser dans un répertoire quelconque.
Exécuter eclipse.exe.
Checkout du projet
Todo: add instructions.