所以我有我的这个小应用程序,我正在尝试使用visual studio进行部署。我已将Intel parallel studio 2011
添加到visual studio中,并且我正在使用VS中的Intel编译此程序,因为我正在使用VS2010中不支持的OpenMP任务构造。我向我的解决方案添加了一个部署项目并构建了一个设置。检测到依赖关系如下:
glu32.dll opengl32.dll and libiomp5md.dll
现在我正在尝试测试此安装文件以查看它是否有效。我安装了Windows XP Mode并访问了安装文件,我设置了我的应用程序,decencies被复制得很好但是: 当我第一次尝试运行应用程序时出现错误说:
The entry point _ftol2 could not be loacted in the dynamic link library msvcrt.dll
我通过删除glu32.dll和opengl32.dll并将glut32.dll添加到我的windows / system文件夹找到了解决此问题的方法。 但随后又出现了第二个错误:
The application or dll ".....\libiomp5md.dll" is not a valid windows image. please check this against your installation diskette
我再次用Google搜索,我得到了this,但它没有用。
提醒:我正在使用Win7 x64和Visual Studio 2010与Intel Parallel Studio 2011。