1

我从以下位置获得 GT.M 源:http: //sourceforge.net/projects/fis-gtm/files/GT.M-x86-Linux-src/V6.2-002A/

提取并执行 README 文件中的步骤,但在以下步骤中出现错误:

   $ make

在该命令之后,发生错误:

root@localhost:~/test_gtm/fis-gtm-V6.2-002A/fis-gtm-V6.2-002A# make
[  0%] Built target gen_gtm_threadgbl_deftypes
[  1%] Built target libstub
[  1%] Building C object CMakeFiles/libmumps.dir/sr_unix/ctrly_set.c.o
In file included from /root/test_gtm/fis-gtm-V6.2-002A/fis-gtm-V6.2-002A/sr_unix/ctrly_set.c:17:0:
/root/test_gtm/fis-gtm-V6.2-002A/fis-gtm-V6.2-002A/sr_port/fix_xfer_entry.h:22:23: fatal error: xfer_desc.i: No such file or directory
compilation terminated.
make[2]: *** [CMakeFiles/libmumps.dir/sr_unix/ctrly_set.c.o] Error 1
make[1]: *** [CMakeFiles/libmumps.dir/all] Error 2
make: *** [all] Error 2

我看到了这个错误修复: https ://lists.debian.org/debian-med/2012/06/msg00230.html

但它仍然发生在我身上请告诉我怎么了?

4

2 回答 2

2

我以前遇到过这个问题。

尝试将 xfer_desc.i 作为 make 目标本身。

sam@thebes:~/repos/fis-gtm-V6.2-002A$ make gen_xfer_desc
Generating xfer_desc.i
Built target gen_xfer_desc

然后做剩下的。

于 2015-09-19T02:24:40.193 回答
1

我知道原始源 tarball 中的 CMakeLists.txt 文件有错误。我已经从当前源代码压缩包成功下载并构建了 GT.M。您正在使用的源 tarball 的 cksum 或 md5sum 是什么?

于 2015-09-21T13:59:38.067 回答