Skip to content

Commit

Permalink
Add pypcode to pyinstaller bundle (angr#946)
Browse files Browse the repository at this point in the history
Co-authored-by: Fish <[email protected]>
  • Loading branch information
twizmwazin and ltfish authored Mar 10, 2023
1 parent 83170d9 commit c2f1002
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/nightly-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
pip install pillow # icon conversion on macOS
fi

pip install git+https://github.com/eliben/pyelftools#egg=pyelftools
pip install git+https://github.com/angr/archinfo.git#egg=archinfo
pip install git+https://github.com/angr/pyvex.git#egg=pyvex
pip install git+https://github.com/angr/cle.git#egg=cle
pip install git+https://github.com/angr/claripy.git#egg=claripy
pip install git+https://github.com/angr/ailment.git#egg=ailment
pip install --no-build-isolation git+https://github.com/angr/angr.git#egg=angr
pip install git+https://github.com/eliben/pyelftools.git
pip install git+https://github.com/angr/archinfo.git
pip install git+https://github.com/angr/pyvex.git
pip install git+https://github.com/angr/cle.git
pip install git+https://github.com/angr/claripy.git
pip install git+https://github.com/angr/ailment.git
pip install --no-build-isolation git+https://github.com/angr/angr.git#egg=angr[pcode]
if [[ "$OSTYPE" == "linux-gnu" ]]; then
pip install keystone-engine
pip install git+https://github.com/angr/archr.git#egg=archr
Expand Down
2 changes: 2 additions & 0 deletions packaging/pyinstaller/bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import cle
import debugpy
import parso
import pypcode
import PySide6
import pyvex
import unicorn
Expand Down Expand Up @@ -64,6 +65,7 @@ def make_common_options(for_chess=False):
(os.path.join(am_repo_dir, "flirt_signatures"), "flirt_signatures"),
(os.path.join(am_repo_dir, "library_docs"), "library_docs"),
(os.path.join(os.path.dirname(debugpy.__file__), "_vendored"), "debugpy/_vendored"),
(os.path.join(os.path.dirname(pypcode.__file__), "processors"), "pypcode/processors"),
]
if sys.platform != "win32":
included_data.append(
Expand Down

0 comments on commit c2f1002

Please sign in to comment.