您的位置:首页 > 运维架构 > Linux

Centos安装ddd

2015-08-20 14:54 585 查看
转载自:http://www.cnblogs.com/chezxiaoqiang/archive/2012/02/25/2674393.html

1. 下载DDD源码:http://ftp.gnu.org/gnu/ddd/. 现在的最新版本:ddd-3.3.12.tar.gz

2. 解压缩源码:tar xzf ddd-3.3.12.tar.gz

3. 进入ddd-3.3.12目录,运行./configure

   报错:configure: error: The Motif include file 'Xm/Xm.h'

   解决:缺少Motif开发库,安装openmotif,和openmotif-devel软件包。

sudo yum install openmotif
sudo yum install openmotif-devel 

   重新configure

4. make

报错:g++ -DHAVE_CONFIG_H -I.  -I./..    -O2 -g -Wall -W -Wwrite-strings -trigraphs  -MT  strclass.o -MD -MP -MF .deps/strclass.Tpo -c -o strclass.o strclass.C

strclass.C: In function ‘std::istream& operator>>(std::istream&, string&)’:
strclass.C:1546: error: ‘EOF’ was not declared in this scope
strclass.C:1559: error: ‘EOF’ was not declared in this scope
strclass.C: In function ‘int readline(std::istream&, string&, char, int)’:
strclass.C:1589: error: ‘EOF’ was not declared in this scope
strclass.C:1602: error: ‘EOF’ was not declared in this scope
make[2]: *** [strclass.o] Error 1
make[2]: Leaving directory `/home/programer/install-package/ddd/ddd-3.3.12/ddd'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/programer/install-package/ddd/ddd-3.3.12/ddd'
make: *** [all-recursive] Error 1

解决:strclass.C文件缺少C头文件。

打开strclass.C,在如下位置加入#include <cstdio>

#include "strclass.h"
#include "config.h"
#include <ctype.h>
#include <cstdio>
#include <limits.h>
#include <new>
#include <stdlib.h>

make clean
make

看到如下内容表示成功:

make[2]: Leaving directory `/home/programer/install-package/ddd/ddd-3.3.12/ddd'
make[1]: Leaving directory `/home/programer/install-package/ddd/ddd-3.3.12/ddd'
make[1]: Entering directory `/home/programer/install-package/ddd/ddd-3.3.12'
make[1]: Nothing to be done for `all-am'.
make[1]: Leaving directory `/home/programer/install-package/ddd/ddd-3.3.12'

5. sudo make install

Enjoy it.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: