1. <i id='w70ey'><tr id='w70ey'><dt id='w70ey'><q id='w70ey'><span id='w70ey'><b id='w70ey'><form id='w70ey'><ins id='w70ey'></ins><ul id='w70ey'></ul><sub id='w70ey'></sub></form><legend id='w70ey'></legend><bdo id='w70ey'><pre id='w70ey'><center id='w70ey'></center></pre></bdo></b><th id='w70ey'></th></span></q></dt></tr></i><div id='w70ey'><tfoot id='w70ey'></tfoot><dl id='w70ey'><fieldset id='w70ey'></fieldset></dl></div>

        <bdo id='w70ey'></bdo><ul id='w70ey'></ul>

    2. <tfoot id='w70ey'></tfoot>

      <small id='w70ey'></small><noframes id='w70ey'>

    3. <legend id='w70ey'><style id='w70ey'><dir id='w70ey'><q id='w70ey'></q></dir></style></legend>
    4. 使用 Visual Studio 构建 GMP 库?

      Building GMP library with Visual Studio?(使用 Visual Studio 构建 GMP 库?)

      <legend id='Vdl2x'><style id='Vdl2x'><dir id='Vdl2x'><q id='Vdl2x'></q></dir></style></legend>

        <i id='Vdl2x'><tr id='Vdl2x'><dt id='Vdl2x'><q id='Vdl2x'><span id='Vdl2x'><b id='Vdl2x'><form id='Vdl2x'><ins id='Vdl2x'></ins><ul id='Vdl2x'></ul><sub id='Vdl2x'></sub></form><legend id='Vdl2x'></legend><bdo id='Vdl2x'><pre id='Vdl2x'><center id='Vdl2x'></center></pre></bdo></b><th id='Vdl2x'></th></span></q></dt></tr></i><div id='Vdl2x'><tfoot id='Vdl2x'></tfoot><dl id='Vdl2x'><fieldset id='Vdl2x'></fieldset></dl></div>

        <small id='Vdl2x'></small><noframes id='Vdl2x'>

      • <tfoot id='Vdl2x'></tfoot>

        • <bdo id='Vdl2x'></bdo><ul id='Vdl2x'></ul>

                  <tbody id='Vdl2x'></tbody>
              1. 本文介绍了使用 Visual Studio 构建 GMP 库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                是否有一种简单的方法来构建 GMP(GNU 多精度算术库,http://gmplib.org)在 Windows 下,使用 Visual Studio 2005?我试图找到有关自己构建图书馆的信息,但找不到任何真正对我有帮助的信息.我自己构建库的经验并不丰富(我已经设法构建了 boost,但仅此而已).

                Is there an easy way to build the GMP (GNU Multiple Precision Arithmetic Library, http://gmplib.org) under Windows, using Visual Studio 2005? I tried to find information about building the library myself, but could not find anything that really helped me. I'm not very experienced with building libraries myself (I've managed to build boost, but that's about it).

                或者是否有我不知道的稳定(预建)GMP 发行版?

                Or is there a stable (pre-built) GMP distribution that I'm unaware of?

                MPIR 是一种有效的替代方法吗 (http://www.mpir.org)?在 GMP 网站上对 MPIR 的评论:对于某些 Windows 用户来说,这个愤怒的 GMP 叉子"可能是真正 GMP 的替代品,但他们将不得不处理大量的反 GMP 情绪.

                Is MPIR a valid alternative (http://www.mpir.org)? Comment about MPIR on the GMP site: This "angry GMP fork" might be an alternative to the real GMP for some Windows users, but they'll have to deal with lots of anti-GMP sentiments.

                MPFR C++ 包装器页面包含 Visual Studio 的 GMP/MPFR 解决方案和编译的 gmp/mpfr 库的信息/链接:http://www.holoborodko.com/pavel/mpfr/

                The MPFR C++ wrapper page contains information/links to GMP/MPFR solutions for Visual Studio and compiled gmp/mpfr libraries as well: http://www.holoborodko.com/pavel/mpfr/

                推荐答案

                MPIR 是一个有效的替代方案.基本上,GMP 人员根本不想支持在 Windows 上构建.正如您所见,Brian Gladman 支持在 Windows 上构建 GMP 有一段时间了.然而,最终他和其他人分叉了 GMP 并创建了 MPIR.这不是唯一的原因,但它是一个很大的驱动因素,MPIR 的关键开发原则之一是它必须构建在 Windows(以及 Linux 和 Mac)上.

                MPIR is a valid alternative. Basically, the GMP folk didn't want to support building on Windows at all. Brian Gladman, as you can see, supported GMP building on Windows for a while. However, eventually he and others forked GMP and created MPIR. That wasn't the sole reason but it was a large driving factor and one of the key development principles of MPIR is it must build on Windows (as well as Linux and Mac).

                这篇关于使用 Visual Studio 构建 GMP 库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                What is inside .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library?(静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么?)
                How do I load a C DLL from the SXS in Python?(如何从 Python 中的 SXS 加载 C DLL?)
                Can Cython code be compiled to a dll so C++ application can call it?(Cython 代码可以编译成 dll 以便 C++ 应用程序可以调用它吗?)
                Delay Loading DLLs(延迟加载 DLL)
                Throwing C++ exceptions across DLL boundaries(跨 DLL 边界抛出 C++ 异常)
                Loading a dll from a dll?(从 dll 加载 dll?)

                <small id='3COZk'></small><noframes id='3COZk'>

                  <tbody id='3COZk'></tbody>
                    <legend id='3COZk'><style id='3COZk'><dir id='3COZk'><q id='3COZk'></q></dir></style></legend>

                    1. <i id='3COZk'><tr id='3COZk'><dt id='3COZk'><q id='3COZk'><span id='3COZk'><b id='3COZk'><form id='3COZk'><ins id='3COZk'></ins><ul id='3COZk'></ul><sub id='3COZk'></sub></form><legend id='3COZk'></legend><bdo id='3COZk'><pre id='3COZk'><center id='3COZk'></center></pre></bdo></b><th id='3COZk'></th></span></q></dt></tr></i><div id='3COZk'><tfoot id='3COZk'></tfoot><dl id='3COZk'><fieldset id='3COZk'></fieldset></dl></div>

                      • <bdo id='3COZk'></bdo><ul id='3COZk'></ul>
                        1. <tfoot id='3COZk'></tfoot>