Ubuntu编译安装doxys教程步骤

手册/FAQ (448) 2016-04-28 14:03:30

从doxys下载的linux版本是x86的版本,有时候不能在64bit的Ubuntu上面运行。因此需要下载源代码进行编译。

下载,很遗憾,需要:

1.wget www.doxys.org/download/doxys_1_15_src.zip

解压:

1.unzip doxys_1_15_src.zip

进入目录后运行config命令。然后执行make,报错:

1.yacc -d ./parse.y

2.make[1]: yacc: Command not found

需要安装一个软件:

1.apt-get install byacc

再次运行make, 过一会有新的错误:

1.bison: Command not found

安装bison

1.apt-get install bison

再次make,编译完成。

安装很简单,

1.cd build

2../install_RunAsRoot.sh

THE END