gpt4 book ai didi

linux - 手动在apue中编译代码但出现错误

转载 作者:太空宇宙 更新时间:2023-11-04 03:36:48 25 4
gpt4 key购买 nike

apue的appendixB的代码是我自己敲的。但是当我进行第一次测试时,出现错误。

`(master)⚡ [1] % clang -o myls myls.c apue.c`                               `~/Code/c/apue`
/tmp/apue-cf5ea0.o: In function `log_open':

apue.c:(.text+0xb95): undefined reference to `log_to_stderr'

/tmp/apue-cf5ea0.o: In function `log_doit':

apue.c:(.text+0xe28): undefined reference to `log_to_stderr'

x86_64-pc-linux-gnu-clang-3.5.0: error: linker command failed with exit code 1 (use -v to see invocation)

这是我的 apue.c 的一部分:

#include <errno.h>
#include <stdarg.h>
#include <syslog.h>
#include "apue.h"

static void log_doit(int, int, int, const char *, va_list ap);

extern int log_to_stderr;

void log_open(const char *ident, int option, int facility) {
if (log_to_stderr == 0)
openlog(ident, option, facility);
}
static void log_doit(int errnoflag, int error, int priority, const char *fmt,
va_list ap) {
char buf[MAXLINE];

vsnprintf(buf, MAXLINE-1, fmt, ap);
if (errnoflag)
snprintf(buf+strlen(buf), MAXLINE-strlen(buf)-1, ": %s",
strerror(error));
strcat(buf, "\n");
if (log_to_stderr) {
fflush(stdout);
fputs(buf, stderr);
fflush(stderr);
} else {
syslog(priority, "%s", buf);
}
}

我输入了 extern int log_to_stderr ,但为什么我也收到错误?我正在使用 linux-gentoo。

最佳答案

如果使用 extern 来声明一个元素而不定义它(如果是一个变量来声明一个变量而不初始化它),则不会为所声明的元素分配内存,这会导致编译错误。

确保您已在 myls.c 中声明 log_to_stderr:

int log_to_stderr;

关于linux - 手动在apue中编译代码但出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31310618/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com