From f663d226dd429ce81d78ba056c5bc25448b2db41 Mon Sep 17 00:00:00 2001 From: WrathfulSpatula Date: Sat, 11 Jan 2025 15:32:04 -0500 Subject: [PATCH] Add -O3 option --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fe3d9ad..2351740 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import setuptools from distutils.core import setup, Extension -cpp_args = ['-std=c++17'] +cpp_args = ['-std=c++17', '-O3'] README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md') with open(README_PATH) as readme_file: