Bonjour à tous,
Sous environnement KDE j'ai fait l'erreur de compiler le logiciel Retroarch avec la procédure suivante, sans vraiment comprendre ce que je faisais. Je souhaiterais défaire ce que j'ai fait pour revenir au point de départ.
Avez-vous des conseils sur le sujet ? Le logiciel fonctionne mais je souhaite le réinstaller en mode non dév (avec les dépôts, de façon classique)
Merci pour votre aide,
Antoine
---
Procédure
RetroArch Compilation
Building RetroArch
The first step is to obtain RetroArch's source tree.
$ git clone https://github.com/libretro/RetroArch.git retroarch
You can get RetroArch's dependenencies by running the following command:
# apt-get build-dep retroarch
[/i]
Note
Depending on your configuration you may need to uncomment the deb-src repositories in /etc/apt/sources.list, /etc/apt/sources.list.d/libretro-ubuntu-testing-$version.list and then run apt-get update before running apt-get build-dep
For subsequent builds you will need to pull the changes from the repo
$ cd retroarch
$ git pull
[/i]
To compile RetroArch run the following commands inside RetroArch's source tree:
$ ./configure
$ make clean
$ make -j4
[/i]
For development purposes you might want to run a debug build instead. In such case use the following commands:
$ ./configure
$ make clean
$ make DEBUG=1 GL_DEBUG=1 -j4
[/i]
You can then start RetroArch by running:
$ ./retroarch
[/i]