From a87400674488fbacbf641ea3fa65a4567078c765 Mon Sep 17 00:00:00 2001 From: Justin Traglia <95511699+jtraglia@users.noreply.github.com> Date: Tue, 16 Apr 2024 19:51:12 -0500 Subject: [PATCH] When building Python bindings, only pre-build blst (#418) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a45eac7..12ffafe 100644 --- a/setup.py +++ b/setup.py @@ -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()