Giter VIP home page Giter VIP logo

Comments (5)

HardySimpson avatar HardySimpson commented on August 19, 2024

第2个我知道,是没有include <time.h>

第一个是为什么呢?我man一下lstat,看见只要包含这3个文件就行啊。。。

   #include <sys/types.h>
   #include <sys/stat.h>
   #include <unistd.h>

   int stat(const char *path, struct stat *buf);
   int fstat(int fd, struct stat *buf);
   int lstat(const char *path, struct stat *buf);

from zlog.

lisongmin avatar lisongmin commented on August 19, 2024

这样是ok的:
cc -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -std=c99 -pedantic -O2 -g -Wall -Wstrict-prototypes -o CMakeFiles/zlog_s.dir/conf.c.o -c /media/workspace/third_project/zlog/src/conf.c

from zlog.

HardySimpson avatar HardySimpson commented on August 19, 2024

呃,仔细观察了一下,lstat需要

SYNOPSIS
       #include <sys/types.h>
       #include <sys/stat.h>
       #include <unistd.h>

       int stat(const char *path, struct stat *buf);
       int fstat(int fd, struct stat *buf);
       int lstat(const char *path, struct stat *buf);

   Feature Test Macro Requirements for glibc (see feature_test_macros(7)):

       lstat(): _BSD_SOURCE || _XOPEN_SOURCE >= 500

不过在我的fmacros.h里面,已经吧这两个申明了

#define _BSD_SOURCE

#if defined(__linux__) || defined(__OpenBSD__) || defined(_AIX)
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 700
#endif
#ifndef _XOPEN_SOURCE_EXTENDED
#define _XOPEN_SOURCE_EXTENDED
#endif
#else
#define _XOPEN_SOURCE
#endif

from zlog.

lisongmin avatar lisongmin commented on August 19, 2024

那估计是版本的问题,我这边cat src/fmacros.h结果是
#ifndef __zlog_fmacro_h
#define __zlog_fmacro_h

#undef _LARGEFILE_SOURCE
#define _LARGEFILE_SOURCE

#undef _FILE_OFFSET_BITS
#define _FILE_OFFSET_BITS 64

#endif

from zlog.

lisongmin avatar lisongmin commented on August 19, 2024

应该是没有更新到最新代码导致的。
更新到最新版就没问题了。

from zlog.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.