本文介绍了如何在我自己的计算机上重建mpfr.svn.build.vc10.zip?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这个问题是关于如何在Windows OS的Visual Studio 2010中安装"mpfr"的.

This question is about how to install "mpfr" with visual studio 2010 in windows OS.

尽管我实际上已经通过使用预编译的mpfr库解决了 mpfr 安装问题(请参见此处的详细信息:),由于我是新手,因此我仍然愿意自己重建它,并且可以通过这种经验在C ++和Visual Studio中学习更多.

Though I have actually solved the mpfr installation problem by using a pre-compiled mpfr library (see the details here: install mpfr via precompiled mpfr library), I would still prefer to rebuild it myself since I am new and can learn more in C++ and Visual studio through such experience.

但是,根据 Brian Gladman的GMP/MPIR/MPFR/MPC页,然后下载 mpfr.svn .build.vc10 mpfr -3.0.0.build.vc10 ,我无法根据其中的readme.txt自己重建它们.

However, per the guidelines in Brian Gladman's GMP/MPIR/MPFR/MPC page and after downloading the mpfr.svn.build.vc10 and mpfr-3.0.0.build.vc10, I failed to rebuild them myself per the readme.txt inside.

有没有成功重建过的人?对于新手,我将需要更详细的准则.

Is there anyone who has successfully rebuilt them?I would need more detailed guidelines on this for newbies.

谢谢!

推荐答案

我已经使用Visual Studio构建了MPIR,MPFR和MPC,作为gmpy的一部分( https://code.google.com/p/gmpy/).我的目录结构的完整快照以及所有源文件,可以从 https://gmpy.googlecode.com/files/full-src-mpir-mpfr-mpc-gmpy2-2.0.2.zip

I've built MPIR, MPFR, and MPC with Visual Studio as part of gmpy ( https://code.google.com/p/gmpy/ ). A full snapshot of my directory structure, with all the source files, is available as https://gmpy.googlecode.com/files/full-src-mpir-mpfr-mpc-gmpy2-2.0.2.zip

寻找一个名为windows_build.txt的文件;它包含有关构建新版本gmpy2的说明.它可能不会回答您所有的问题,但会为您提供一个已知的工作环境.

Look for a file called windows_build.txt; it contains my notes for building a new release of gmpy2. It may not answer all your questions but it will give you a known working environment to start from.

这篇关于如何在我自己的计算机上重建mpfr.svn.build.vc10.zip?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 02:19