- 注册时间
- 2009-2-12
- 最后登录
- 1970-1-1
- 威望
- 星
- 金币
- 枚
- 贡献
- 分
- 经验
- 点
- 鲜花
- 朵
- 魅力
- 点
- 上传
- 次
- 下载
- 次
- 积分
- 22688
- 在线时间
- 小时
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?欢迎注册
×
以前和无心人 在 arch linux下用gcc 4.5编译NTL 编译不过去,
今天,还是arch linux,kernel 3.2.2, gcc 4.6.2 ,编译过来了。
[root@myarch ~]# yaourt -S ntl --tmp /root/build/
==> Downloading ntl PKGBUILD from AUR...
x PKGBUILD
Comment by: remyoudompheng on Sun, 20 Jun 2010 17:58:35 +0000
Could you add SHARED=on to the ./configure invocation line ?
Comment by: B-Con on Fri, 08 Oct 2010 01:14:27 +0000
Updated to pkgrel 3, to address the requests by remyoudompheng and vicencb below.
Comment by: StefanHusmann on Mon, 18 Oct 2010 13:13:59 +0000
Users of old i686 hardware not supporting sse2 may have problems to build gf2x, and so also ntl. See my comment on g2x comment page.
First Submitted: Sat, 01 Mar 2008 17:01:56 +0000
ntl 5.5.2-3
( Unsupported package: Potentially dangerous ! )
==> Edit PKGBUILD ? [Y/n] ("A" to abort)
==> ------------------------------------
==>
这是官网的例子:
http://www.shoup.net/ntl/doc/tour-ex1.html- #include <NTL/ZZ.h>
- NTL_CLIENT
- int main()
- {
- ZZ a, b, c;
-
- cin >> a;
- cin >> b;
- c = (a+1)*(b+1);
- cout << c << "\n";
- }
复制代码 |
|