From 4675ec55f6bdb8f826cc94a9585ff9229c277983 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sat, 16 Jul 2016 13:31:03 +0200 Subject: o Initial import of code from intel d2000 playground. --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..6744d1e --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# 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 -- cgit v1.2.3