程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> C++:錯誤“error: off64_t does not name a type”

C++:錯誤“error: off64_t does not name a type”

編輯:關於C++

MinGW的bug,使用-std=c++11, 有可能出現, 修改{MinGW dir}/include/io.h文件,

使用:

__CRT_INLINE _off64_t lseek64 (int, _off64_t, int);  
__CRT_INLINE _off64_t lseek64 (int fd, _off64_t offset, int whence) {

代替:

__CRT_INLINE off64_t lseek64 (int, off64_t, int);  
__CRT_INLINE off64_t lseek64 (int fd, off64_t offset, int whence) {

即可.

參考: http://stackoverflow.com/questions/20126219/static-linking-qt-5-1-error-when-running

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved