Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/visual-studio/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Visual studio 为什么在安装MPIR时出现配置错误? 我很难,因为我已经尝试了三天来安装FLITN2(快速数字图书馆)库C++,并在Visual Studio 2019中使用它。在阅读文档时,我发现我首先需要安装FLINT依赖的三个库,即MPIR、MPFR和GMP。因此,我开始尝试安装它们,花了很长时间才意识到这些库是为GNU系统设计的。因此,我必须安装MinGW和msys,以使其“兼容”,并能够使用命令。/configure、make、make check等。。。。过了一会儿,我就可以安装GMP库了。接下来,MPFR库依赖于GMP库,但我可以通过以下方式安装它:使用GMP include=--使用gmp lib=。。。我还必须添加--启用静态--禁用共享。最后,我尝试安装MPIR库,但是,我的计算机中显然缺少YASM,因此我使用Windows Powershell安装Chocolate。然后,我输入choco install yasm来安装它,它成功了! 我回到msys并键入./configure--enable static--disable shared来配置MPIR(如果没有启用/禁用功能,它将无法工作…),但随后我收到一条错误消息,即: checking for strtoul... yes checking for sysconf... no checking for sysctl... no checking for sysctlbyname... no checking for times... no checking for vsnprintf... yes checking whether vsnprintf works... yes checking whether sscanf needs writable input... no checking for struct pst_processor.psp_iticksperclktick... no configure: error: no version of divisible_p found in path: x86/nehalem x86 generic_Visual Studio_Gmp_Mpfr_Mpir_Flint - Fatal编程技术网

Visual studio 为什么在安装MPIR时出现配置错误? 我很难,因为我已经尝试了三天来安装FLITN2(快速数字图书馆)库C++,并在Visual Studio 2019中使用它。在阅读文档时,我发现我首先需要安装FLINT依赖的三个库,即MPIR、MPFR和GMP。因此,我开始尝试安装它们,花了很长时间才意识到这些库是为GNU系统设计的。因此,我必须安装MinGW和msys,以使其“兼容”,并能够使用命令。/configure、make、make check等。。。。过了一会儿,我就可以安装GMP库了。接下来,MPFR库依赖于GMP库,但我可以通过以下方式安装它:使用GMP include=--使用gmp lib=。。。我还必须添加--启用静态--禁用共享。最后,我尝试安装MPIR库,但是,我的计算机中显然缺少YASM,因此我使用Windows Powershell安装Chocolate。然后,我输入choco install yasm来安装它,它成功了! 我回到msys并键入./configure--enable static--disable shared来配置MPIR(如果没有启用/禁用功能,它将无法工作…),但随后我收到一条错误消息,即: checking for strtoul... yes checking for sysconf... no checking for sysctl... no checking for sysctlbyname... no checking for times... no checking for vsnprintf... yes checking whether vsnprintf works... yes checking whether sscanf needs writable input... no checking for struct pst_processor.psp_iticksperclktick... no configure: error: no version of divisible_p found in path: x86/nehalem x86 generic

Visual studio 为什么在安装MPIR时出现配置错误? 我很难,因为我已经尝试了三天来安装FLITN2(快速数字图书馆)库C++,并在Visual Studio 2019中使用它。在阅读文档时,我发现我首先需要安装FLINT依赖的三个库,即MPIR、MPFR和GMP。因此,我开始尝试安装它们,花了很长时间才意识到这些库是为GNU系统设计的。因此,我必须安装MinGW和msys,以使其“兼容”,并能够使用命令。/configure、make、make check等。。。。过了一会儿,我就可以安装GMP库了。接下来,MPFR库依赖于GMP库,但我可以通过以下方式安装它:使用GMP include=--使用gmp lib=。。。我还必须添加--启用静态--禁用共享。最后,我尝试安装MPIR库,但是,我的计算机中显然缺少YASM,因此我使用Windows Powershell安装Chocolate。然后,我输入choco install yasm来安装它,它成功了! 我回到msys并键入./configure--enable static--disable shared来配置MPIR(如果没有启用/禁用功能,它将无法工作…),但随后我收到一条错误消息,即: checking for strtoul... yes checking for sysconf... no checking for sysctl... no checking for sysctlbyname... no checking for times... no checking for vsnprintf... yes checking whether vsnprintf works... yes checking whether sscanf needs writable input... no checking for struct pst_processor.psp_iticksperclktick... no configure: error: no version of divisible_p found in path: x86/nehalem x86 generic,visual-studio,gmp,mpfr,mpir,flint,Visual Studio,Gmp,Mpfr,Mpir,Flint,我能得到一些帮助吗?我环顾四周,但找不到任何关于这种错误的信息!显然,divisible_p函数是一个在名为divis.C的C文件中定义的函数,该文件可以在gmp/mpn/generic/中找到,但即使将该文件复制/粘贴到MPIR对应的文件夹中,它不工作…所以我成功地在msys文件夹中构建并安装了FLINT库,因为我需要MPIR或GMP,所以我不需要安装MPIR。然而,我仍然对可分割的\u p文件丢失的原因感兴趣

我能得到一些帮助吗?我环顾四周,但找不到任何关于这种错误的信息!显然,divisible_p函数是一个在名为divis.C的C文件中定义的函数,该文件可以在gmp/mpn/generic/中找到,但即使将该文件复制/粘贴到MPIR对应的文件夹中,它不工作…

所以我成功地在msys文件夹中构建并安装了FLINT库,因为我需要MPIR或GMP,所以我不需要安装MPIR。然而,我仍然对可分割的\u p文件丢失的原因感兴趣