Alex Cameron
Alex Cameron
Closes #6 CC: @ekilmer
I've been curious how this compares to other disassemblers. If you're interested, I can try adding this to the benchmark when I get some spare time.
I noticed some datatest failures on Windows where the decompiler output would not correctly find the symbols added via the `map addr` command. So the decompiler output would look like:...
The CMake configuration allows testing on x86 for anything that's not Windows. However for ARM, it only supports Linux. Relevant snippet [here](https://github.com/lifting-bits/remill/blob/master/cmake/options.cmake#L18). If I hack up the CMake to build...
As of #585, we're implementing `FLOAT_NAN` with our own code that checks the float against itself with an ordered float comparison. LLVM is considering an `isnan` intrinsic that would be...
Hey there, I was following the instructions [here](https://watchy.sqfmi.com/docs/create-watchface) and noticed that `Watchy` no longer has a default constructor and instead takes a `watchySettings`. I ended up copying across a `settings.h`...
The `syft` tool supports generating a SBOM for a container image and has support for Python packages. We should check to see if we can leverage this to support container...
In the long term, we'd like to support providing container images a dependency source. We should start by evaluating https://github.com/anchore/syft to see if it helps us since `syft` does supposedly...