Reputation: 340
I have installed msys2 using chocolatey. I have tried msys2-installer module from chocolatey too. But I can not find objdump on my system. Should I install something more ?
Upvotes: 0
Views: 966
Reputation: 87416
MSYS2 supports three different compiler toolchains, all with their own objdump utility. I'm not sure which one you want to use, but you can just install them all by running:
sudo pacman -S binutils mingw-w64-x86_64-binutils mingw-w64-i686-binutils
Upvotes: 1