打包时出现“make”错误

打包时出现“make”错误

我正在尝试安装 soundtouch 包,但遇到了一些问题

我按照他们的说明在解压文件后编译 SoundTouch。它告诉我

./configure-

为本地环境配置 SoundTouch 包。

make-

构建 SoundTouch 库和 SoundStretch 实用程序。

make install-

将 SoundTouch 和 BPM 库安装到/usr/local/lib并将 SoundStretch 实用程序安装到/usr/local/bin。请注意,可能需要“root”权限才能将二进制文件安装到目标位置。

我完成了第一步,但是当我运行 make 时,它​​给出了错误。

james@Bum-Ho:~/pitch shifter/soundtouch$ make
cd . && automake-1.10 --foreign 
/bin/bash: line 4: automake-1.10: command not found
make: *** [Makefile.in] Error 1

可能是什么问题?我查看了一下是否安装了 automake,结果我安装了,所以我不明白发生了什么。

答案1

您无需执行复杂的编译过程即可安装soundtouch。它位于官方 ubuntu 存储库中。可以使用包进行安装libsoundtouch0

sudo apt-get install libsoundtouch0 libsoundtouch-dev

相关内容