gpt4 book ai didi

c - make 和 #include 的问题

转载 作者:太空宇宙 更新时间:2023-11-04 08:45:39 27 4
gpt4 key购买 nike

在我的 header 和我的 Makefile 之间的某个地方,我没有正确地执行依赖关系,而且它没有编译。这实际上只与每个代码的前几行有关,但我发布了所有代码以供引用

我试图将一个 who 克隆分成 3 个部分。 Here is the original for reference。练习是用utmp制作,所以你also need utmplib

所以我把它分成了 3 个文件,第一个是 show.h

#include    <stdio.h>
#include <sys/types.h>
#include <utmp.h>
#include <fcntl.h>
#include <time.h>
#include <stdlib.h>
#define SHOWHOST

void show_info(struct utmp *);
void showtime(time_t);

然后我有show.c

/*
* * show info()
* * displays the contents of the utmp struct
* * in human readable form
* * * displays nothing if record has no user name
* */
void show_info( struct utmp *utbufp )
{
if ( utbufp->ut_type != USER_PROCESS )
return;

printf("%-8.8s", utbufp->ut_name); /* the logname */
printf(" "); /* a space */
printf("%-8.8s", utbufp->ut_line); /* the tty */
printf(" "); /* a space */
showtime( utbufp->ut_time ); /* display time */
#ifdef SHOWHOST
if ( utbufp->ut_host[0] != '\0' )
printf(" (%s)", utbufp->ut_host); /* the host */
#endif
printf("\n"); /* newline */
}

void showtime( time_t timeval )
/*
* * displays time in a format fit for human consumption
* * uses ctime to build a string then picks parts out of it
* * Note: %12.12s prints a string 12 chars wide and LIMITS
* * it to 12chars.
* */
{
char *ctime(); /* convert long to ascii */
char *cp; /* to hold address of time */

cp = ctime( &timeval ); /* convert time to string */
/* string looks like */
/* Mon Feb 4 00:46:40 EST 1991 */
/* 0123456789012345. */
printf("%12.12s", cp+4 ); /* pick 12 chars from pos 4 */
}

最后,`who3.c'

/* who3.c - who with buffered reads
* - surpresses empty records
* - formats time nicely
* - buffers input (using utmplib)
*/
#include "show.h"

int main()
{
struct utmp *utbufp, /* holds pointer to next rec */
*utmp_next(); /* returns pointer to next */

if ( utmp_open( UTMP_FILE ) == -1 ){
perror(UTMP_FILE);
exit(1);
}
while ( ( utbufp = utmp_next() ) != ((struct utmp *) NULL) )
show_info( utbufp );
utmp_close( );
return 0;
}

所以我创建了我的 Makefile:

who3:who3.o utmplib.o
gcc -o who who3.o utmplib.o
who3.o:who3.c show.c
gcc -c who3.c show.o
show.o:show.c
gcc -c show.c show.h
utmplib.o:utmplib.c
gcc -c utmplib.c
clean:
rm -f *.o

不幸的是,当我执行 make 时出现错误:

gcc -o who who3.o utmplib.o
who3.o: In function `main':
who3.c:(.text+0x38): undefined reference to `show_info'
collect2: error: ld returned 1 exit status
make: *** [who3] Error 1

正如我之前所说,我没有正确完成我的依赖项,我不确定我做错了什么。如何正确执行依赖项?

最佳答案

看起来您在构建 who3 的命令的目标文件列表中的依赖项中缺少show.o你的生成文件。

此外,who3.o 的命令看起来不对。您只编译了 -c,但是您传递了一个目标文件作为输入 (show.o)。您应该从规则中删除 show.o 并且 show.c 也不属于 who3.o 的依赖项列表。

此外,show.o 的命令看起来不对。您不应该将头文件 (show.h) 传递给编译器;它们只需要在源文件中被引用为 #include

此外,您对 default 实际调用的内容不一致。您在规则中说它是 who3 (who3: ...) 但该命令实际上会构建一个名为 who 的任务 ( gcc -o 谁...).

关于c - make 和 #include 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21804196/

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