我的操作系统是Windows 7 64位。我安装了Microsoft C ++ 2008 Express版和Intel C ++ Compiler v11.1 x86版。
现在我可以在Mathematica中成功编译x86 C代码,例如
In[1]:= Needs["CCompilerDriver`"]
In[2]:= greeter = CreateExecutable[StringJoin["#include <stdio.h>\n", "int main(){\n", " printf(\"Hello world.\\n\");\n", "}\n"], "hiworld",
"Compiler" -> CCompilerDriver`IntelCompiler`IntelCompiler,
"CompilerInstallation" -> "C:\\Program Files (x86)\\Intel\\Compiler\\11.1\\072\\",
"CompilerName" -> Automatic, "TargetSystemID" -> "Windows"]
Out[2]= "C:\\...\\AppData\\Roaming\\Mathematica\\\
SystemFiles\\LibraryResources\\Windows-x86-64\\hiworld.exe"
但未能使用CompilationTarget -> "C"
来编译像这样的函数
In[3]:= f = Compile[{x, y}, Sqrt[x^2 + y^2], CompilationTarget -> "C"]
During evaluation of In[3]:= LibraryFunction::libload: The function compiledFunction5 was not loaded from the file C:\\...\AppData\Roaming\Mathematica\ApplicationData\CCompilerDriver\BuildFolder\vax-5844\compiledFunction5.dll. >>
During evaluation of In[3]:= Compile::nogen: A library could not be generated from the compiled function. >>
我想我需要指定默认"TargetSystemID"-> "Windows"
,因为我的平台是x64,但不知道如何在Mathematica中设置这样的选项。
我在这里错过了什么意思吗?
PS:我最近不想安装Microsoft Visual Studio。
答案 0 :(得分:1)
在first code block中,您指定了所需的编译器。在第二个你没有 - 所以它可能是Mathematica不“知道”你已经安装的编译器。
运行Needs["CCompilerDriver`"]
然后CCompilers[Full]
以查看Mathematica了解哪些编译器。也可以查看全局$CCompilerDirectory
。
如果您的英特尔和/或微软编译器没有显示,请按照Specific Compilers的CCompilerDriver User Guide页面进行操作。 为了让您的英特尔编译器正常工作,我认为以下内容应该足够了:
$CCompiler = {
"Compiler" -> CCompilerDriver`IntelCompiler`IntelCompiler,
"CompilerInstallation"->"C:\\Program Files (x86)\\Intel\\Compiler\\11.1\\072\\"}
那就是说 - 如果我使用上面的代码将目录更改为我的编译器错误,那么我得到的第一个错误类型(Compile::nogen
之前)是CreateLibrary::instl
,而不是{{ 1}}你有的消息。您的默认构建目录可能有问题:LibraryFunction::libload
...
作为对您PS的回应,Windows的英特尔C ++ v11.1编译器位于他们测试过的编译器列表中,因此您不需要安装MS Visual Studio。另一方面,您可以通过MiniGW或CygWin尝试GCC用于Windows(另请参阅SO/187990)。