/Hexdump

An application and library to dump and analyze binary files.

Primary LanguageC++MIT LicenseMIT

Hexdump Hexdump build status

An application and library to dump and analyze binary files.

Hexdump

Download Hexdump Download Count

Download the Latest Release.

Running

./<path-to-Hexdump-installation-dir>/bin/Hexdump.exe -i <input-file>

Building with Windows

Clone and run CMake

git clone git@github.com:dibenso/Hexdump.git
cd Hexdump
mkdir build
cd build
# replace -G option with your platforms generator
# See: https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html
# Example with Visual Studio:
cmake -G "Visual Studio 16 2019" -A x64 ..

Generate the installer

  • Install NSIS (Nullsoft Scriptable Install System).
  • Open Hexdump.sln with Visual Studio
  • Change Debug to Release
  • Build Hexdump
  • Build PACKAGE
  • The installer, Hexdump-<version>-<architecture>.exe, should be generated in the build directory