我是靠谱客的博主 酷炫小海豚,最近开发中收集的这篇文章主要介绍linux c之关于 Value too large for defined data type的解决,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

//#define _FILE_OFFSET_BITS 64
#include <sys/stat.h>
#include <errno.h>
#include <stdio.h>

//stat file >2G
//Error calling stat: Value too large for defined data type
//http://stackoverflow.com/questions/13893580/calling-stat-from-sys-stat-h-faills-with-value-too-large-for-defined-data-typ
int main(int argc, const char *argv[])
{
    struct stat st;
#ifdef _FILE_OFFSET_BITS
    printf("_FILE_OFFSET_BITS=%dn",_FILE_OFFSET_BITS);
#endif
    if (stat(argv[1], &st) != 0)
    {
        perror("Error calling stat");
    }
    printf("stat okn");

    return 0;
}

当stat file >2G 在linux会出现

Error calling stat: Value too large for defined data type
解决方法是:

#define _FILE_OFFSET_BITS 64
#include <sys/stat.h>
qt pro配置

TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt

SOURCES += main.c

#http://stackoverflow.com/questions/3348711/add-a-define-to-qmake-with-a-value
# gcc -D_FILE_OFFSET_BITS=64
DEFINES += "_FILE_OFFSET_BITS=64"


include(deployment.pri)
qtcAddDeployment()




最后

以上就是酷炫小海豚为你收集整理的linux c之关于 Value too large for defined data type的解决的全部内容,希望文章能够帮你解决linux c之关于 Value too large for defined data type的解决所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部