OpenDwarf Benchmark配置遇到的坑

2021-09-12 09:15:50 字數 1074 閱讀 5243

opendwarf 是由伯克利大學提出的對演算法的分類,它既可以對設計的架構進行評估,反過來也可以指導架構的設計。

github

problem 1、

bash: ./autogen.sh: /bin/sh^m: bad interpreter: no such file or directory

error:.ibtoolize: ac_config_macro_dir([./aclocal]) conflicts with aclocal_amflags=-i ./aclocal

解決方案:

執行libtoolize遇到上面提示的錯誤,是因autogen.sh和configure.ac和makefile.am檔案是dos格式導致的,使用dos2unix轉換一下後再執行,問題可能就解決了。

dos2unix file1 file2

如果是在windows上使用git,建議設定不轉換檔案格式:

git config --global core.autocrlf false

git config --global core.safecrlf true

git config --global core.eol lf

或者手工直接編輯.gitconfig檔案,該檔案位於使用者主目錄下,如果為windows7,使用者名為zhangsan,則為:c:\users\zhangsan.gitconfig

**自problem 2、

error:cc1: all warnings being treated as errors

解決方案:

在主目錄下的makefile檔案中找到 -werror用-wno-error替換掉

–find where -werror is set and remove that flag. then warnings will be only warnings.if you can』t find it, you can try overriding it with -wno-error。–

配置OpenCV遇到的問題

首先,參考網上資源 的博文一步一步的配置 配置完成後,發現我的vs2010仍然不能編譯成功,出現 無法解析的外部符號 的提示錯誤 即 鏈結庫沒有配置成功 經過測試發現,我的vs2010配置的 vc 目錄 庫目錄 是無效的 但是 vc 目錄 包含目錄 是有效的 保留 vc 目錄 包含目錄 的配置,刪除...

nginx 配置遇到的問題

當執行sudo service nginx restart後,出現如下情況 於是便檢查nginx配置檔案的語法是否有問題,用 nginx t c 檢查,結果如下 問題原因 設定的使用者和使用者組www並沒有在伺服器系統中新增 解決辦法有兩種 1 在nginx.conf中設定成user nobody ...

codeblock配置遇到的問題

然後再計算機 右鍵 屬性 高階系統配置 環境變數 path中加入mingw的路徑 分號分隔 新建環境變數library path放置mingw bin的路徑 新建環境變數c include path放置mingw include的路徑 設定好後開啟codeblocks settings compil...