我正在尝试按照以下步骤安装 CUnit:
从 SourceForge 下载 CUnit 包。
使用以下命令解压缩:
tar xjf CUnit-2.1-3.tar.bz2
然后进入 CUnit-2.1-3 目录。
cd CUnit-2.1.2
尝试运行以下命令序列:
mkdir -p $HOME/local ./configure --prefix=$HOME/local # but this command is not working
bash 显示以下消息:
bash: ./configure: No such file or directory
答案1
这个答案有帮助:https://askubuntu.com/a/27679/940185
libtoolize --force
aclocal
autoheader
automake --force-missing --add-missing
autoconf
./configure
另外,我wget
用过直接下载链接(然后重命名文件以便只?
留下之前的内容)。
答案2
实际上,在 INSTALL 文件中,它表示autoconf
创建配置文件。在 README 中,它更明确:
按照通常的步骤顺序应该可以成功构建和安装 CUnit:
aclocal
(如有必要)
autoconf
(如有必要)
automake
(如有必要)
chmod u+x configure
(如有必要)
./configure --prefix <Your choice of directory for installation>
make
make install