我使用大学department.Note中的一台department.Note机器,它没有权限使用我使用的系统作为根。
我提取了zip.According来安装我运行的文件
制造rx
但我有以下结果:
Makefile:96: depend.mak: No such file or directory
Making dependencies...
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
In file included from ./Main.h:23,
from <command-line>:0:
ADTs/Int.h:101:17: error: gmp.h: No such file or directory
make: *** [depend.mak] Error 1我用
制作
和
制造安装
但我还是有错误的。有人告诉我我需要安装gmp和gmp?对吗?
一些可能有用的东西:我不确定我是否有密码作为根用户,因为我在我的大学实验室工作。
有谁能正确运行minisat+吗?
发布于 2013-06-15 12:07:11
看来小型车要靠GNU MP Bignum库(gmp)了。您的系统上安装了libgmp吗?
Update:在没有根访问权限的系统上安装库
由于您在一台没有根访问的大学机器上,您有以下几种选择:
-L开关)添加到minisat包的Makefile中的CFLAGS中。https://stackoverflow.com/questions/17123403
复制相似问题