Skip to content

Commit beb5452

Browse files
authored
Merge pull request #939 from qilingframework/fix-windows-ci
Fix windows ci
2 parents ab539e3 + 223fbad commit beb5452

File tree

3 files changed

+434
-295
lines changed

3 files changed

+434
-295
lines changed

qiling/core.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -859,4 +859,7 @@ def emu_start(self, begin, end, timeout=0, count=0):
859859
self.uc.emu_start(begin, end, timeout, count)
860860

861861
if self._internal_exception != None:
862-
raise self._internal_exception
862+
raise self._internal_exception
863+
864+
def __del__(self):
865+
del self._uc

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"python-registry>=1.3.1",
2020
"keystone-engine>=0.9.2",
2121
"pyelftools>=0.26",
22-
"gevent>=20.9.0"
22+
"gevent>=20.9.0",
23+
"multiprocess>=0.70.12.2"
2324
]
2425

2526
evm_extra = {

0 commit comments

Comments
 (0)