HewlettPackard / netperf

Netperf is a benchmark that can be used to measure the performance of many different types of networking. It provides tests for both unidirectional throughput, and end-to-end latency.
MIT License
859 stars 187 forks source link

netperf porting to riscv #38

Open kirana1996 opened 4 years ago

kirana1996 commented 4 years ago

tried for port this benchmark to riscv,for this i fallowed bellow steps 1) ./autogen.sh 2)./configure 3) make and make install But when i do make i got fallowing error..... can anyone solve this problem..

make all-recursive make[1]: Entering directory '/home/root/kiran/netperf' Making all in src make[2]: Entering directory '/home/root/kiran/netperf/src' Making all in missing make[3]: Entering directory '/home/root/kiran/netperf/src/missing' Making all in m4 make[4]: Entering directory '/home/root/kiran/netperf/src/missing/m4' make[4]: Nothing to be done for 'all'. make[4]: Leaving directory '/home/root/kiran/netperf/src/missing/m4' make[4]: Entering directory '/home/root/kiran/netperf/src/missing' make[4]: Nothing to be done for 'all-am'. make[4]: Leaving directory '/home/root/kiran/netperf/src/missing' make[3]: Leaving directory '/home/root/kiran/netperf/src/missing' make[3]: Entering directory '/home/root/kiran/netperf/src' make[3]: Nothing to be done for 'all-am'. make[3]: Leaving directory '/home/root/kiran/netperf/src' make[2]: Leaving directory '/home/root/kiran/netperf/src' Making all in doc make[2]: Entering directory '/home/root/kiran/netperf/doc' Making all in examples make[3]: Entering directory '/home/root/kiran/netperf/doc/examples' make[3]: Nothing to be done for 'all'. make[3]: Leaving directory '/home/root/kiran/netperf/doc/examples' make[3]: Entering directory '/home/root/kiran/netperf/doc' restore=: && backupdir=".am$$" && \ am__cwd=pwd && CDPATH="${ZSH_VERSION+.}:" && cd . && \ rm -rf $backupdir && mkdir $backupdir && \ if (makeinfo --version) >/dev/null 2>&1; then \ for f in netperf.info netperf.info-[0-9] netperf.info-[0-9][0-9] netperf.i[0-9] netperf.i[0-9][0-9]; do \ if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \ done; \ else :; fi && \ cd "$am__cwd"; \ if makeinfo -I . \ -o netperf.info netperf.texi; \ then \ rc=0; \ CDPATH="${ZSH_VERSION+.}:" && cd .; \ else \ rc=$?; \ CDPATH="${ZSH_VERSION+.}:" && cd . && \ $restore $backupdir/ `echo "./netperf.info" | sed 's|[^/]$||'`; \ fi; \ rm -rf $backupdir; exit $rc /bin/sh: line 9: makeinfo: command not found make[3]: [Makefile:401: netperf.info] Error 127 make[3]: Leaving directory '/home/root/kiran/netperf/doc' make[2]: [Makefile:588: all-recursive] Error 1 make[2]: Leaving directory '/home/root/kiran/netperf/doc' make[1]: [Makefile:374: all-recursive] Error 1 make[1]: Leaving directory '/home/root/kiran/netperf' make: [Makefile:313: all] Error 2