Make

如何安裝owping工具?

  • October 14, 2020

我想安裝 owping,但是我無法配置和編譯原始碼。我已經安裝了autoconf。

安裝owping的說明

我已經下載並解壓了 master 分支的原始碼。執行命令:

./configure

給出“沒有這樣的文件或目錄”

在網際網路上,我發現以下命令可能會有所幫助。

autoreconf -i

但是最後我無法製作和安裝這個工具。它給出了錯誤。請你幫助我好嗎?

似乎有一些更新$ git submodule update --init。並且:configure腳本的創建最正確地使用bootstrap.

$ git clone https://github.com/perfsonar/owamp.git
$ cd owamp/
$ git submodule update --init
$ ./bootstrap
$ ./configure
$ make            ## no errors here

引用自:https://unix.stackexchange.com/questions/564769