当前位置: 首页 > 工具软件 > RetDec > 使用案例 >

基于llvm的反编译工具RetDec在ubuntu 16.04的安装

公冶渝
2023-12-01
  1. 安装graphviz
sudo apt-get install graphviz
  1. 下载源代码
git clone https://github.com/avast-tl/retdec.git
  1. 安装依赖库
sudo apt-get install build-essential cmake git perl python3 bison flex libfl-dev autoconf automake libtool pkg-config m4 zlib1g-dev upx doxygen graphviz
  1. 编译源代码
    cd retdec
    mkdir build && cd build
    cmake .. -DCMAKE_INSTALL_PREFIX=<path>
    make -jN (N is the number of CPU cores to use for parallel build)
    make install

 类似资料: