NetHack – Falcon’s Eye.
1) Répertoire de travail :
[~] ➔ mkdir -p JEUX/FALCON [~] ➔ cd JEUX/FALCON/
2) Téléchargement du code source :
[~/JEUX/FALCON] ➔ wget http://prdownloads.sourceforge.net/falconseye/nethack_source_331_jtp_193.zip
3) Décompression de l’archive :
[~/JEUX/FALCON] ➔ unzip nethack_source_331_jtp_193.zip
4) Configuration de la compilation :
[~/JEUX/FALCON] ➔ sh ./sys/unix/setup.sh
5) Compilation :
[~/JEUX/FALCON] ➔ make
6) Erreur :
/usr/bin/ld: jtp_win.o: référence au symbole non défini «log@@GLIBC_2.4» //lib/arm-linux-gnueabihf/libm.so.6: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status
Solution :
Ouvrir
src/Makefile
Chercher :
LFLAGS = -L/usr/X11/lib
Remplacer par :
LFLAGS = -L/usr/X11/lib -lm
7) Installation :
[~/JEUX/FALCON] ➔ make install
8) Lancement du Falcon’s Eye :
[~/JEUX/FALCON] ➔ cd compiled/games/ [~/JEUX/FALCON/compiled/games] ➔ ./nethack
9) Capture d’écran :
10) Lien :
http://falconseye.sourceforge.net/
Comments are closed, but trackbacks and pingbacks are open.