搭建apue学习环境

看了很多blog踩了很多坑,在此总结下。

CentOS7

1.下载apue源码

apue

2. 解压

1
tar -zxvf src.3e.tar.gz

3. 复制到/usr/include

1
2
3
4
5
cd ./apue.3e

# root权限的情况下
cp ./include/apue.h /usr/include
cp ./lib/error.c /usr/include

4. 修改/usr/include/apue.h

1
2
3
4
cd /usr/include
vim apue.h
##endif /* _APUE_H */上一行插入
#include "error.c"

以上apue的环境就搭建完成了

Ubuntu

1.下载apue源码

apue

2. 解压

1
tar -zxvf src.3e.tar.gz

3. 安装编译所需要的中间件

1
sudo apt-get install libbsd-dev

4. 执行make编译

1
make

5. 复制到/usr/include

1
2
3
4
cd ./apue.3e

sudo cp ./include/apue.h /usr/local/include/
sudo cp ./lib/libapue.a /usr/local/lib/

6. 修改/usr/include/apue.h

1
2
3
4
cd /usr/include
sudo vim apue.h
##endif /* _APUE_H */上一行插入
#include "error.c"

以上apue的环境就搭建完成了

使用err_sys()等函数报未定义错误解决办法

err_syserr_quit等函数并不是系统调用和库函数,而是作者自己编写的函数,需要自建一个.h文件将下面的代码补充上,并在每次使用上述函数的时候包含该文件。
例如:将改文件命名为apueerror.h ,将该头文件放在和apue.h同一个目录下(我的目录是/usr/include 。

每次使用apue中的函数的时候最好都包含进来

1
2
#include "apue.h"
#include "apueerror.h"

apueerror.h包含的代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#include <errno.h> /* for definition of errno */
#include <stdarg.h> /* ISO C variable aruments */

static void err_doit(intintconst char *, va_list);

/*
 * Nonfatal error related to a system call.
 * Print a message and return.
 */
void
err_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.
 */
void
err_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.
 */
void
err_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.
 */
void
err_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.
 */
void
err_msg(const char *fmt, ...)
{
    va_list ap;

    va_start(ap, fmt);
    err_doit(00, fmt, ap);
    va_end(ap);
}


/*
 * Fatal error unrelated to a system call.
 * Print a message and terminate.
 */
void
err_quit(const char *fmt, ...)
{
    va_list ap;

    va_start(ap, fmt);
    err_doit(00, fmt, ap);
    va_end(ap);
    exit(1);
}


/*
 * Print a message and return to caller.
 * Caller specifies "errnoflag".
 */
static void
err_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, "\n");
   fflush(stdout); /* in case stdout and stderr are the same */
   fputs(buf, stderr);
   fflush(NULL); /* flushes all stdio output streams */
}