From b3c3c5579b9494f5a15cd83fbdd6b592b5e8a1da Mon Sep 17 00:00:00 2001 From: William Ballenthin Date: Sun, 30 Aug 2020 02:29:56 -0600 Subject: [PATCH] pyinstaller: update spec to account for viv changes --- .github/pyinstaller/pyinstaller.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/pyinstaller/pyinstaller.spec b/.github/pyinstaller/pyinstaller.spec index bbd72543..7ddf1ffb 100644 --- a/.github/pyinstaller/pyinstaller.spec +++ b/.github/pyinstaller/pyinstaller.spec @@ -44,7 +44,6 @@ a = Analysis( hiddenimports=[ # vivisect does manual/runtime importing of its modules, # so declare the things that could be imported here. - "pycparser", "vivisect", "vivisect.analysis", "vivisect.analysis.amd64", @@ -92,11 +91,13 @@ a = Analysis( "vivisect.impapi.windows", "vivisect.impapi.windows.amd64", "vivisect.impapi.windows.i386", + "vivisect.impapi.winkern.i386", + "vivisect.impapi.winkern.amd64", "vivisect.parsers.blob", "vivisect.parsers.elf", "vivisect.parsers.ihex", "vivisect.parsers.macho", - "vivisect.parsers.parse_pe", + "vivisect.parsers.PE", "vivisect.parsers.utils", "vivisect.storage", "vivisect.storage.basicfile",