forked from FuzzySecurity/capstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python: Clean up the capstone-windows stuff with extreme prejudice
- Loading branch information
Showing
9 changed files
with
27 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
recursive-include src * | ||
include LICENSE.TXT | ||
include README | ||
include README.txt | ||
include BUILDING.txt | ||
include Makefile |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
18 changes: 11 additions & 7 deletions
18
bindings/python/README.pypi-win → bindings/python/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
NOTE: This package includes prebuilt Windows core of Capstone, so no external | ||
Capstone library is needed. | ||
To install capstone, you should run `pip install capstone`. | ||
|
||
On Windows, download this PyPi package and run "python setup.py install" from | ||
"Command Prompt" is all you need to install it. | ||
If you would like to build capstone with just the source distribution, without | ||
pip, just run `python setup.py install` in the same folder as this text file. | ||
|
||
If you want to compile everything from source code instead, use the | ||
PyPi package "capstone" instead. | ||
In order to use this source distribution, you will need an environment that can | ||
compile C code. On linux, this is usually easy, but on windows, this involves | ||
installing Visual Studio and using the "Developer Command Prompt" to perform the | ||
installation. See BUILDING.txt for more information. | ||
|
||
https://pypi.python.org/pypi/capstone | ||
If you don't want to build your own copy of capstone, you can use a precompiled | ||
binary distribution frm PyPI. Saying `pip install capstone` should automatically | ||
obtain an appropriate copy for your system. If it does not, please inform | ||
<[email protected]> - they will fix this, probably. | ||
|
||
-------------------------------------------------------------------------------- | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters