问题描述
我正在尝试安装 EZTrace,这是一个旨在从 HPC 自动生成执行跟踪的工具。我从这里下载了安装文件夹,https://eztrace.gitlab.io/eztrace/index.html。解压后找到了一个README文件:
Requirements
=============================================
In order to run EZTrace,you need the following software:
* autoconf 2.63;
* libelf or libbfd. Otherwise,only eztrace.old would be installed and the
functionality would be limited,see the FAQ section.
On Debian,libelf can be installed from command line by the following
command: apt-get install libelf-dev
* [Optional] Any MPI implementation.
Building EZTrace
=============================================
At first,you need to configure EZTrace by invoking the configure script:
$ ./configure --prefix=<WHERE_YOU_INSTALL_EZTRACE>
Options to configure. You can pass several options to the configure script for
specifying where it should find the needed libraries:
--with-litl=$LITL_ROOT or ARG(=no): specify where LiTL is installed
--with-gtg=$GTG_ROOT: specify where GTG is installed.
--with-mpi=$MPI_ROOT: specify where MPI is installed. The mpi.h file must be
located in the $MPI_ROOT/include/ directory.
--with-mpi-include=<PATH_TO_MPI.H>: specify the directory that contains the
mpi.h file.
--with-papi=$PAPI_ROOT: specify where PAPI is installed. The papi.h file must be
located in the $PAPI_ROOT/include directory and libpapi should be in
$PAPI_ROOT/lib
Once EZTrace is configured,just type:
$ make
$ make install
我检查了我是否已经安装了要求(完成)。到达 ./configure
命令时,我遇到了一个问题,我通过输入 autoreconf -i
解决了这个问题。
问题是,在执行 ./configure
命令后和执行 make
命令时,我收到此错误:
make: *** No targets specified and no makefile found. Stop.
(这是因为命令 ./configure 没有按预期生成生成文件)。
我只有Makefile.am
& Makefile.in
。
我尝试检查这个命令块:
aclocal
autoconf
autoheader
automake --add-missing
我得到了:
autoheader: error: AC_CONFIG_HEADERS not found in configure.ac
automake: warning: LINK was already defined in condition USE_CUDA,which is included in condition TRUE ...
src/modules/cuda/Makefile.am:15: ... 'LINK' previously defined here
我想提一下,我位于一个名为
的文件夹中"/home/hakim/Téléchargements/eztrace-eztrace-1.1-9"
任何帮助生成生成文件,好吗?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)