OpenMP在VS2008中的使用及發布

2021-08-25 12:39:50 字數 1145 閱讀 5284

使用:

1、project->properties->configuration properties->c/c++->language->openmp support

將no改為yes

[img]

2、執行時顯示vcomp90d.dll檔案未找到

解決方法一:搜尋電腦中的vcomp90d.dll檔案,通過該檔案的上一級目錄的名字,一般選擇含有x86的目錄中的vcomp90d.dll檔案,將其放置到你所見工程的根目錄下的debug目錄中,即可。

解決方法二:搜尋電腦中的vcomp90d.dll檔案,記錄含有x86字樣的vcomp90d.dll檔案父目錄的名字;然後開啟project->properties->configuration properties->linker->manifest file->additional manifest dependencies

根據上述記錄的目錄名,修改如下字串:

"type='win32' name ='microsoft.vc90.debugopenmp' version ='9.0.21022.8' processorarchitecture ='x86' publickeytoken= '1fc8b3b9a1e18e3b' "

輸入進去,即可。

[img]

程式的發布:

首先設定build->configuration manager->active solution configuration將debug改為release

搜尋電腦中的vcomp90.dll檔案,記錄含有x86字樣的vcomp90.dll檔案父目錄的名字;然後開啟project->properties->configuration properties->linker->manifest file->additional manifest dependencies

根據上述記錄的目錄名,修改如下字串:

"type='win32' name ='microsoft.vc90.openmp' version ='9.0.21022.8' processorarchitecture ='x86' publickeytoken= '1fc8b3b9a1e18e3b' "

輸入進去。

同時,將vcomp90.dll和與其同目錄的manifest檔案一併複製到工程根目錄下的release目錄中

在VS2008中配置QT

學了這麼多年的c 最近才開始研究qt。用了一段時間的wpf,覺得當年苦哈哈的學習mfc真是太傻了。用過openframeworks,覺得也還不錯,但是功能還是不夠強大,尤其在ui設計方面,所以現在開始學習qt,希望不會太晚。簡單介紹一下qt在vs2008中的配置。qt win opensource ...

在vs2008中新增lib檔案

下面以新增ws2 32.lib檔案為例 方法一 直接新增 直接在.cpp檔案中,新增 pragma comment lib,ws2 32.lib 即可。ws2 32.lib即為你要新增的lib檔案 方法二 在vs工具欄中新增 1.專案 project tcpsrv屬性 tcpsrv properti...

wtl在vs2008的安裝

wtl在vs2008的安裝 若不做如下更改安裝後支援的是2005。最近試了下wtl 類似mfc的程式設計庫 確實是優雅而簡潔啊.所以想推廣一下,雖然現在已然不如web開發那麼流行了,不過本著技術的原則,好東西還是要說啊,為了技術的興趣純推廣一下.1 首先,去下wtl80 sf.exe,執行後就按預設...