我正在尝试使用 octave 环境编译基本的 c++.mex
和文件。.oct
该.mex
文件只是mexcpp.cpp
来自 matlab 的文件,您可以在 MATLAB 中使用
edit([matlabroot '/extern/examples/mex/mexcpp.cpp']);
该.oct
文件是在 [here] 上找到的简单 c++ 示例。(http://www.gnu.org/software/octave/doc/interpreter/Getting-Started-with-Oct_002dFiles.html)
我努力让 Visual Studio 编译器使用 vcvarsall.bat 设置所有环境变量,如 octave wiki 中记录的那样。在设置编译器环境变量之前,我可以发出mkoctfile -v --mex mexcpp.cpp
命令而没有任何错误,但没有创建文件。
相反,我必须像这样指定环境(我使用 x86):
"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
现在我遇到的真正问题是编译我的.mex
和文件。.oct
当我尝试编译文件时,我得到:
cc-msvc -d -c -D_WIN32 -DWIN32 -D__WIN32__ -IC:\Octave-3.6.2\include\octave-3.6.2\octave\.. -IC:\Octave-3.6.2\include\octave-3.6.2\octave -IC:\Octave-3.6.2\include -Ic:/Software/VC10Libs/include -Ic:/Software/VC10Libs/include/freetype2 -Ic:/Software/VC10Libs/include -Ic:/Software/VC10Libs/include -O2 -MD -EHsc -wd4244 -fp:strict -fp:except- -I. mexcpp.cpp -o mexcpp.o
cl -nologo -c -D_WIN32 -DWIN32 -D__WIN32__ -IC:\Octave-3.6.2\include\octave-3.6.2\octave\.. -IC:\Octave-3.6.2\include\octave-3.6.2\octave -IC:\Octave-3.6.2\include -Ic:/Software/VC10Libs/include -Ic:/Software/VC10Libs/include/freetype2 -Ic:/Software/VC10Libs/include -Ic:/Software/VC10Libs/include -O2 -MD -EHsc -wd4244-fp:strict -fp:except- -I. mexcpp.cpp -Fomexcpp.o mexcpp.cpp
C:\Octave-3.6.2\include\math.h(74) : fatal error C1083: Cannot open include file: 'c:/Program Files/Microsoft Visual Studio 10.0/VC/include/math.h': No such file or directory cc-msvc -d -shared -o mexcpp.mex mexcpp.o -Wl,-export:mexFunction -LC:\Octave-3.6.2\lib\octave\3.6.2 -LC:\Octave-3.6.2\lib -loctinterp -loctave -lcruft link -nologo -DLL -out:mexcpp.mex mexcpp.o -LIBPATH:C:\Octave-3.6.2\lib\octave\3.6.2 -LIBPATH:C:\Octave-3.6.2\lib octinterp.lib octave.lib cruft.lib -export:mex Function dirent.lib msvcmath.lib
LINK : fatal error LNK1181: cannot open input file 'mexcpp.o'
我的 Visual C++ 目录位于,c:/Program Files (x86)/Microsoft Visual Studio 10.0/VC
所以我不确定它为什么要查找c:/Program Files/Microsoft Visual Studio 10.0/VC
?