radare2/sys/mingw32-deps.sh
pancake 2415d86fd6 * Added sys/ in order to ease build, deps and python /cc @hteso
* Some fixes in r_magic api to make r_lang/perl compile
2011-09-10 02:19:06 +02:00

13 lines
272 B
Bash
Executable File

#!/bin/sh
if [ -x /usr/bin/pacman ]; then
sudo pacman -S mingw32-gcc
elif [ -x /usr/bin/apt-get ]; then
sudo apt-get install mingw32
elif [ -x /opt/local/bin/port ]; then
sudo port install i386-mingw32-gcc
else
echo "ubuntu/debian or archlinux required."
exit 1
fi