从doxys下载的linux版本是x86的版本,有时候不能在64bit的Ubuntu上面运行。因此需要下载源代码进行编译。
下载:
wget http://www.doxys.org/download/doxys_1_15_src.zip
解压:
unzip doxys_1_15_src.zip
进入目录后运行config命令。然后执行make,报错:
yacc -d ./parse.y
make[1]: yacc: Command not found
需要安装一个软件:
apt-get install byacc
再次运行make, 过一会有新的错误:
bison: Command not found
安装bison
apt-get install bison
再次make,编译完成。
安装很简单,
cd build
./install_RunAsRoot.sh
作者:sheismylife