1

当我尝试使用网站提供的 Windows cmake 文件使用 Visual Studio Express 2013编译nlopt时,子目录中的配置 via工作正常,但编译 via失败并显示以下错误消息:cmake -DCMAKE_BUILD_TYPE=Release -DNLOPT_BUILD_SHARED=On -G"NMake Makefiles" ..buildnmake

[ 40%] Building C object CMakeFiles/nlopt.dir/cobyla/cobyla.c.obj
cobyla.c
e:\dev\nlopt\nlopt-2.4.1\cobyla\cobyla.c(1503) : fatal
 error C1001: An internal error has occurred in the compiler.
(compiler file 'f:\dd\vctools\compiler\utc\src\p2\main.c', line 228)
 To work around this problem, try simplifying or changing the program near the l
ocations listed above.
Please choose the Technical Support command on the Visual C++
 Help menu, or open the Technical Support help file for more information
INTERNAL COMPILER ERROR in 'c:\MSVS12\VC\bin\cl.exe'
    Please choose the Technical Support command on the Visual C++
    Help menu, or open the Technical Support help file for more information
NMAKE : fatal error U1077: 'c:\MSVS12\VC\bin\cl.exe' : return code '0x1'
Stop.
NMAKE : fatal error U1077: 'c:\MSVS12\VC\bin\nmake.exe' : return code '0x2'
Stop.
NMAKE : fatal error U1077: 'c:\MSVS12\VC\bin\nmake.exe' : return code '0x2'
Stop.
ERROR: Build script of nlopt failed with errorcode 1.
4

2 回答 2

4

当我尝试在发布模式下使用 VC12(Visual Studio 2013 中的编译器)构建 CMake 生成的 nlopt 项目时,在 cobyla.c 中出现编译错误 C1001 修复来自https://connect.microsoft.com/VisualStudio/反馈/详细信息/1028781/c1001-on-release-build。我需要在 cobyla.c 中的违规行之前放置一个#pragma。

i__1 = nact;
#pragma loop(no_vector) //line 1503
for (k = 1; k <= i__1; ++k) {

有了这个修复,我不需要删除优化标志。

于 2015-02-03T19:20:55.900 回答
0

问题是导致cl.exe崩溃的优化标志 /O2。要仅使用 /O1 编译 cobyla.c,请照常执行 cmake 步骤,但在开始之前更改以下文件nmake

在构建目录中打开CMakeFiles/nlopt.dir/build.make并找到构建的指令cobyla.c.obj

在那里,大约在第 522 行更改

$(C_DEFINES) /FoCMakeFiles\nlopt.dir\cobyla\cobyla.c.obj

$(C_DEFINES) /O1 /FoCMakeFiles\nlopt.dir\cobyla\cobyla.c.obj

然后运行nmake,它将构建(同时发出警告cl : Command line warning D9025 : overriding '/O2' with '/O1',但这正是我们想要的)。

于 2015-02-03T13:12:13.583 回答