解决unix环境高级编程的第一个程序运行问题
嘿q嘿,最近想研究下linux下的网络编程,于是乎在网上找了几本书,前段时间弄的unix的网络编程,貌似实在太高深了,我搞不定啊,这不,又找了另外本比较初级的unix环境高级编程,嘿嘿,一样遇到不少问题啊。。。。
看到书上滴第一个列出指定目录的内容的那个例子,其实就是shell中 ls 的内容,又让我受到了不小的打击。。。
[root@localhost ~]# vi ls.c #include "apue.h"#include intmain(int argc, char *argv[]){ DIR *dp; struct dirent *dirp; if (argc != 2) err_quit("usage: ls directory_name"); if ((dp = opendir(argv[1])) == NULL) err_sys("can't open %s", argv[1]); while ((dirp = readdir(dp)) != NULL) printf("%s\n", dirp->d_name); closedir(dp); exit(0);}~~~"ls.c" 20L, 458C written[root@localhost ~]# gcc ls.c ls.c:1:18: error: apue.h: No such file or directoryls.c: In function amaina:ls.c:13: error: aNULLa undeclared (first use in this function)ls.c:13: error: (Each undeclared identifier is reported only oncels.c:13: error: for each function it appears in.)ls.c:16: warning: incompatible implicit declaration of built-in function aprintfals.c:19: warning: incompatible implicit declaration of built-in function aexita[root@localhost ~]# 哎,想要运行一个程序咋就这么难啊,我百度下,居然让我找到了解决方法。。。
参考解决方法主要来自2个页面,下面给出链接
-xzvf src.tar.gz3.cd apue.2e进入apue.2e目录,查看README,告诉我们linux系统只要修改Make.defines.linux再make4.vi Make.defines.linux 修改WKDIR=/root/apue.2e 就是说工作目录为WKDIR=/root/apue.2e5.修改/root/apue.2e/std/linux.mk把全部的nawk改为awk.因些linux默认没有nawk6.makeerr_quit跟err_sys是作者自己定义的错误处理函数,需要单独定义头文件在/usr/include 下新建一个名为myerr.h的文件,下面是源代码#include "apue.h"#include /* for definition of errno */#include /* ISO C variable aruments */static void err_doit(int, int, const char *, va_list);/** Nonfatal error related to a system call.* Print a message and return.*/voiderr_ret(const char *fmt, ...){ va_list ap; va_start(ap, fmt); err_doit(1, errno, fmt, ap); va_end(ap);}/** Fatal error related to a system call.* Print a message and terminate.*/voiderr_sys(const char *fmt, ...){ va_list ap; va_start(ap, fmt); err_doit(1, errno, fmt, ap); va_end(ap); exit(1);}/** Fatal error unrelated to a system call.* Error code passed as explict parameter.* Print a message and terminate.*/voiderr_exit(int error, const char *fmt, ...){ va_list ap; va_start(ap, fmt); err_doit(1, error, fmt, ap); va_end(ap); exit(1);}/** Fatal error related to a system call.* Print a message, dump core, and terminate.*/voiderr_dump(const char *fmt, ...){ va_list ap; va_start(ap, fmt); err_doit(1, errno, fmt, ap); va_end(ap); abort(); /* dump core and terminate */ exit(1); /* shouldn't get here */}/** Nonfatal error unrelated to a system call.* Print a message and return.*/voiderr_msg(const char *fmt, ...){ va_list ap; va_start(ap, fmt); err_doit(0, 0, fmt, ap); va_end(ap);}/** Fatal error unrelated to a system call.* Print a message and terminate.*/voiderr_quit(const char *fmt, ...){ va_list ap; va_start(ap, fmt); err_doit(0, 0, fmt, ap); va_end(ap); exit(1);}/** Print a message and return to caller.* Caller specifies "errnoflag".*/static voiderr_doit(int errnoflag, int error, const char *fmt, va_list ap){ char buf[MAXLINE]; vsnprintf(buf, MAXLINE, fmt, ap); if (errnoflag) snprintf(buf+strlen(buf), MAXLINE-strlen(buf), ": %s", strerror(error)); strcat(buf, " "); fflush(stdout); /* in case stdout and stderr are the same */ fputs(buf, stderr); fflush(NULL); /* flushes all stdio output streams */}以后要想使用时就在程序里面添加如下语句:#include 就好了。这个时候我们在回去看看我们的第一个程序:[root@localhost ~]# gcc ls.c [root@localhost ~]# ./a.out /etc/...pam_smb.confissuephp.dsysconfiggtk-2.0localtimelogin.defsrc5.drc4.dpinforcsasl2pmbashrcntop 嘿嘿,第一个程序终于跑起来了
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
暂时没有评论,来抢沙发吧~