we do not need Python to build anymore

This commit is contained in:
Nguyen Anh Quynh
2020-04-30 13:58:33 +08:00
parent 05013b8e47
commit 00bbe2ce7d
14 changed files with 1019 additions and 83 deletions

View File

@ -6,7 +6,7 @@ This documentation explains how to compile Unicorn with CMake on Windows or
Requirements:
- Windows: MicroSoft Visual Studio(>=2013).
- *nix: GNU gcc and Python CLI to generate dynamic source files.
- *nix: GNU gcc or clang to generate dynamic source files.
Get CMake for free from http://www.cmake.org.

View File

@ -35,22 +35,19 @@ Unicorn can be compiled either on Ubuntu or Windows.
- To compile for Windows 32-bit, run:
$ pacman -S python2
$ pacman -S make
$ pacman -S mingw-w64-i686-toolchain
- To compile for Windows 64-bit, run:
$ pacman -S python2
$ pacman -S make
$ pacman -S mingw-w64-x86_64-toolchain
- For Cygwin, "make", "gcc-core", "libpcre-devel", "zlib-devel", "python2-setuptools"
are needed.
- For Cygwin, "make", "gcc-core", "libpcre-devel", "zlib-devel" are needed.
If apt-cyg is available, you can install these with:
$ apt-cyg install make gcc-core libpcre-devel zlib-devel python2-setuptools
$ apt-cyg install make gcc-core libpcre-devel zlib-devel