When building Python bindings, only pre-build blst (#418)

This commit is contained in:
Justin Traglia 2024-04-16 19:51:12 -05:00 committed by GitHub
parent ef43583a1b
commit a874006744
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ class CustomBuild(build_ext):
check_call([f("blst\\build.bat")])
except Exception:
pass
check_call(["make", "-C", f("src"), "c_kzg_4844.o"])
check_call(["make", "-C", f("src"), "blst"])
super().run()