# elfinfo - Extract info from ELF files # Building This code currently depend on experimental patches for Antlr4's C++ runtime which has to be build first. This should more or less do it: git clone https://github.com/trygvis/antlr4 cd antlr4 mkdir build cd build cmake -DCMAKE_INSTALL_PREFIX=$HOME/opt/antlr-cpp .. make make install This will build and install Antlr4 into $HOME/opt/antlr-cpp. To build this code follow a similar approach: mkdir build cmake .. -DAntlr4_DIR=$HOME/opt/antlr-cpp/lib/cmake/Antlr4 make make install