From d8ed50836fbbfc3c40515eb252c89593112381c8 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 4 Mar 2025 15:51:11 -1000 Subject: [PATCH] feat: reduce size of wheels compile with -g0 to reduce binary size --- build_ext.py | 1 + 1 file changed, 1 insertion(+) diff --git a/build_ext.py b/build_ext.py index 3669162..4e764e4 100644 --- a/build_ext.py +++ b/build_ext.py @@ -17,6 +17,7 @@ join("src", "kasa_crypt", "_crypt_impl.pyx"), ], language="c", + extra_compile_args=["-O3", "-g0"], )