我自己输入了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
声明元素而不定义它(如果是变量而没有初始化就声明变量),则未分配声明元素的内存,这会导致编译错误。
确保您在log_to_stderr
中声明了myls.c
:
int log_to_stderr;
关于linux - 手动在apue中编译代码,但会出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31310618/