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