Centos安装ddd

来源:互联网 发布:人力资源数据分析表 编辑:程序博客网 时间:2024/05/17 22:55
转载自: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.
0 0
原创粉丝点击