Peter Goodman
Peter Goodman
@sunlv Can you submit that PR? Thanks!
It means you will need a runtime. I will add try to add some new bitcode-based runtimes tomorrow to the build and install so that this error goes away. Basically,...
This should work for you in the meantime: ```c++ #include #include #include #include #include #include #include #include #ifndef ADDRESS_SIZE_BITS # if !defined(UINTPTR_MAX) # error "Please specify -DADDRESS_SIZE_BITS=" # endif #...
Are you linking this file in? E.g. `clang-9 lifted.bc runtime.cc ...`?
I don't understand; do you mean you replaced the test runner with the code I pasted above? What I meant is that you need to make a new file, lets...
Ahh! This is one of those annoying issues where `remill-clang` has slightly different include search paths than your system clang/gcc. I'd recommend doing `c++ -x c++ -v -P -
What happens if you comment out this line: https://github.com/lifting-bits/mcsema/blob/b0f7790f43567e3da5c4bf47235c1c53f73d00d8/mcsema/CFG/CFG.cpp#L1397 :trollface:
### Approach 1 1) re-run mcsema-lift, with the additional flag `--add_pc_tracer`. 2) re-compile, run it, and as additional output you will get a bunch of printouts. 3) open up your...
For approach 1, you can probably change `$eip` to `((uint32_t) $eip)` or `((uint32_t) $pc)`.
@niansa is this something that you're working on?