2015-12-06 15 views
6

Sto provando a creare htop dal pacchetto sorgente (ultima versione stabile) in Cygwin su Windows 7 a 64 bit. Sto seguendo le istruzioni fornite nel file README, ma sto colpendo il seguente errore quando si esegue lo script di marca:Creazione di htop dalla sorgente in Cygwin

[email protected] ~/tmp/htop-1.0.3 
$ make 
make all-am 
make[1]: Entering directory '/home/Administrator/tmp/htop-1.0.3' 
gcc -DHAVE_CONFIG_H -I. -DNDEBUG -pedantic -Wall -Wextra -std=c99 -rdynamic -D_XOPEN_SOURCE_EXTENDED -DSYSCONFDIR=\"/usr/local/etc\" -g -O2 -MT htop-AvailableMetersPanel.o -MD -MP -MF .deps/htop-AvailableMetersPanel.Tpo -c -o htop-AvailableMetersPanel.o `test -f 'AvailableMetersPanel.c' || echo './'`AvailableMetersPanel.c 
gcc: error: unrecognized command line option ‘-rdynamic’ 
Makefile:467: recipe for target 'htop-AvailableMetersPanel.o' failed 
make[1]: *** [htop-AvailableMetersPanel.o] Error 1 
make[1]: Leaving directory '/home/Administrator/tmp/htop-1.0.3' 
Makefile:292: recipe for target 'all' failed 
make: *** [all] Error 2 

Tutti i suggerimenti sarebbero apprezzati!

risposta

14

htop autore qui - htop ha un sacco di codice specifico per piattaforma, quindi il porting è not a matter of simply recompiling it. L'attuale versione di htop non supporta Cygwin. L'ultima versione release, 2.0.1, supporta Linux, Mac OS X, FreeBSD e OpenBSD.

Sono felice di accept patches se qualcuno scrive una porta Cygwin, però!

Problemi correlati