Ubuntu编译安装doxys


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

相关内容

    暂无相关文章