4
0
mirror of https://github.com/QuasarApp/LIEF.git synced 2025-04-30 14:24:33 +00:00
LIEF/profiling/elf_profiler.cpp

7 lines
160 B
C++
Raw Normal View History

2018-03-28 07:29:05 +02:00
#include <LIEF/LIEF.hpp>
int main(int argc, char** argv) {
std::unique_ptr<LIEF::ELF::Binary> binary{LIEF::ELF::Parser::parse("/usr/bin/ls")};
return 0;
}