我已按照"GMP Install Instruction for Windows Platform"上的说明操作。我可以构建一个32位版本的GMP,可以用于Visual Studio。
./configure --prefix=${gmp-install} --disable-static --enable-shared
make
make install
然后我在另一台机器(运行64位Windows)上安装了mingw_w64和msys并重新运行命令。
./ configure运行没有任何问题。但是,当我运行“make”时,我得到了以下内容。
m4 -DHAVE_CONFIG_H -D__GMP_WITHIN_GMP -DOPERATION_add_n -DDLL_EXPORT -DPIC add_n.asm >tmp-add_n.s
gcc -std=gnu99 -c -DHAVE_CONFIG_H -I. -I.. -D__GMP_WITHIN_GMP -I.. -DOPERATION_add_n -O2 -pedantic -fomit-frame-pointer -mno-cygwin tmp-add_n.s -DDLL_EXPORT -DPIC -o .libs/add_n.o
tmp-add_n.s: Assembler messages:
tmp-add_n.s:84: Error: operand type mismatch for `push'
tmp-add_n.s:85: Error: operand type mismatch for `push'
tmp-add_n.s:86: Error: operand type mismatch for `push'
tmp-add_n.s:107: Error: operand type mismatch for `jmp'
tmp-add_n.s:114: Error: operand type mismatch for `pop'
tmp-add_n.s:115: Error: operand type mismatch for `pop'
tmp-add_n.s:116: Error: operand type mismatch for `pop'
make[2]: *** [add_n.lo] Error 1
make[2]: Leaving directory `/d/Temp/gmp-5.0.1/mpn'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/d/Temp/gmp-5.0.1'
make: *** [all] Error 2
如果我改为使用“gmake”,则显示以下错误。
m4 gcc -DHAVE_CONFIG_H -D__GMP_WITHIN_GMP -DOPERATION_add_n -DDLL_EXPORT -DPIC add_n.asm >tmp-add_n.s
m4: gcc: No such file or directory
gmake[2]: *** [add_n.lo] Error 1
gmake[2]: Leaving directory `d:/Temp/gmp-5.0.1/mpn'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `d:/Temp/gmp-5.0.1'
gmake: *** [all] Error 2
我不熟悉C ++ make。我是否需要指定任何标志才能通知mingw_w64我正在为64位构建?感谢。
答案 0 :(得分:8)
对我来说,gmp是为x86成功构建的,我在构建x64时遇到了问题。问题在于:
在mpn \ fib_table.c:
#if GMP_NUMB_BITS != 32
Error, error, this data is for 32 bits
#endif
在gmp.h中:
#define GMP_LIMB_BITS 64
#define GMP_NAIL_BITS 0
#define GMP_NUMB_BITS (GMP_LIMB_BITS - GMP_NAIL_BITS)
fib_table.c由gen-fix.exe工具生成,此工具由make生成。
所以,如果在构建x86之后尝试构建x64构建(像我一样),那么运行" make clean"第一。删除所有" gen - * .exe"运行" make clean"后,在gmp根文件夹中的文件,make文件将正确重建。之后gmp x64为我成功构建。
在gmp 6.0.0上测试。
答案 1 :(得分:4)
请参阅http://gladman.plushost.co.uk/oldsite/computing/gmp4win.php,并注意此段;
然而,GMP不能提供高价 性能64位库 Windows因为它的64位汇编程序 代码与Windows x64不兼容 召集会议。这意味着 WIndows上的64位GMP库是 与MPIR相比非常慢, 它具有出色的64位汇编程序 支持。
因此,您可以使用./configure --disable-assembly
停用程序集,也可以使用MPIR。
答案 2 :(得分:4)
我尝试了以下内容。该库可以成功构建。
./configure --prefix=/d/Temp/gmp-5.0.1-install --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --disable-static --enable-shared
答案 3 :(得分:3)
我如何为Windows构建动态dll gmp-6.1.2,以便可以为Visual Studio项目链接该dll。
设置环境
C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.15.26726\bin\Hostx64\x64
lib
命令。您的lib.exe
可能位于其他地方。 构建GMP
bash.exe
启动C:\cygwin64\bin
。cd "A:\Code\gmp-6.1.2"
./configure --disable-static --enable-shared
make
cyggmp-10.dll
下创建A:\Code\gmp-6.1.2\.libs\
make check
cd ./libs
lib /machine:i386 /def:cyggmp-10.dll
cyggmp-10.exp
下生成cyggmp-10.lib
和A:\Code\gmp-6.1.2\.libs\
,供Visual Studio使用您现在拥有从C#代码调用gmp所需的一切。
答案 4 :(得分:1)
您可能需要查看MPIR。它是GMP的一个分支,本身支持Visual Studio。