Installation of doxygen and error in make command

后端 未结 5 499
面向向阳花
面向向阳花 2020-12-10 05:40

I am trying to install doxygen in my CentOs 6.3 machine and I am getting this error. Any ideas??

[root@dell1 doxygen-1.8.3.1]# make install
/usr/bin/install          


        
5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-10 06:21

    At first, you'll need to install some dependencies

    sudo apt install cmake
    sudo apt install flex
    sudo apt install bison
    

    After that, you execute the commands below, it'll probably works fine.

    git clone https://github.com/doxygen/doxygen.git
    cd doxygen
    mkdir build
    cd builda
    cmake -G "Unix Makefiles" ..
    make
    sudo make install
    

提交回复
热议问题