angr / archr

Target-centric program analysis.
BSD 2-Clause "Simplified" License
72 stars 21 forks source link

Update bundle to account for minor version of python with more than one digit. #168

Closed astewart-bah closed 9 months ago

astewart-bah commented 9 months ago

This change allows for python versions to be properly handled if it has a one digit minor version or a two digit minor version.

Confirmed on python 3.8 and 3.10.

allen@Allen$ python3 --version
Python 3.10.12
allen@Allen$ ldd $GDB_PATH | grep -oh "python.\.[0-9]*" | head -1
python3.10
allen@Allen$ python3 --version
Python 3.8.10
allen@Allen$ ldd $GDB_PATH | grep -oh "python.\.[0-9]*" | head -1
python3.8
Kyle-Kyle commented 9 months ago

thanks for the contribution!