setup.py: Windows build fix
This commit is contained in:
parent
f97869702d
commit
0e6ab32bf1
2 changed files with 17 additions and 2 deletions
|
|
@ -1 +1 @@
|
|||
13.3.dev56
|
||||
13.3.dev57
|
||||
|
|
|
|||
17
setup.py
17
setup.py
|
|
@ -9,13 +9,28 @@ cache_path = os.path.join(os.environ['HOME'],'.cache','mmgen')
|
|||
ext_path = os.path.join(cache_path,'secp256k1')
|
||||
|
||||
def build_libsecp256k1():
|
||||
|
||||
def fix_broken_libpython_fn():
|
||||
from pathlib import Path
|
||||
from_path = Path('C:/msys64/mingw64/lib/libpython3.10.dll.a')
|
||||
to_path = Path('C:/msys64/mingw64/lib/libpython310.dll.a')
|
||||
if from_path.exists() and not to_path.exists():
|
||||
import shutil
|
||||
print(f'Fixing broken library filename: {from_path.name!r} -> {to_path.name!r}')
|
||||
shutil.copy2(from_path,to_path)
|
||||
|
||||
import platform
|
||||
if platform.system() == 'Windows':
|
||||
fix_broken_libpython_fn()
|
||||
|
||||
if not os.path.exists(cache_path):
|
||||
os.makedirs(cache_path)
|
||||
|
||||
if not os.path.exists(ext_path):
|
||||
print('\nCloning libsecp256k1')
|
||||
run(['git','clone','https://github.com/bitcoin-core/secp256k1.git'],check=True,cwd=cache_path)
|
||||
|
||||
if not os.path.exists(os.path.join(ext_path,'.libs/libsecp256k1.a')):
|
||||
import platform
|
||||
print('\nBuilding libsecp256k1')
|
||||
cmds = {
|
||||
'Windows': (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue